Class: Aws::CleanRooms::Types::ChangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ChangeSpecification
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member ⇒ Types::MemberChangeSpecification
The member change specification when the change type is
MEMBER. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member ⇒ Types::MemberChangeSpecification
The member change specification when the change type is MEMBER.
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1239 class ChangeSpecification < Struct.new( :member, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Member < ChangeSpecification; end class Unknown < ChangeSpecification; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1239 1240 1241 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1239 def unknown @unknown end |