Struct aws_sdk_cloudformation::operation::delete_change_set::builders::DeleteChangeSetInputBuilder
source · #[non_exhaustive]pub struct DeleteChangeSetInputBuilder { /* private fields */ }
Expand description
A builder for DeleteChangeSetInput
.
Implementations§
source§impl DeleteChangeSetInputBuilder
impl DeleteChangeSetInputBuilder
sourcepub fn change_set_name(self, input: impl Into<String>) -> Self
pub fn change_set_name(self, input: impl Into<String>) -> Self
The name or Amazon Resource Name (ARN) of the change set that you want to delete.
This field is required.sourcepub fn set_change_set_name(self, input: Option<String>) -> Self
pub fn set_change_set_name(self, input: Option<String>) -> Self
The name or Amazon Resource Name (ARN) of the change set that you want to delete.
sourcepub fn get_change_set_name(&self) -> &Option<String>
pub fn get_change_set_name(&self) -> &Option<String>
The name or Amazon Resource Name (ARN) of the change set that you want to delete.
sourcepub fn stack_name(self, input: impl Into<String>) -> Self
pub fn stack_name(self, input: impl Into<String>) -> Self
If you specified the name of a change set to delete, specify the stack name or Amazon Resource Name (ARN) that's associated with it.
sourcepub fn set_stack_name(self, input: Option<String>) -> Self
pub fn set_stack_name(self, input: Option<String>) -> Self
If you specified the name of a change set to delete, specify the stack name or Amazon Resource Name (ARN) that's associated with it.
sourcepub fn get_stack_name(&self) -> &Option<String>
pub fn get_stack_name(&self) -> &Option<String>
If you specified the name of a change set to delete, specify the stack name or Amazon Resource Name (ARN) that's associated with it.
sourcepub fn build(self) -> Result<DeleteChangeSetInput, BuildError>
pub fn build(self) -> Result<DeleteChangeSetInput, BuildError>
Consumes the builder and constructs a DeleteChangeSetInput
.
source§impl DeleteChangeSetInputBuilder
impl DeleteChangeSetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteChangeSetOutput, SdkError<DeleteChangeSetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteChangeSetOutput, SdkError<DeleteChangeSetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteChangeSetInputBuilder
impl Clone for DeleteChangeSetInputBuilder
source§fn clone(&self) -> DeleteChangeSetInputBuilder
fn clone(&self) -> DeleteChangeSetInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteChangeSetInputBuilder
impl Debug for DeleteChangeSetInputBuilder
source§impl Default for DeleteChangeSetInputBuilder
impl Default for DeleteChangeSetInputBuilder
source§fn default() -> DeleteChangeSetInputBuilder
fn default() -> DeleteChangeSetInputBuilder
source§impl PartialEq for DeleteChangeSetInputBuilder
impl PartialEq for DeleteChangeSetInputBuilder
source§fn eq(&self, other: &DeleteChangeSetInputBuilder) -> bool
fn eq(&self, other: &DeleteChangeSetInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteChangeSetInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteChangeSetInputBuilder
impl RefUnwindSafe for DeleteChangeSetInputBuilder
impl Send for DeleteChangeSetInputBuilder
impl Sync for DeleteChangeSetInputBuilder
impl Unpin for DeleteChangeSetInputBuilder
impl UnwindSafe for DeleteChangeSetInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more