Skip to main content

pipeline_parameters_for_executions

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

Overview

Namepipeline_parameters_for_executions
TypeResource
Idaws.sagemaker.pipeline_parameters_for_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe 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>)
valuestringThe literal value for the parameter.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_pipeline_parameters_for_executionselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets a list of parameters for a pipeline execution.

SELECT
name,
value
FROM aws.sagemaker.pipeline_parameters_for_executions
WHERE region = '{{ region }}' -- required
;