Class: Aws::CleanRooms::Types::Change
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::Change
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Represents a single change within a collaboration change request, containing the change identifier and specification.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#specification ⇒ Types::ChangeSpecification
The specification details for this change.
-
#specification_type ⇒ String
The type of specification for this change.
-
#types ⇒ Array<String>
The list of change types that were applied.
Instance Attribute Details
#specification ⇒ Types::ChangeSpecification
The specification details for this change.
996 997 998 999 1000 1001 1002 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 996 class Change < Struct.new( :specification_type, :specification, :types) SENSITIVE = [] include Aws::Structure end |