Struct aws_sdk_cloudformation::operation::update_termination_protection::builders::UpdateTerminationProtectionInputBuilder
source · #[non_exhaustive]pub struct UpdateTerminationProtectionInputBuilder { /* private fields */ }Expand description
A builder for UpdateTerminationProtectionInput.
Implementations§
source§impl UpdateTerminationProtectionInputBuilder
impl UpdateTerminationProtectionInputBuilder
sourcepub fn enable_termination_protection(self, input: bool) -> Self
pub fn enable_termination_protection(self, input: bool) -> Self
Whether to enable termination protection on the specified stack.
sourcepub fn set_enable_termination_protection(self, input: Option<bool>) -> Self
pub fn set_enable_termination_protection(self, input: Option<bool>) -> Self
Whether to enable termination protection on the specified stack.
sourcepub fn get_enable_termination_protection(&self) -> &Option<bool>
pub fn get_enable_termination_protection(&self) -> &Option<bool>
Whether to enable termination protection on the specified stack.
sourcepub fn stack_name(self, input: impl Into<String>) -> Self
pub fn stack_name(self, input: impl Into<String>) -> Self
The name or unique ID of the stack for which you want to set termination protection.
sourcepub fn set_stack_name(self, input: Option<String>) -> Self
pub fn set_stack_name(self, input: Option<String>) -> Self
The name or unique ID of the stack for which you want to set termination protection.
sourcepub fn get_stack_name(&self) -> &Option<String>
pub fn get_stack_name(&self) -> &Option<String>
The name or unique ID of the stack for which you want to set termination protection.
sourcepub fn build(self) -> Result<UpdateTerminationProtectionInput, BuildError>
pub fn build(self) -> Result<UpdateTerminationProtectionInput, BuildError>
Consumes the builder and constructs a UpdateTerminationProtectionInput.
source§impl UpdateTerminationProtectionInputBuilder
impl UpdateTerminationProtectionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateTerminationProtectionOutput, SdkError<UpdateTerminationProtectionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateTerminationProtectionOutput, SdkError<UpdateTerminationProtectionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateTerminationProtectionInputBuilder
impl Clone for UpdateTerminationProtectionInputBuilder
source§fn clone(&self) -> UpdateTerminationProtectionInputBuilder
fn clone(&self) -> UpdateTerminationProtectionInputBuilder
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 Default for UpdateTerminationProtectionInputBuilder
impl Default for UpdateTerminationProtectionInputBuilder
source§fn default() -> UpdateTerminationProtectionInputBuilder
fn default() -> UpdateTerminationProtectionInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateTerminationProtectionInputBuilder> for UpdateTerminationProtectionInputBuilder
impl PartialEq<UpdateTerminationProtectionInputBuilder> for UpdateTerminationProtectionInputBuilder
source§fn eq(&self, other: &UpdateTerminationProtectionInputBuilder) -> bool
fn eq(&self, other: &UpdateTerminationProtectionInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateTerminationProtectionInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateTerminationProtectionInputBuilder
impl Send for UpdateTerminationProtectionInputBuilder
impl Sync for UpdateTerminationProtectionInputBuilder
impl Unpin for UpdateTerminationProtectionInputBuilder
impl UnwindSafe for UpdateTerminationProtectionInputBuilder
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