Struct aws_sdk_directconnect::operation::allocate_hosted_connection::AllocateHostedConnectionInput
source · #[non_exhaustive]pub struct AllocateHostedConnectionInput {
pub connection_id: Option<String>,
pub owner_account: Option<String>,
pub bandwidth: Option<String>,
pub connection_name: Option<String>,
pub vlan: Option<i32>,
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_id: Option<String>The ID of the interconnect or LAG.
owner_account: Option<String>The ID of the Amazon Web Services account ID of the customer for the connection.
bandwidth: Option<String>The bandwidth of the connection. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps. Note that only those Direct Connect Partners who have met specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or 10Gbps hosted connection.
connection_name: Option<String>The name of the hosted connection.
vlan: Option<i32>The dedicated VLAN provisioned to the hosted connection.
The tags associated with the connection.
Implementations§
source§impl AllocateHostedConnectionInput
impl AllocateHostedConnectionInput
sourcepub fn connection_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
The ID of the interconnect or LAG.
sourcepub fn owner_account(&self) -> Option<&str>
pub fn owner_account(&self) -> Option<&str>
The ID of the Amazon Web Services account ID of the customer for the connection.
sourcepub fn bandwidth(&self) -> Option<&str>
pub fn bandwidth(&self) -> Option<&str>
The bandwidth of the connection. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps. Note that only those Direct Connect Partners who have met specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or 10Gbps hosted connection.
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the hosted connection.
The tags associated with the connection.
source§impl AllocateHostedConnectionInput
impl AllocateHostedConnectionInput
sourcepub fn builder() -> AllocateHostedConnectionInputBuilder
pub fn builder() -> AllocateHostedConnectionInputBuilder
Creates a new builder-style object to manufacture AllocateHostedConnectionInput.
Trait Implementations§
source§impl Clone for AllocateHostedConnectionInput
impl Clone for AllocateHostedConnectionInput
source§fn clone(&self) -> AllocateHostedConnectionInput
fn clone(&self) -> AllocateHostedConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<AllocateHostedConnectionInput> for AllocateHostedConnectionInput
impl PartialEq<AllocateHostedConnectionInput> for AllocateHostedConnectionInput
source§fn eq(&self, other: &AllocateHostedConnectionInput) -> bool
fn eq(&self, other: &AllocateHostedConnectionInput) -> bool
self and other values to be equal, and is used
by ==.