Learn R Programming

paws.analytics (version 0.1.11)

emr_list_studio_session_mappings: 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 a list of all user or group session mappings for the EMR Studio specified by StudioId.

Usage

emr_list_studio_session_mappings(StudioId, IdentityType, Marker)

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"
)

Request syntax

svc$list_studio_session_mappings(
  StudioId = "string",
  IdentityType = "USER"|"GROUP",
  Marker = "string"
)