#[non_exhaustive]pub struct CreateConnectionInput {
pub global_network_id: Option<String>,
pub device_id: Option<String>,
pub connected_device_id: Option<String>,
pub link_id: Option<String>,
pub connected_link_id: Option<String>,
pub description: 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.global_network_id: Option<String>
The ID of the global network.
device_id: Option<String>
The ID of the first device in the connection.
connected_device_id: Option<String>
The ID of the second device in the connection.
link_id: Option<String>
The ID of the link for the first device.
connected_link_id: Option<String>
The ID of the link for the second device.
description: Option<String>
A description of the connection.
Length Constraints: Maximum length of 256 characters.
The tags to apply to the resource during creation.
Implementations§
source§impl CreateConnectionInput
impl CreateConnectionInput
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn connected_device_id(&self) -> Option<&str>
pub fn connected_device_id(&self) -> Option<&str>
The ID of the second device in the connection.
sourcepub fn connected_link_id(&self) -> Option<&str>
pub fn connected_link_id(&self) -> Option<&str>
The ID of the link for the second device.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the connection.
Length Constraints: Maximum length of 256 characters.
The tags to apply to the resource during creation.
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 CreateConnectionInput
impl CreateConnectionInput
sourcepub fn builder() -> CreateConnectionInputBuilder
pub fn builder() -> CreateConnectionInputBuilder
Creates a new builder-style object to manufacture CreateConnectionInput
.
Trait Implementations§
source§impl Clone for CreateConnectionInput
impl Clone for CreateConnectionInput
source§fn clone(&self) -> CreateConnectionInput
fn clone(&self) -> CreateConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateConnectionInput
impl Debug for CreateConnectionInput
source§impl PartialEq for CreateConnectionInput
impl PartialEq for CreateConnectionInput
source§fn eq(&self, other: &CreateConnectionInput) -> bool
fn eq(&self, other: &CreateConnectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.