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.

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)


17017
17018
17019
17020
17021
17022
17023
17024
17025
17026
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17017

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



17017
17018
17019
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17017

def unknown
  @unknown
end