pub struct CancelUpdateStackInput {
pub client_request_token: Option<String>,
pub stack_name: String,
}Expand description
The input for the CancelUpdateStack action.
Fields§
§client_request_token: Option<String>A unique identifier for this CancelUpdateStack request. Specify this token if you plan to retry requests so that AWS 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 AWS CloudFormation successfully received them.
stack_name: StringThe name or the unique stack ID that is associated with the stack.
Trait Implementations§
Source§impl Clone for CancelUpdateStackInput
impl Clone for CancelUpdateStackInput
Source§fn clone(&self) -> CancelUpdateStackInput
fn clone(&self) -> CancelUpdateStackInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CancelUpdateStackInput
impl Debug for CancelUpdateStackInput
Source§impl Default for CancelUpdateStackInput
impl Default for CancelUpdateStackInput
Source§fn default() -> CancelUpdateStackInput
fn default() -> CancelUpdateStackInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CancelUpdateStackInput
impl PartialEq for CancelUpdateStackInput
Source§fn eq(&self, other: &CancelUpdateStackInput) -> bool
fn eq(&self, other: &CancelUpdateStackInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CancelUpdateStackInput
Auto Trait Implementations§
impl Freeze for CancelUpdateStackInput
impl RefUnwindSafe for CancelUpdateStackInput
impl Send for CancelUpdateStackInput
impl Sync for CancelUpdateStackInput
impl Unpin for CancelUpdateStackInput
impl UnsafeUnpin for CancelUpdateStackInput
impl UnwindSafe for CancelUpdateStackInput
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