pipeline_parameters_for_executions
Creates, updates, deletes, gets or lists a pipeline_parameters_for_executions resource.
Overview
| Name | pipeline_parameters_for_executions |
| Type | Resource |
| Id | aws.sagemaker.pipeline_parameters_for_executions |
Fields
The following fields are returned by SELECT queries:
- list_pipeline_parameters_for_execution
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition. (pattern: <code>[A-Za-z0-9-_]*</code>) |
value | string | The literal value for the parameter. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_pipeline_parameters_for_execution | select | region | Gets a list of parameters for a pipeline execution. |
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
- list_pipeline_parameters_for_execution
Gets a list of parameters for a pipeline execution.
SELECT
name,
value
FROM aws.sagemaker.pipeline_parameters_for_executions
WHERE region = '{{ region }}' -- required
;