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)


8278
8279
8280
8281
8282
8283
8284
8285
8286
8287
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8278

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



8278
8279
8280
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8278

def unknown
  @unknown
end