Class: Aws::SageMaker::Types::Parameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::Parameter
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Assigns a value to a named Pipeline parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the parameter to assign a value to.
-
#value ⇒ String
The literal value for the parameter.
Instance Attribute Details
#name ⇒ String
The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition.
34213 34214 34215 34216 34217 34218 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 34213 class Parameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The literal value for the parameter.
34213 34214 34215 34216 34217 34218 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 34213 class Parameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |