Skip to main content

lineage_group_policies

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

Overview

Namelineage_group_policies
TypeResource
Idaws.sagemaker.lineage_group_policies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
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>)
resource_policystringThe resource policy that gives access to the lineage group in another account. (pattern: <code>.(?:[ \r\n\t].)*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_lineage_group_policyselectregionThe resource policy for the lineage group.

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

The resource policy for the lineage group.

SELECT
lineage_group_arn,
resource_policy
FROM aws.sagemaker.lineage_group_policies
WHERE region = '{{ region }}' -- required
;