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.
7065 7066 7067 7068 7069 7070 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7065 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.
7065 7066 7067 7068 7069 7070 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7065 class UpdatePullRequestStatusInput < Struct.new( :pull_request_id, :pull_request_status) SENSITIVE = [] include Aws::Structure end |