Class: Aws::Pipes::Types::SageMakerPipelineParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::SageMakerPipelineParameter
- Defined in:
- gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb
Overview
Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.
Constant Summary collapse
- SENSITIVE =
[:name, :value]
Instance Attribute Summary collapse
-
#name ⇒ String
Name of parameter to start execution of a SageMaker Model Building Pipeline.
-
#value ⇒ String
Value of parameter to start execution of a SageMaker Model Building Pipeline.
Instance Attribute Details
#name ⇒ String
Name of parameter to start execution of a SageMaker Model Building Pipeline.
2909 2910 2911 2912 2913 2914 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2909 class SageMakerPipelineParameter < Struct.new( :name, :value) SENSITIVE = [:name, :value] include Aws::Structure end |
#value ⇒ String
Value of parameter to start execution of a SageMaker Model Building Pipeline.
2909 2910 2911 2912 2913 2914 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2909 class SageMakerPipelineParameter < Struct.new( :name, :value) SENSITIVE = [:name, :value] include Aws::Structure end |