List Studio Session Mappings
emr_list_studio_session_mappings | R Documentation |
Returns a list of all user or group session mappings for the Amazon EMR Studio specified by StudioId¶
Description¶
Returns a list of all user or group session mappings for the Amazon EMR
Studio specified by StudioId
.
Usage¶
Arguments¶
StudioId
The ID of the Amazon EMR Studio.
IdentityType
Specifies whether to return session mappings for users or groups. If not specified, the results include session mapping details for both users and groups.
Marker
The pagination token that indicates the set of results to retrieve.
Value¶
A list with the following syntax:
list(
SessionMappings = list(
list(
StudioId = "string",
IdentityId = "string",
IdentityName = "string",
IdentityType = "USER"|"GROUP",
SessionPolicyArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
Marker = "string"
)