Struct aws_sdk_codecommit::input::CreatePullRequestInput
source · [−]#[non_exhaustive]pub struct CreatePullRequestInput {
pub title: Option<String>,
pub description: Option<String>,
pub targets: Option<Vec<Target>>,
pub client_request_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.title: Option<String>
The title of the pull request. This title is used to identify the pull request to other users in the repository.
description: Option<String>
A description of the pull request.
targets: 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).
client_request_token: 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 AWS SDKs prepopulate client request tokens. If you are using an AWS SDK, an idempotency token is created for you.
Implementations
sourceimpl CreatePullRequestInput
impl CreatePullRequestInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreatePullRequest, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreatePullRequest, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreatePullRequest
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreatePullRequestInput
sourceimpl CreatePullRequestInput
impl CreatePullRequestInput
sourcepub fn title(&self) -> Option<&str>
pub fn title(&self) -> Option<&str>
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) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the pull request.
sourcepub fn targets(&self) -> Option<&[Target]>
pub fn targets(&self) -> Option<&[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) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
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 AWS SDKs prepopulate client request tokens. If you are using an AWS SDK, an idempotency token is created for you.
Trait Implementations
sourceimpl Clone for CreatePullRequestInput
impl Clone for CreatePullRequestInput
sourcefn clone(&self) -> CreatePullRequestInput
fn clone(&self) -> CreatePullRequestInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreatePullRequestInput
impl Debug for CreatePullRequestInput
sourceimpl PartialEq<CreatePullRequestInput> for CreatePullRequestInput
impl PartialEq<CreatePullRequestInput> for CreatePullRequestInput
sourcefn eq(&self, other: &CreatePullRequestInput) -> bool
fn eq(&self, other: &CreatePullRequestInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreatePullRequestInput) -> bool
fn ne(&self, other: &CreatePullRequestInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreatePullRequestInput
Auto Trait Implementations
impl RefUnwindSafe for CreatePullRequestInput
impl Send for CreatePullRequestInput
impl Sync for CreatePullRequestInput
impl Unpin for CreatePullRequestInput
impl UnwindSafe for CreatePullRequestInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more