Class: Aws::CleanRooms::Types::ApprovalStatusDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ApprovalStatusDetails
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Contains detailed information about the approval state of a given member in the collaboration for a given collaboration change request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The approval status of a member's vote on the change request.
Instance Attribute Details
#status ⇒ String
The approval status of a member's vote on the change request. Valid values are PENDING (if they haven't voted), APPROVED, or DENIED.
907 908 909 910 911 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 907 class ApprovalStatusDetails < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |