Class: Aws::CodeCommit::Types::UpdatePullRequestDescriptionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdatePullRequestDescriptionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The updated content of the description for the pull request.
-
#pull_request_id ⇒ String
The system-generated ID of the pull request.
Instance Attribute Details
#description ⇒ String
The updated content of the description for the pull request. This content replaces the existing description.
7036 7037 7038 7039 7040 7041 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7036 class UpdatePullRequestDescriptionInput < Struct.new( :pull_request_id, :description) SENSITIVE = [] include Aws::Structure end |
#pull_request_id ⇒ String
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
7036 7037 7038 7039 7040 7041 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7036 class UpdatePullRequestDescriptionInput < Struct.new( :pull_request_id, :description) SENSITIVE = [] include Aws::Structure end |