SageMaker / Paginator / ListAssociations
ListAssociations#
- class SageMaker.Paginator.ListAssociations#
paginator = client.get_paginator('list_associations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
SageMaker.Client.list_associations()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( SourceArn='string', DestinationArn='string', SourceType='string', DestinationType='string', AssociationType='ContributedTo'|'AssociatedWith'|'DerivedFrom'|'Produced'|'SameAs', CreatedAfter=datetime(2015, 1, 1), CreatedBefore=datetime(2015, 1, 1), SortBy='SourceArn'|'DestinationArn'|'SourceType'|'DestinationType'|'CreationTime', SortOrder='Ascending'|'Descending', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
SourceArn (string) – A filter that returns only associations with the specified source ARN.
DestinationArn (string) – A filter that returns only associations with the specified destination Amazon Resource Name (ARN).
SourceType (string) – A filter that returns only associations with the specified source type.
DestinationType (string) – A filter that returns only associations with the specified destination type.
AssociationType (string) – A filter that returns only associations of the specified type.
CreatedAfter (datetime) – A filter that returns only associations created on or after the specified time.
CreatedBefore (datetime) – A filter that returns only associations created on or before the specified time.
SortBy (string) – The property used to sort results. The default value is
CreationTime
.SortOrder (string) – The sort order. The default value is
Descending
.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.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'AssociationSummaries': [ { 'SourceArn': 'string', 'DestinationArn': 'string', 'SourceType': 'string', 'DestinationType': 'string', 'AssociationType': 'ContributedTo'|'AssociatedWith'|'DerivedFrom'|'Produced'|'SameAs', 'SourceName': 'string', 'DestinationName': 'string', 'CreationTime': datetime(2015, 1, 1), 'CreatedBy': { 'UserProfileArn': 'string', 'UserProfileName': 'string', 'DomainId': 'string', 'IamIdentity': { 'Arn': 'string', 'PrincipalId': 'string', 'SourceIdentity': 'string' } } }, ], }
Response Structure
(dict) –
AssociationSummaries (list) –
A list of associations and their properties.
(dict) –
Lists a summary of the properties of an association. An association is an entity that links other lineage or experiment entities. An example would be an association between a training job and a model.
SourceArn (string) –
The ARN of the source.
DestinationArn (string) –
The Amazon Resource Name (ARN) of the destination.
SourceType (string) –
The source type.
DestinationType (string) –
The destination type.
AssociationType (string) –
The type of the association.
SourceName (string) –
The name of the source.
DestinationName (string) –
The name of the destination.
CreationTime (datetime) –
When the association was created.
CreatedBy (dict) –
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
UserProfileArn (string) –
The Amazon Resource Name (ARN) of the user’s profile.
UserProfileName (string) –
The name of the user’s profile.
DomainId (string) –
The domain associated with the user.
IamIdentity (dict) –
The IAM Identity details associated with the user. These details are associated with model package groups, model packages, and project entities only.
Arn (string) –
The Amazon Resource Name (ARN) of the IAM identity.
PrincipalId (string) –
The ID of the principal that assumes the IAM identity.
SourceIdentity (string) –
The person or application which assumes the IAM identity.