Class: Aws::CodeCommit::Types::Approval
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Approval
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a specific approval on a pull request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#approval_state ⇒ String
The state of the approval, APPROVE or REVOKE.
-
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user.
Instance Attribute Details
#approval_state ⇒ String
The state of the approval, APPROVE or REVOKE. REVOKE states are not stored.
33 34 35 36 37 38 |
# File 'lib/aws-sdk-codecommit/types.rb', line 33 class Approval < Struct.new( :user_arn, :approval_state) SENSITIVE = [] include Aws::Structure end |
#user_arn ⇒ String
The Amazon Resource Name (ARN) of the user.
33 34 35 36 37 38 |
# File 'lib/aws-sdk-codecommit/types.rb', line 33 class Approval < Struct.new( :user_arn, :approval_state) SENSITIVE = [] include Aws::Structure end |