pub struct CreateConnectionRequest {
pub bandwidth: String,
pub connection_name: String,
pub lag_id: Option<String>,
pub location: String,
pub provider_name: Option<String>,
pub tags: Option<Vec<Tag>>,
}Fields§
§bandwidth: StringThe bandwidth of the connection.
connection_name: StringThe name of the connection.
lag_id: Option<String>The ID of the LAG.
location: StringThe location of the connection.
provider_name: Option<String>The name of the service provider associated with the requested connection.
The tags to associate with the lag.
Trait Implementations§
Source§impl Clone for CreateConnectionRequest
impl Clone for CreateConnectionRequest
Source§fn clone(&self) -> CreateConnectionRequest
fn clone(&self) -> CreateConnectionRequest
Returns a duplicate 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 CreateConnectionRequest
impl Debug for CreateConnectionRequest
Source§impl Default for CreateConnectionRequest
impl Default for CreateConnectionRequest
Source§fn default() -> CreateConnectionRequest
fn default() -> CreateConnectionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateConnectionRequest
impl PartialEq for CreateConnectionRequest
Source§impl Serialize for CreateConnectionRequest
impl Serialize for CreateConnectionRequest
impl StructuralPartialEq for CreateConnectionRequest
Auto Trait Implementations§
impl Freeze for CreateConnectionRequest
impl RefUnwindSafe for CreateConnectionRequest
impl Send for CreateConnectionRequest
impl Sync for CreateConnectionRequest
impl Unpin for CreateConnectionRequest
impl UnwindSafe for CreateConnectionRequest
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