ListStudios

class EMR.Paginator.ListStudios
paginator = client.get_paginator('list_studios')
paginate(**kwargs)

Creates an iterator that will paginate through responses from EMR.Client.list_studios().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'Studios': [
        {
            'StudioId': 'string',
            'Name': 'string',
            'VpcId': 'string',
            'Description': 'string',
            'Url': 'string',
            'AuthMode': 'SSO'|'IAM',
            'CreationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • Studios (list) --

      The list of Studio summary objects.

      • (dict) --

        Details for an Amazon EMR Studio, including ID, Name, VPC, and Description. The details do not include subnets, IAM roles, security groups, or tags associated with the Studio.

        • StudioId (string) --

          The ID of the Amazon EMR Studio.

        • Name (string) --

          The name of the Amazon EMR Studio.

        • VpcId (string) --

          The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.

        • Description (string) --

          The detailed description of the Amazon EMR Studio.

        • Url (string) --

          The unique access URL of the Amazon EMR Studio.

        • AuthMode (string) --

          Specifies whether the Studio authenticates users using IAM or IAM Identity Center.

        • CreationTime (datetime) --

          The time when the Amazon EMR Studio was created.

    • NextToken (string) --

      A token to resume pagination.