#[non_exhaustive]pub struct CreateConnectionAliasInput {
pub connection_string: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.connection_string: Option<String>
A connection string in the form of a fully qualified domain name (FQDN), such as www.example.com
.
After you create a connection string, it is always associated to your Amazon Web Services account. You cannot recreate the same connection string with a different account, even if you delete all instances of it from the original account. The connection string is globally reserved for your account.
The tags to associate with the connection alias.
Implementations§
source§impl CreateConnectionAliasInput
impl CreateConnectionAliasInput
sourcepub fn connection_string(&self) -> Option<&str>
pub fn connection_string(&self) -> Option<&str>
A connection string in the form of a fully qualified domain name (FQDN), such as www.example.com
.
After you create a connection string, it is always associated to your Amazon Web Services account. You cannot recreate the same connection string with a different account, even if you delete all instances of it from the original account. The connection string is globally reserved for your account.
The tags to associate with the connection alias.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateConnectionAliasInput
impl CreateConnectionAliasInput
sourcepub fn builder() -> CreateConnectionAliasInputBuilder
pub fn builder() -> CreateConnectionAliasInputBuilder
Creates a new builder-style object to manufacture CreateConnectionAliasInput
.
Trait Implementations§
source§impl Clone for CreateConnectionAliasInput
impl Clone for CreateConnectionAliasInput
source§fn clone(&self) -> CreateConnectionAliasInput
fn clone(&self) -> CreateConnectionAliasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateConnectionAliasInput
impl Debug for CreateConnectionAliasInput
source§impl PartialEq for CreateConnectionAliasInput
impl PartialEq for CreateConnectionAliasInput
source§fn eq(&self, other: &CreateConnectionAliasInput) -> bool
fn eq(&self, other: &CreateConnectionAliasInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateConnectionAliasInput
Auto Trait Implementations§
impl Freeze for CreateConnectionAliasInput
impl RefUnwindSafe for CreateConnectionAliasInput
impl Send for CreateConnectionAliasInput
impl Sync for CreateConnectionAliasInput
impl Unpin for CreateConnectionAliasInput
impl UnwindSafe for CreateConnectionAliasInput
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