Struct aws_sdk_quicksight::operation::delete_template_alias::builders::DeleteTemplateAliasInputBuilder
source · #[non_exhaustive]pub struct DeleteTemplateAliasInputBuilder { /* private fields */ }Expand description
A builder for DeleteTemplateAliasInput.
Implementations§
source§impl DeleteTemplateAliasInputBuilder
impl DeleteTemplateAliasInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the item to delete.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the item to delete.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the item to delete.
sourcepub fn template_id(self, input: impl Into<String>) -> Self
pub fn template_id(self, input: impl Into<String>) -> Self
The ID for the template that the specified alias is for.
This field is required.sourcepub fn set_template_id(self, input: Option<String>) -> Self
pub fn set_template_id(self, input: Option<String>) -> Self
The ID for the template that the specified alias is for.
sourcepub fn get_template_id(&self) -> &Option<String>
pub fn get_template_id(&self) -> &Option<String>
The ID for the template that the specified alias is for.
sourcepub fn alias_name(self, input: impl Into<String>) -> Self
pub fn alias_name(self, input: impl Into<String>) -> Self
The name for the template alias. To delete a specific alias, you delete the version that the alias points to. You can specify the alias name, or specify the latest version of the template by providing the keyword $LATEST in the AliasName parameter.
sourcepub fn set_alias_name(self, input: Option<String>) -> Self
pub fn set_alias_name(self, input: Option<String>) -> Self
The name for the template alias. To delete a specific alias, you delete the version that the alias points to. You can specify the alias name, or specify the latest version of the template by providing the keyword $LATEST in the AliasName parameter.
sourcepub fn get_alias_name(&self) -> &Option<String>
pub fn get_alias_name(&self) -> &Option<String>
The name for the template alias. To delete a specific alias, you delete the version that the alias points to. You can specify the alias name, or specify the latest version of the template by providing the keyword $LATEST in the AliasName parameter.
sourcepub fn build(self) -> Result<DeleteTemplateAliasInput, BuildError>
pub fn build(self) -> Result<DeleteTemplateAliasInput, BuildError>
Consumes the builder and constructs a DeleteTemplateAliasInput.
source§impl DeleteTemplateAliasInputBuilder
impl DeleteTemplateAliasInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteTemplateAliasOutput, SdkError<DeleteTemplateAliasError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteTemplateAliasOutput, SdkError<DeleteTemplateAliasError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteTemplateAliasInputBuilder
impl Clone for DeleteTemplateAliasInputBuilder
source§fn clone(&self) -> DeleteTemplateAliasInputBuilder
fn clone(&self) -> DeleteTemplateAliasInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteTemplateAliasInputBuilder
impl Default for DeleteTemplateAliasInputBuilder
source§fn default() -> DeleteTemplateAliasInputBuilder
fn default() -> DeleteTemplateAliasInputBuilder
source§impl PartialEq for DeleteTemplateAliasInputBuilder
impl PartialEq for DeleteTemplateAliasInputBuilder
source§fn eq(&self, other: &DeleteTemplateAliasInputBuilder) -> bool
fn eq(&self, other: &DeleteTemplateAliasInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteTemplateAliasInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteTemplateAliasInputBuilder
impl RefUnwindSafe for DeleteTemplateAliasInputBuilder
impl Send for DeleteTemplateAliasInputBuilder
impl Sync for DeleteTemplateAliasInputBuilder
impl Unpin for DeleteTemplateAliasInputBuilder
impl UnwindSafe for DeleteTemplateAliasInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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