#[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 ==
.