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)


11180
11181
11182
11183
11184
11185
11186
11187
11188
11189
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11180

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



11180
11181
11182
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11180

def unknown
  @unknown
end