pub struct ExecuteChangeSetInput {
pub change_set_name: String,
pub client_request_token: Option<String>,
pub stack_name: Option<String>,
}Expand description
The input for the ExecuteChangeSet action.
Fields§
§change_set_name: StringThe name or ARN of the change set that you want use to update the specified stack.
client_request_token: Option<String>A unique identifier for this ExecuteChangeSet request. Specify this token if you plan to retry requests so that AWS CloudFormation knows that you're not attempting to execute a change set to update a stack with the same name. You might retry ExecuteChangeSet requests to ensure that AWS CloudFormation successfully received them.
stack_name: Option<String>If you specified the name of a change set, specify the stack name or ID (ARN) that is associated with the change set you want to execute.
Trait Implementations§
Source§impl Clone for ExecuteChangeSetInput
impl Clone for ExecuteChangeSetInput
Source§fn clone(&self) -> ExecuteChangeSetInput
fn clone(&self) -> ExecuteChangeSetInput
Returns a duplicate 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 ExecuteChangeSetInput
impl Debug for ExecuteChangeSetInput
Source§impl Default for ExecuteChangeSetInput
impl Default for ExecuteChangeSetInput
Source§fn default() -> ExecuteChangeSetInput
fn default() -> ExecuteChangeSetInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExecuteChangeSetInput
impl PartialEq for ExecuteChangeSetInput
impl StructuralPartialEq for ExecuteChangeSetInput
Auto Trait Implementations§
impl Freeze for ExecuteChangeSetInput
impl RefUnwindSafe for ExecuteChangeSetInput
impl Send for ExecuteChangeSetInput
impl Sync for ExecuteChangeSetInput
impl Unpin for ExecuteChangeSetInput
impl UnwindSafe for ExecuteChangeSetInput
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