#[non_exhaustive]pub struct RetryBuildBatchInput { /* private fields */ }
Implementations§
source§impl RetryBuildBatchInput
impl RetryBuildBatchInput
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuildBatch
request. The token is included in the RetryBuildBatch
request and is valid for five minutes. If you repeat the RetryBuildBatch
request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
sourcepub fn retry_type(&self) -> Option<&RetryBuildBatchType>
pub fn retry_type(&self) -> Option<&RetryBuildBatchType>
Specifies the type of retry to perform.
source§impl RetryBuildBatchInput
impl RetryBuildBatchInput
sourcepub fn builder() -> RetryBuildBatchInputBuilder
pub fn builder() -> RetryBuildBatchInputBuilder
Creates a new builder-style object to manufacture RetryBuildBatchInput
.
source§impl RetryBuildBatchInput
impl RetryBuildBatchInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryBuildBatch, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<RetryBuildBatch, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RetryBuildBatch
>
Trait Implementations§
source§impl Clone for RetryBuildBatchInput
impl Clone for RetryBuildBatchInput
source§fn clone(&self) -> RetryBuildBatchInput
fn clone(&self) -> RetryBuildBatchInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RetryBuildBatchInput
impl Debug for RetryBuildBatchInput
source§impl PartialEq<RetryBuildBatchInput> for RetryBuildBatchInput
impl PartialEq<RetryBuildBatchInput> for RetryBuildBatchInput
source§fn eq(&self, other: &RetryBuildBatchInput) -> bool
fn eq(&self, other: &RetryBuildBatchInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RetryBuildBatchInput
Auto Trait Implementations§
impl RefUnwindSafe for RetryBuildBatchInput
impl Send for RetryBuildBatchInput
impl Sync for RetryBuildBatchInput
impl Unpin for RetryBuildBatchInput
impl UnwindSafe for RetryBuildBatchInput
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
Mutably borrows from an owned value. Read more