Skip to content

List Studios

emr_list_studios R Documentation

Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account

Description

Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.

Usage

emr_list_studios(Marker)

Arguments

Marker

The pagination token that indicates the set of results to retrieve.

Value

A list with the following syntax:

list(
  Studios = list(
    list(
      StudioId = "string",
      Name = "string",
      VpcId = "string",
      Description = "string",
      Url = "string",
      AuthMode = "SSO"|"IAM",
      CreationTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  Marker = "string"
)

Request syntax

svc$list_studios(
  Marker = "string"
)