Class: Aws::CodePipeline::Types::ApprovalResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ApprovalResult
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Note:
When making an API call, you may pass ApprovalResult data as a hash:
{
summary: "ApprovalSummary", # required
status: "Approved", # required, accepts Approved, Rejected
}
Represents information about the result of an approval request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The response submitted by a reviewer assigned to an approval action request.
-
#summary ⇒ String
The summary of the current status of the approval request.
Instance Attribute Details
#status ⇒ String
The response submitted by a reviewer assigned to an approval action request.
1274 1275 1276 1277 1278 1279 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1274 class ApprovalResult < Struct.new( :summary, :status) SENSITIVE = [] include Aws::Structure end |
#summary ⇒ String
The summary of the current status of the approval request.
1274 1275 1276 1277 1278 1279 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1274 class ApprovalResult < Struct.new( :summary, :status) SENSITIVE = [] include Aws::Structure end |