Class: Aws::CodeCommit::Types::CreatePullRequestInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::CreatePullRequestInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter.
-
#description ⇒ String
A description of the pull request.
-
#targets ⇒ Array<Types::Target>
The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
-
#title ⇒ String
The title of the pull request.
Instance Attribute Details
#client_request_token ⇒ String
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
<note markdown=“1”> The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
</note>
**A suitable default value is auto-generated.** You should normally not need to pass this option.
1609 1610 1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1609 class CreatePullRequestInput < Struct.new( :title, :description, :targets, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the pull request.
1609 1610 1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1609 class CreatePullRequestInput < Struct.new( :title, :description, :targets, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#targets ⇒ Array<Types::Target>
The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
1609 1610 1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1609 class CreatePullRequestInput < Struct.new( :title, :description, :targets, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The title of the pull request. This title is used to identify the pull request to other users in the repository.
1609 1610 1611 1612 1613 1614 1615 1616 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1609 class CreatePullRequestInput < Struct.new( :title, :description, :targets, :client_request_token) SENSITIVE = [] include Aws::Structure end |