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'
}
)
A dictionary that provides parameters to control pagination.
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.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'Studios': [
{
'StudioId': 'string',
'Name': 'string',
'VpcId': 'string',
'Description': 'string',
'Url': 'string',
'AuthMode': 'SSO'|'IAM',
'CreationTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
The list of Studio summary objects.
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.
The ID of the Amazon EMR Studio.
The name of the Amazon EMR Studio.
The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
The detailed description of the Amazon EMR Studio.
The unique access URL of the Amazon EMR Studio.
Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
The time when the Amazon EMR Studio was created.
A token to resume pagination.