Class: Aws::CodeCommit::Types::UpdatePullRequestDescriptionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdatePullRequestDescriptionInput
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass UpdatePullRequestDescriptionInput data as a hash:
{
pull_request_id: "PullRequestId", # required
description: "Description", # required
}
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.
7810 7811 7812 7813 7814 7815 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7810 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.
7810 7811 7812 7813 7814 7815 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7810 class UpdatePullRequestDescriptionInput < Struct.new( :pull_request_id, :description) SENSITIVE = [] include Aws::Structure end |