Class: Aws::DataPipeline::Types::PipelineObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::PipelineObject
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass PipelineObject data as a hash:
{
id: "id", # required
name: "id", # required
fields: [ # required
{
key: "fieldNameString", # required
string_value: "fieldStringValue",
ref_value: "fieldNameString",
},
],
}
Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fields ⇒ Array<Types::Field>
Key-value pairs that define the properties of the object.
-
#id ⇒ String
The ID of the object.
-
#name ⇒ String
The name of the object.
Instance Attribute Details
#fields ⇒ Array<Types::Field>
Key-value pairs that define the properties of the object.
872 873 874 875 876 877 878 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 872 class PipelineObject < Struct.new( :id, :name, :fields) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the object.
872 873 874 875 876 877 878 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 872 class PipelineObject < Struct.new( :id, :name, :fields) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the object.
872 873 874 875 876 877 878 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 872 class PipelineObject < Struct.new( :id, :name, :fields) SENSITIVE = [] include Aws::Structure end |