Class: Aws::CleanRooms::Types::ChangeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ChangeInput
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Specifies a change to apply to a collaboration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#specification ⇒ Types::ChangeSpecification
The specification details for the change.
-
#specification_type ⇒ String
The type of specification for the change.
Instance Attribute Details
#specification ⇒ Types::ChangeSpecification
The specification details for the change. The structure depends on the specification type.
1200 1201 1202 1203 1204 1205 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1200 class ChangeInput < Struct.new( :specification_type, :specification) SENSITIVE = [] include Aws::Structure end |
#specification_type ⇒ String
The type of specification for the change. Currently supports
MEMBER
for member-related changes.
1200 1201 1202 1203 1204 1205 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1200 class ChangeInput < Struct.new( :specification_type, :specification) SENSITIVE = [] include Aws::Structure end |