List Lineage Groups
sagemaker_list_lineage_groups | R Documentation |
A list of lineage groups shared with your Amazon Web Services account¶
Description¶
A list of lineage groups shared with your Amazon Web Services account. For more information, see Cross-Account Lineage Tracking in the Amazon SageMaker Developer Guide.
Usage¶
sagemaker_list_lineage_groups(CreatedAfter, CreatedBefore, SortBy,
SortOrder, NextToken, MaxResults)
Arguments¶
CreatedAfter |
A timestamp to filter against lineage groups created after a certain point in time. |
CreatedBefore |
A timestamp to filter against lineage groups created before a certain point in time. |
SortBy |
The parameter by which to sort the results. The default is
|
SortOrder |
The sort order for the results. The default is
|
NextToken |
If the response is truncated, SageMaker returns this token. To retrieve the next set of algorithms, use it in the subsequent request. |
MaxResults |
The maximum number of endpoints to return in the response. This value defaults to 10. |
Value¶
A list with the following syntax:
list(
LineageGroupSummaries = list(
list(
LineageGroupArn = "string",
LineageGroupName = "string",
DisplayName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_lineage_groups(
CreatedAfter = as.POSIXct(
"2015-01-01"
),
CreatedBefore = as.POSIXct(
"2015-01-01"
),
SortBy = "Name"|"CreationTime",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123
)