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¶
CreatedAfterA timestamp to filter against lineage groups created after a certain point in time.
CreatedBeforeA timestamp to filter against lineage groups created before a certain point in time.
SortByThe parameter by which to sort the results. The default is
CreationTime.SortOrderThe sort order for the results. The default is
Ascending.NextTokenIf the response is truncated, SageMaker returns this token. To retrieve the next set of algorithms, use it in the subsequent request.
MaxResultsThe 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"
)