Class: Aws::CleanRooms::Types::ChangeSpecification

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

Overview

Note:

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

Note:

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

A union that contains the specification details for different types of changes.

Direct Known Subclasses

Member, Unknown

Defined Under Namespace

Classes: Member, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#memberTypes::MemberChangeSpecification

The member change specification when the change type is MEMBER.



1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1038

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

  class Member < ChangeSpecification; end
  class Unknown < ChangeSpecification; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1038
1039
1040
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1038

def unknown
  @unknown
end