Skip to main content

pipeline_definition_for_executions

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

Overview

Namepipeline_definition_for_executions
TypeResource
Idaws.sagemaker.pipeline_definition_for_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The time when the pipeline was created.
pipeline_definitionstringThe JSON pipeline definition. (pattern: <code>.(?:[ \r\n\t].)*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_pipeline_definition_for_executionselectregionDescribes the details of an execution's pipeline definition.

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

Describes the details of an execution's pipeline definition.

SELECT
creation_time,
pipeline_definition
FROM aws.sagemaker.pipeline_definition_for_executions
WHERE region = '{{ region }}' -- required
;