Class: Aws::ElementalInference::Types::OutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::OutputConfig
- Defined in:
- gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb
Overview
OutputConfig is a union - when making an API calls you must set exactly one of the members.
OutputConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutputConfig corresponding to the set member.
Contains one typed output. It is used in the CreateOutput, GetOutput, and Update Output structures.
Defined Under Namespace
Classes: Clipping, ContextualMetadata, Cropping, Subtitling, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#clipping ⇒ Types::ClippingConfig
The output config type that applies to the clipping feature.
-
#contextual_metadata ⇒ Types::ContextualMetadataConfig
The output config type that applies to the contextual metadata feature.
-
#cropping ⇒ Types::CroppingConfig
The output config type that applies to the cropping feature.
-
#subtitling ⇒ Types::SubtitlingConfig
The output config type that applies to the smart subtitling feature.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#clipping ⇒ Types::ClippingConfig
The output config type that applies to the clipping feature.
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1144 class OutputConfig < Struct.new( :cropping, :clipping, :subtitling, :contextual_metadata, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Cropping < OutputConfig; end class Clipping < OutputConfig; end class Subtitling < OutputConfig; end class ContextualMetadata < OutputConfig; end class Unknown < OutputConfig; end end |
#contextual_metadata ⇒ Types::ContextualMetadataConfig
The output config type that applies to the contextual metadata feature.
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1144 class OutputConfig < Struct.new( :cropping, :clipping, :subtitling, :contextual_metadata, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Cropping < OutputConfig; end class Clipping < OutputConfig; end class Subtitling < OutputConfig; end class ContextualMetadata < OutputConfig; end class Unknown < OutputConfig; end end |
#cropping ⇒ Types::CroppingConfig
The output config type that applies to the cropping feature.
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1144 class OutputConfig < Struct.new( :cropping, :clipping, :subtitling, :contextual_metadata, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Cropping < OutputConfig; end class Clipping < OutputConfig; end class Subtitling < OutputConfig; end class ContextualMetadata < OutputConfig; end class Unknown < OutputConfig; end end |
#subtitling ⇒ Types::SubtitlingConfig
The output config type that applies to the smart subtitling feature.
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1144 class OutputConfig < Struct.new( :cropping, :clipping, :subtitling, :contextual_metadata, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Cropping < OutputConfig; end class Clipping < OutputConfig; end class Subtitling < OutputConfig; end class ContextualMetadata < OutputConfig; end class Unknown < OutputConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1144 1145 1146 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1144 def unknown @unknown end |