Class: Aws::DataPipeline::Types::ParameterObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ParameterObject
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass ParameterObject data as a hash:
{
id: "fieldNameString", # required
attributes: [ # required
{
key: "attributeNameString", # required
string_value: "attributeValueString", # required
},
],
}
Contains information about a parameter object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::ParameterAttribute>
The attributes of the parameter object.
-
#id ⇒ String
The ID of the parameter object.
Instance Attribute Details
#attributes ⇒ Array<Types::ParameterAttribute>
The attributes of the parameter object.
714 715 716 717 718 719 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 714 class ParameterObject < Struct.new( :id, :attributes) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the parameter object.
714 715 716 717 718 719 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 714 class ParameterObject < Struct.new( :id, :attributes) SENSITIVE = [] include Aws::Structure end |