Struct aws_sdk_directconnect::operation::allocate_connection_on_interconnect::AllocateConnectionOnInterconnectInput
source · #[non_exhaustive]pub struct AllocateConnectionOnInterconnectInput {
pub bandwidth: Option<String>,
pub connection_name: Option<String>,
pub owner_account: Option<String>,
pub interconnect_id: Option<String>,
pub vlan: Option<i32>,
}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.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 provisioned connection.
owner_account: Option<String>The ID of the Amazon Web Services account of the customer for whom the connection will be provisioned.
interconnect_id: Option<String>The ID of the interconnect on which the connection will be provisioned.
vlan: Option<i32>The dedicated VLAN provisioned to the connection.
Implementations§
source§impl AllocateConnectionOnInterconnectInput
impl AllocateConnectionOnInterconnectInput
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 provisioned connection.
sourcepub fn owner_account(&self) -> Option<&str>
pub fn owner_account(&self) -> Option<&str>
The ID of the Amazon Web Services account of the customer for whom the connection will be provisioned.
sourcepub fn interconnect_id(&self) -> Option<&str>
pub fn interconnect_id(&self) -> Option<&str>
The ID of the interconnect on which the connection will be provisioned.
source§impl AllocateConnectionOnInterconnectInput
impl AllocateConnectionOnInterconnectInput
sourcepub fn builder() -> AllocateConnectionOnInterconnectInputBuilder
pub fn builder() -> AllocateConnectionOnInterconnectInputBuilder
Creates a new builder-style object to manufacture AllocateConnectionOnInterconnectInput.
Trait Implementations§
source§impl Clone for AllocateConnectionOnInterconnectInput
impl Clone for AllocateConnectionOnInterconnectInput
source§fn clone(&self) -> AllocateConnectionOnInterconnectInput
fn clone(&self) -> AllocateConnectionOnInterconnectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<AllocateConnectionOnInterconnectInput> for AllocateConnectionOnInterconnectInput
impl PartialEq<AllocateConnectionOnInterconnectInput> for AllocateConnectionOnInterconnectInput
source§fn eq(&self, other: &AllocateConnectionOnInterconnectInput) -> bool
fn eq(&self, other: &AllocateConnectionOnInterconnectInput) -> bool
self and other values to be equal, and is used
by ==.