Class: Aws::CodeCommit::Types::UpdatePullRequestTitleInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdatePullRequestTitleInput
- 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.
-
#title ⇒ String
The updated title 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.
7099 7100 7101 7102 7103 7104 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7099 class UpdatePullRequestTitleInput < Struct.new( :pull_request_id, :title) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The updated title of the pull request. This replaces the existing title.
7099 7100 7101 7102 7103 7104 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7099 class UpdatePullRequestTitleInput < Struct.new( :pull_request_id, :title) SENSITIVE = [] include Aws::Structure end |