lineage_groups
Creates, updates, deletes, gets or lists a lineage_groups resource.
Overview
| Name | lineage_groups |
| Type | Resource |
| Id | aws.sagemaker.lineage_groups |
Fields
The following fields are returned by SELECT queries:
- describe_lineage_group
- list_lineage_groups
| Name | Datatype | Description |
|---|---|---|
created_by | object | Information about the user who created or modified a SageMaker resource. |
creation_time | string (date-time) | The creation time of lineage group. |
description | string | The description of the lineage group. (pattern: <code>.*</code>) |
display_name | string | The display name of the lineage group. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}</code>) |
last_modified_by | object | Information about the user who created or modified a SageMaker resource. |
last_modified_time | string (date-time) | The last modified time of the lineage group. |
lineage_group_arn | string | The 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_name | string | The name of the lineage group. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}</code>) |
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | The creation time of the lineage group summary. |
display_name | string | The display name of the lineage group summary. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}</code>) |
last_modified_time | string (date-time) | The last modified time of the lineage group summary. |
lineage_group_arn | string | The Amazon Resource Name (ARN) of the lineage group resource. (pattern: <code>arn:aws[a-z-]:sagemaker:[a-z0-9-]:[0-9]{12}:lineage-group/.*</code>) |
lineage_group_name | string | The name or Amazon Resource Name (ARN) 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_lineage_group | select | region | Provides 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_groups | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_lineage_group
- list_lineage_groups
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
;
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.
SELECT
creation_time,
display_name,
last_modified_time,
lineage_group_arn,
lineage_group_name
FROM aws.sagemaker.lineage_groups
WHERE region = '{{ region }}' -- required
;