Struct aws_sdk_codecommit::operation::create_pull_request::builders::CreatePullRequestInputBuilder
source · #[non_exhaustive]pub struct CreatePullRequestInputBuilder { /* private fields */ }
Expand description
A builder for CreatePullRequestInput
.
Implementations§
source§impl CreatePullRequestInputBuilder
impl CreatePullRequestInputBuilder
sourcepub fn title(self, input: impl Into<String>) -> Self
pub fn title(self, input: impl Into<String>) -> Self
The title of the pull request. This title is used to identify the pull request to other users in the repository.
This field is required.sourcepub fn set_title(self, input: Option<String>) -> Self
pub fn set_title(self, input: Option<String>) -> Self
The title of the pull request. This title is used to identify the pull request to other users in the repository.
sourcepub fn get_title(&self) -> &Option<String>
pub fn get_title(&self) -> &Option<String>
The title of the pull request. This title is used to identify the pull request to other users in the repository.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the pull request.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the pull request.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the pull request.
sourcepub fn targets(self, input: Target) -> Self
pub fn targets(self, input: Target) -> Self
Appends an item to targets
.
To override the contents of this collection use set_targets
.
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).
sourcepub fn set_targets(self, input: Option<Vec<Target>>) -> Self
pub fn set_targets(self, input: Option<Vec<Target>>) -> Self
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).
sourcepub fn get_targets(&self) -> &Option<Vec<Target>>
pub fn get_targets(&self) -> &Option<Vec<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).
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
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.
The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
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.
The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<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.
The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.
sourcepub fn build(self) -> Result<CreatePullRequestInput, BuildError>
pub fn build(self) -> Result<CreatePullRequestInput, BuildError>
Consumes the builder and constructs a CreatePullRequestInput
.
source§impl CreatePullRequestInputBuilder
impl CreatePullRequestInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreatePullRequestOutput, SdkError<CreatePullRequestError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreatePullRequestOutput, SdkError<CreatePullRequestError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreatePullRequestInputBuilder
impl Clone for CreatePullRequestInputBuilder
source§fn clone(&self) -> CreatePullRequestInputBuilder
fn clone(&self) -> CreatePullRequestInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreatePullRequestInputBuilder
impl Default for CreatePullRequestInputBuilder
source§fn default() -> CreatePullRequestInputBuilder
fn default() -> CreatePullRequestInputBuilder
source§impl PartialEq for CreatePullRequestInputBuilder
impl PartialEq for CreatePullRequestInputBuilder
source§fn eq(&self, other: &CreatePullRequestInputBuilder) -> bool
fn eq(&self, other: &CreatePullRequestInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.