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 ==.