Class: Aws::ElementalInference::Types::GetOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::GetOutput
- Defined in:
- gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb
Overview
Contains configuration information about one output in a feed. It is used in the GetFeed action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the output.
-
#from_association ⇒ Boolean
True means that the output was originally created in the feed by the AssociateFeed operation.
-
#name ⇒ String
The ARN of the output.
-
#output_config ⇒ Types::OutputConfig
A typed property for an output in a feed.
-
#status ⇒ String
The status of the output.
Instance Attribute Details
#description ⇒ String
The description of the output.
447 448 449 450 451 452 453 454 455 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 447 class GetOutput < Struct.new( :name, :output_config, :status, :description, :from_association) SENSITIVE = [] include Aws::Structure end |
#from_association ⇒ Boolean
True means that the output was originally created in the feed by the AssociateFeed operation. False means it was created using CreateFeed or UpdateFeed. You will need this value if you use the UpdateFeed operation to modify the list of outputs in the feed.
447 448 449 450 451 452 453 454 455 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 447 class GetOutput < Struct.new( :name, :output_config, :status, :description, :from_association) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The ARN of the output.
447 448 449 450 451 452 453 454 455 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 447 class GetOutput < Struct.new( :name, :output_config, :status, :description, :from_association) SENSITIVE = [] include Aws::Structure end |
#output_config ⇒ Types::OutputConfig
A typed property for an output in a feed. It is used in the GetFeed action. It identifies the action for Elemental Inference to perform. It also provides a repository for the results of that action. For example, CroppingConfig output will contain the metadata for the crop feature.
447 448 449 450 451 452 453 454 455 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 447 class GetOutput < Struct.new( :name, :output_config, :status, :description, :from_association) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the output.
447 448 449 450 451 452 453 454 455 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 447 class GetOutput < Struct.new( :name, :output_config, :status, :description, :from_association) SENSITIVE = [] include Aws::Structure end |