Class: Aws::DataPipeline::Types::ParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ParameterValue
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass ParameterValue data as a hash:
{
id: "fieldNameString", # required
string_value: "fieldStringValue", # required
}
A value or list of parameter values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the parameter value.
-
#string_value ⇒ String
The field value, expressed as a String.
Instance Attribute Details
#id ⇒ String
The ID of the parameter value.
741 742 743 744 745 746 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 741 class ParameterValue < Struct.new( :id, :string_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
The field value, expressed as a String.
741 742 743 744 745 746 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 741 class ParameterValue < Struct.new( :id, :string_value) SENSITIVE = [] include Aws::Structure end |