Class: Aws::CodeCommit::Types::UpdatePullRequestStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdatePullRequestStatusInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pull_request_id ⇒ String
The system-generated ID of the pull request.
-
#pull_request_status ⇒ String
The status of the pull request.
Instance Attribute Details
#pull_request_id ⇒ String
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
7249 7250 7251 7252 7253 7254 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7249 class UpdatePullRequestStatusInput < Struct.new( :pull_request_id, :pull_request_status) SENSITIVE = [] include Aws::Structure end |
#pull_request_status ⇒ String
The status of the pull request. The only valid operations are to
update the status from OPEN to OPEN, OPEN to CLOSED or from
CLOSED to CLOSED.
7249 7250 7251 7252 7253 7254 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7249 class UpdatePullRequestStatusInput < Struct.new( :pull_request_id, :pull_request_status) SENSITIVE = [] include Aws::Structure end |