#[non_exhaustive]pub struct CancelUpdateStackInput { /* private fields */ }
Expand description
The input for the CancelUpdateStack
action.
Implementations
sourceimpl CancelUpdateStackInput
impl CancelUpdateStackInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CancelUpdateStack, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CancelUpdateStack, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CancelUpdateStack
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CancelUpdateStackInput
.
sourceimpl CancelUpdateStackInput
impl CancelUpdateStackInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name or the unique stack ID that's associated with the stack.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique identifier for this CancelUpdateStack
request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to cancel an update on a stack with the same name. You might retry CancelUpdateStack
requests to ensure that CloudFormation successfully received them.
Trait Implementations
sourceimpl Clone for CancelUpdateStackInput
impl Clone for CancelUpdateStackInput
sourcefn clone(&self) -> CancelUpdateStackInput
fn clone(&self) -> CancelUpdateStackInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CancelUpdateStackInput
impl Debug for CancelUpdateStackInput
sourceimpl PartialEq<CancelUpdateStackInput> for CancelUpdateStackInput
impl PartialEq<CancelUpdateStackInput> for CancelUpdateStackInput
sourcefn eq(&self, other: &CancelUpdateStackInput) -> bool
fn eq(&self, other: &CancelUpdateStackInput) -> bool
impl StructuralPartialEq for CancelUpdateStackInput
Auto Trait Implementations
impl RefUnwindSafe for CancelUpdateStackInput
impl Send for CancelUpdateStackInput
impl Sync for CancelUpdateStackInput
impl Unpin for CancelUpdateStackInput
impl UnwindSafe for CancelUpdateStackInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more