Class: Aws::DataZone::Types::Model

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

Overview

Note:

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

Note:

Model is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Model corresponding to the set member.

The model of the API.

Direct Known Subclasses

Smithy, Unknown

Defined Under Namespace

Classes: Smithy, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#smithyString

Indicates the smithy model of the API.

Returns:

  • (String)


8681
8682
8683
8684
8685
8686
8687
8688
8689
8690
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8681

class Model < Struct.new(
  :smithy,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Smithy < Model; end
  class Unknown < Model; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8681
8682
8683
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8681

def unknown
  @unknown
end