Learn R Programming

paws.analytics (version 0.1.11)

emr_list_studios: 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 Amazon EMR Studios associated with the AWS 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",
      CreationTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  Marker = "string"
)

Request syntax

svc$list_studios(
  Marker = "string"
)