Skip to main content

lineage_groups

Creates, updates, deletes, gets or lists a lineage_groups resource.

Overview

Namelineage_groups
TypeResource
Idaws.sagemaker.lineage_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_byobjectInformation about the user who created or modified a SageMaker resource.
creation_timestring (date-time)The creation time of lineage group.
descriptionstringThe description of the lineage group. (pattern: <code>.*</code>)
display_namestringThe display name of the lineage group. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}</code>)
last_modified_byobjectInformation about the user who created or modified a SageMaker resource.
last_modified_timestring (date-time)The last modified time of the lineage group.
lineage_group_arnstringThe Amazon Resource Name (ARN) of the lineage group. (pattern: <code>arn:aws[a-z-]:sagemaker:[a-z0-9-]:[0-9]{12}:lineage-group/.*</code>)
lineage_group_namestringThe name of the lineage group. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_lineage_groupselectregionProvides a list of properties for the requested lineage group. For more information, see Cross-Account Lineage Tracking in the Amazon SageMaker Developer Guide.
list_lineage_groupsselectregionA 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Provides a list of properties for the requested lineage group. For more information, see Cross-Account Lineage Tracking in the Amazon SageMaker Developer Guide.

SELECT
created_by,
creation_time,
description,
display_name,
last_modified_by,
last_modified_time,
lineage_group_arn,
lineage_group_name
FROM aws.sagemaker.lineage_groups
WHERE region = '{{ region }}' -- required
;