#[non_exhaustive]pub struct CreateAccountAliasInput {
pub account_alias: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.account_alias: Option<String>
The account alias to create.
This parameter allows (through its regex pattern) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row.
Implementations§
source§impl CreateAccountAliasInput
impl CreateAccountAliasInput
sourcepub fn account_alias(&self) -> Option<&str>
pub fn account_alias(&self) -> Option<&str>
The account alias to create.
This parameter allows (through its regex pattern) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row.
source§impl CreateAccountAliasInput
impl CreateAccountAliasInput
sourcepub fn builder() -> CreateAccountAliasInputBuilder
pub fn builder() -> CreateAccountAliasInputBuilder
Creates a new builder-style object to manufacture CreateAccountAliasInput
.
Trait Implementations§
source§impl Clone for CreateAccountAliasInput
impl Clone for CreateAccountAliasInput
source§fn clone(&self) -> CreateAccountAliasInput
fn clone(&self) -> CreateAccountAliasInput
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 Debug for CreateAccountAliasInput
impl Debug for CreateAccountAliasInput
source§impl PartialEq for CreateAccountAliasInput
impl PartialEq for CreateAccountAliasInput
source§fn eq(&self, other: &CreateAccountAliasInput) -> bool
fn eq(&self, other: &CreateAccountAliasInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateAccountAliasInput
Auto Trait Implementations§
impl Freeze for CreateAccountAliasInput
impl RefUnwindSafe for CreateAccountAliasInput
impl Send for CreateAccountAliasInput
impl Sync for CreateAccountAliasInput
impl Unpin for CreateAccountAliasInput
impl UnwindSafe for CreateAccountAliasInput
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
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>
Creates a shared type from an unshared type.