#[non_exhaustive]pub struct RetryBuildBatchInput {
pub id: Option<String>,
pub idempotency_token: Option<String>,
pub retry_type: Option<RetryBuildBatchType>,
}
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.id: Option<String>
Specifies the identifier of the batch build to restart.
idempotency_token: Option<String>
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.
retry_type: Option<RetryBuildBatchType>
Specifies the type of retry to perform.
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
.
Trait Implementations§
source§impl Clone for RetryBuildBatchInput
impl Clone for RetryBuildBatchInput
source§fn clone(&self) -> RetryBuildBatchInput
fn clone(&self) -> RetryBuildBatchInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RetryBuildBatchInput
impl Debug for RetryBuildBatchInput
source§impl PartialEq for RetryBuildBatchInput
impl PartialEq for RetryBuildBatchInput
source§fn eq(&self, other: &RetryBuildBatchInput) -> bool
fn eq(&self, other: &RetryBuildBatchInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RetryBuildBatchInput
Auto Trait Implementations§
impl Freeze for RetryBuildBatchInput
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
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