SageMaker / Client / list_partner_apps
list_partner_apps#
- SageMaker.Client.list_partner_apps(**kwargs)#
Lists all of the SageMaker Partner AI Apps in an account.
See also: AWS API Documentation
Request Syntax
response = client.list_partner_apps( MaxResults=123, NextToken='string' )
- Parameters:
MaxResults (integer) – This parameter defines the maximum number of results that can be returned in a single response. The
MaxResults
parameter is an upper bound, not a target. If there are more results available than the value specified, aNextToken
is provided in the response. TheNextToken
indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value forMaxResults
is 10.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.
- Return type:
dict
- Returns:
Response Syntax
{ 'Summaries': [ { 'Arn': 'string', 'Name': 'string', 'Type': 'lakera-guard'|'comet'|'deepchecks-llm-evaluation'|'fiddler', 'Status': 'Creating'|'Updating'|'Deleting'|'Available'|'Failed'|'UpdateFailed'|'Deleted', 'CreationTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
Summaries (list) –
The information related to each of the SageMaker Partner AI Apps in an account.
(dict) –
A subset of information related to a SageMaker Partner AI App. This information is used as part of the
ListPartnerApps
API response.Arn (string) –
The ARN of the SageMaker Partner AI App.
Name (string) –
The name of the SageMaker Partner AI App.
Type (string) –
The type of SageMaker Partner AI App to create. Must be one of the following:
lakera-guard
,comet
,deepchecks-llm-evaluation
, orfiddler
.Status (string) –
The status of the SageMaker Partner AI App.
CreationTime (datetime) –
The creation time of the SageMaker Partner AI App.
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.