Struct aws_sdk_codecommit::operation::update_pull_request_status::builders::UpdatePullRequestStatusInputBuilder
source · #[non_exhaustive]pub struct UpdatePullRequestStatusInputBuilder { /* private fields */ }Expand description
A builder for UpdatePullRequestStatusInput.
Implementations§
source§impl UpdatePullRequestStatusInputBuilder
impl UpdatePullRequestStatusInputBuilder
sourcepub fn pull_request_id(self, input: impl Into<String>) -> Self
pub fn pull_request_id(self, input: impl Into<String>) -> Self
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
sourcepub fn set_pull_request_id(self, input: Option<String>) -> Self
pub fn set_pull_request_id(self, input: Option<String>) -> Self
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
sourcepub fn get_pull_request_id(&self) -> &Option<String>
pub fn get_pull_request_id(&self) -> &Option<String>
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
sourcepub fn pull_request_status(self, input: PullRequestStatusEnum) -> Self
pub fn pull_request_status(self, input: PullRequestStatusEnum) -> Self
The status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.
sourcepub fn set_pull_request_status(
self,
input: Option<PullRequestStatusEnum>
) -> Self
pub fn set_pull_request_status( self, input: Option<PullRequestStatusEnum> ) -> Self
The status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.
sourcepub fn get_pull_request_status(&self) -> &Option<PullRequestStatusEnum>
pub fn get_pull_request_status(&self) -> &Option<PullRequestStatusEnum>
The status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.
sourcepub fn build(self) -> Result<UpdatePullRequestStatusInput, BuildError>
pub fn build(self) -> Result<UpdatePullRequestStatusInput, BuildError>
Consumes the builder and constructs a UpdatePullRequestStatusInput.
source§impl UpdatePullRequestStatusInputBuilder
impl UpdatePullRequestStatusInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdatePullRequestStatusOutput, SdkError<UpdatePullRequestStatusError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdatePullRequestStatusOutput, SdkError<UpdatePullRequestStatusError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePullRequestStatusInputBuilder
impl Clone for UpdatePullRequestStatusInputBuilder
source§fn clone(&self) -> UpdatePullRequestStatusInputBuilder
fn clone(&self) -> UpdatePullRequestStatusInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdatePullRequestStatusInputBuilder
impl Default for UpdatePullRequestStatusInputBuilder
source§fn default() -> UpdatePullRequestStatusInputBuilder
fn default() -> UpdatePullRequestStatusInputBuilder
source§impl PartialEq for UpdatePullRequestStatusInputBuilder
impl PartialEq for UpdatePullRequestStatusInputBuilder
source§fn eq(&self, other: &UpdatePullRequestStatusInputBuilder) -> bool
fn eq(&self, other: &UpdatePullRequestStatusInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdatePullRequestStatusInputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePullRequestStatusInputBuilder
impl RefUnwindSafe for UpdatePullRequestStatusInputBuilder
impl Send for UpdatePullRequestStatusInputBuilder
impl Sync for UpdatePullRequestStatusInputBuilder
impl Unpin for UpdatePullRequestStatusInputBuilder
impl UnwindSafe for UpdatePullRequestStatusInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more