List Hubs
| sagemaker_list_hubs | R Documentation |
List all existing hubs¶
Description¶
List all existing hubs.
Usage¶
sagemaker_list_hubs(NameContains, CreationTimeBefore, CreationTimeAfter,
LastModifiedTimeBefore, LastModifiedTimeAfter, SortBy, SortOrder,
MaxResults, NextToken)
Arguments¶
NameContainsOnly list hubs with names that contain the specified string.
CreationTimeBeforeOnly list hubs that were created before the time specified.
CreationTimeAfterOnly list hubs that were created after the time specified.
LastModifiedTimeBeforeOnly list hubs that were last modified before the time specified.
LastModifiedTimeAfterOnly list hubs that were last modified after the time specified.
SortBySort hubs by either name or creation time.
SortOrderSort hubs by ascending or descending order.
MaxResultsThe maximum number of hubs to list.
NextTokenIf the response to a previous
list_hubsrequest was truncated, the response includes aNextToken. To retrieve the next set of hubs, use the token in the next request.
Value¶
A list with the following syntax:
list(
HubSummaries = list(
list(
HubName = "string",
HubArn = "string",
HubDisplayName = "string",
HubDescription = "string",
HubSearchKeywords = list(
"string"
),
HubStatus = "InService"|"Creating"|"Updating"|"Deleting"|"CreateFailed"|"UpdateFailed"|"DeleteFailed",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_hubs(
NameContains = "string",
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
SortBy = "HubName"|"CreationTime"|"HubStatus"|"AccountIdOwner",
SortOrder = "Ascending"|"Descending",
MaxResults = 123,
NextToken = "string"
)