list_hub_contents
(**kwargs)¶List the contents of a hub.
Note
Hub APIs are only callable through SageMaker Studio.
See also: AWS API Documentation
Request Syntax
response = client.list_hub_contents(
HubName='string',
HubContentType='Model'|'Notebook',
NameContains='string',
MaxSchemaVersion='string',
CreationTimeBefore=datetime(2015, 1, 1),
CreationTimeAfter=datetime(2015, 1, 1),
SortBy='HubContentName'|'CreationTime'|'HubContentStatus',
SortOrder='Ascending'|'Descending',
MaxResults=123,
NextToken='string'
)
[REQUIRED]
The name of the hub to list the contents of.
[REQUIRED]
The type of hub content to list.
ListHubContents
request was truncated, the response includes a NextToken
. To retrieve the next set of hub content, use the token in the next request.dict
Response Syntax
{
'HubContentSummaries': [
{
'HubContentName': 'string',
'HubContentArn': 'string',
'HubContentVersion': 'string',
'HubContentType': 'Model'|'Notebook',
'DocumentSchemaVersion': 'string',
'HubContentDisplayName': 'string',
'HubContentDescription': 'string',
'HubContentSearchKeywords': [
'string',
],
'HubContentStatus': 'Available'|'Importing'|'Deleting'|'ImportFailed'|'DeleteFailed',
'CreationTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
HubContentSummaries (list) --
The summaries of the listed hub content.
(dict) --
Information about hub content.
HubContentName (string) --
The name of the hub content.
HubContentArn (string) --
The Amazon Resource Name (ARN) of the hub content.
HubContentVersion (string) --
The version of the hub content.
HubContentType (string) --
The type of hub content.
DocumentSchemaVersion (string) --
The version of the hub content document schema.
HubContentDisplayName (string) --
The display name of the hub content.
HubContentDescription (string) --
A description of the hub content.
HubContentSearchKeywords (list) --
The searchable keywords for the hub content.
HubContentStatus (string) --
The status of the hub content.
CreationTime (datetime) --
The date and time that the hub content was created.
NextToken (string) --
If the response is truncated, SageMaker returns this token. To retrieve the next set of hub content, use it in the subsequent request.
Exceptions
SageMaker.Client.exceptions.ResourceNotFound