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
ChangeSpecification is a union - when making an API calls you must set exactly one of the members.
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
Defined Under Namespace
Classes: Collaboration, Member, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#collaboration ⇒ Types::CollaborationChangeSpecification
The collaboration configuration changes being requested.
-
#member ⇒ Types::MemberChangeSpecification
The member change specification when the change type is
MEMBER. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#collaboration ⇒ Types::CollaborationChangeSpecification
The collaboration configuration changes being requested. Currently, this only supports modifying which change types are auto-approved for the collaboration.
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1260 class ChangeSpecification < Struct.new( :member, :collaboration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Member < ChangeSpecification; end class Collaboration < ChangeSpecification; end class Unknown < ChangeSpecification; end end |
#member ⇒ Types::MemberChangeSpecification
The member change specification when the change type is MEMBER.
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1260 class ChangeSpecification < Struct.new( :member, :collaboration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Member < ChangeSpecification; end class Collaboration < ChangeSpecification; end class Unknown < ChangeSpecification; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1260 1261 1262 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1260 def unknown @unknown end |