Struct aws_sdk_codebuild::operation::retry_build::RetryBuildInput   
source · #[non_exhaustive]pub struct RetryBuildInput {
    pub id: Option<String>,
    pub idempotency_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>Specifies the identifier of the build to restart.
idempotency_token: Option<String>A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuild request. The token is included in the RetryBuild request and is valid for five minutes. If you repeat the RetryBuild request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
Implementations§
source§impl RetryBuildInput
 
impl RetryBuildInput
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 RetryBuild request. The token is included in the RetryBuild request and is valid for five minutes. If you repeat the RetryBuild request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
source§impl RetryBuildInput
 
impl RetryBuildInput
sourcepub fn builder() -> RetryBuildInputBuilder
 
pub fn builder() -> RetryBuildInputBuilder
Creates a new builder-style object to manufacture RetryBuildInput.
Trait Implementations§
source§impl Clone for RetryBuildInput
 
impl Clone for RetryBuildInput
source§fn clone(&self) -> RetryBuildInput
 
fn clone(&self) -> RetryBuildInput
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 RetryBuildInput
 
impl Debug for RetryBuildInput
source§impl PartialEq for RetryBuildInput
 
impl PartialEq for RetryBuildInput
source§fn eq(&self, other: &RetryBuildInput) -> bool
 
fn eq(&self, other: &RetryBuildInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RetryBuildInput
Auto Trait Implementations§
impl Freeze for RetryBuildInput
impl RefUnwindSafe for RetryBuildInput
impl Send for RetryBuildInput
impl Sync for RetryBuildInput
impl Unpin for RetryBuildInput
impl UnwindSafe for RetryBuildInput
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
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>
Creates a shared type from an unshared type.