SageMaker.Paginator.
ListStudioLifecycleConfigs
¶paginator = client.get_paginator('list_studio_lifecycle_configs')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from SageMaker.Client.list_studio_lifecycle_configs()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
NameContains='string',
AppTypeEquals='JupyterServer'|'KernelGateway',
CreationTimeBefore=datetime(2015, 1, 1),
CreationTimeAfter=datetime(2015, 1, 1),
ModifiedTimeBefore=datetime(2015, 1, 1),
ModifiedTimeAfter=datetime(2015, 1, 1),
SortBy='CreationTime'|'LastModifiedTime'|'Name',
SortOrder='Ascending'|'Descending',
PaginationConfig={
'MaxItems': 123,
'PageSize': 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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'StudioLifecycleConfigs': [
{
'StudioLifecycleConfigArn': 'string',
'StudioLifecycleConfigName': 'string',
'CreationTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'StudioLifecycleConfigAppType': 'JupyterServer'|'KernelGateway'
},
]
}
Response Structure
(dict) --
StudioLifecycleConfigs (list) --
A list of Lifecycle Configurations and their properties.
(dict) --
Details of the Studio Lifecycle Configuration.
StudioLifecycleConfigArn (string) --
The Amazon Resource Name (ARN) of the Lifecycle Configuration.
StudioLifecycleConfigName (string) --
The name of the Studio Lifecycle Configuration.
CreationTime (datetime) --
The creation time of the Studio Lifecycle Configuration.
LastModifiedTime (datetime) --
This value is equivalent to CreationTime because Studio Lifecycle Configurations are immutable.
StudioLifecycleConfigAppType (string) --
The App type to which the Lifecycle Configuration is attached.