Class: Aws::ElementalInference::Types::OutputConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb

Overview

Note:

OutputConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

Clipping, Cropping, Unknown

Defined Under Namespace

Classes: Clipping, Cropping, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#clippingTypes::ClippingConfig

The output config type that applies to the clipping feature.



568
569
570
571
572
573
574
575
576
577
578
579
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 568

class OutputConfig < Struct.new(
  :cropping,
  :clipping,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Cropping < OutputConfig; end
  class Clipping < OutputConfig; end
  class Unknown < OutputConfig; end
end

#croppingTypes::CroppingConfig

The output config type that applies to the cropping feature.

Returns:

  • (Types::CroppingConfig)


568
569
570
571
572
573
574
575
576
577
578
579
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 568

class OutputConfig < Struct.new(
  :cropping,
  :clipping,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Cropping < OutputConfig; end
  class Clipping < OutputConfig; end
  class Unknown < OutputConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



568
569
570
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 568

def unknown
  @unknown
end