Learn R Programming

paws.analytics (version 0.1.12)

emr_describe_studio: The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change

Description

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on.

Usage

emr_describe_studio(StudioId)

Value

A list with the following syntax:

list(
  Studio = list(
    StudioId = "string",
    StudioArn = "string",
    Name = "string",
    Description = "string",
    AuthMode = "SSO"|"IAM",
    VpcId = "string",
    SubnetIds = list(
      "string"
    ),
    ServiceRole = "string",
    UserRole = "string",
    WorkspaceSecurityGroupId = "string",
    EngineSecurityGroupId = "string",
    Url = "string",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    DefaultS3Location = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Arguments

StudioId

[required] The Amazon EMR Studio ID.

Request syntax

svc$describe_studio(
  StudioId = "string"
)