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.
7071 7072 7073 7074 7075 7076 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7071 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`.
7071 7072 7073 7074 7075 7076 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7071 class UpdatePullRequestStatusInput < Struct.new( :pull_request_id, :pull_request_status) SENSITIVE = [] include Aws::Structure end |