Describe Studio
emr_describe_studio | R Documentation |
Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on¶
Description¶
Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on.
Usage¶
Arguments¶
StudioId
[required] The Amazon EMR Studio ID.
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",
IdpAuthUrl = "string",
IdpRelayStateParameterName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
IdcInstanceArn = "string",
TrustedIdentityPropagationEnabled = TRUE|FALSE,
IdcUserAssignment = "REQUIRED"|"OPTIONAL",
EncryptionKeyArn = "string"
)
)