list_apps
(**kwargs)¶Lists apps.
See also: AWS API Documentation
Request Syntax
response = client.list_apps(
NextToken='string',
MaxResults=123,
SortOrder='Ascending'|'Descending',
SortBy='CreationTime',
DomainIdEquals='string',
UserProfileNameEquals='string',
SpaceNameEquals='string'
)
SpaceNameEquals
is set, then this value cannot be set.UserProfileNameEquals
is set, then this value cannot be set.dict
Response Syntax
{
'Apps': [
{
'DomainId': 'string',
'UserProfileName': 'string',
'AppType': 'JupyterServer'|'KernelGateway'|'TensorBoard'|'RStudioServerPro'|'RSessionGateway',
'AppName': 'string',
'Status': 'Deleted'|'Deleting'|'Failed'|'InService'|'Pending',
'CreationTime': datetime(2015, 1, 1),
'SpaceName': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Apps (list) --
The list of apps.
(dict) --
Details about an Amazon SageMaker app.
DomainId (string) --
The domain ID.
UserProfileName (string) --
The user profile name.
AppType (string) --
The type of app.
AppName (string) --
The name of the app.
Status (string) --
The status.
CreationTime (datetime) --
The creation time.
SpaceName (string) --
The name of the space.
NextToken (string) --
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.