pipeline_definition_for_executions
Creates, updates, deletes, gets or lists a pipeline_definition_for_executions resource.
Overview
| Name | pipeline_definition_for_executions |
| Type | Resource |
| Id | aws.sagemaker.pipeline_definition_for_executions |
Fields
The following fields are returned by SELECT queries:
- describe_pipeline_definition_for_execution
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | The time when the pipeline was created. |
pipeline_definition | string | The JSON pipeline definition. (pattern: <code>.(?:[ \r\n\t].)*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_pipeline_definition_for_execution | select | region | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_pipeline_definition_for_execution
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
;