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