#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConnection, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConnection, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateConnection
>
Creates a new builder-style object to manufacture CreateConnectionInput
The ID of the global network.
The ID of the second device in the connection.
The ID of the link for the second device.
A description of the connection.
Length Constraints: Maximum length of 256 characters.
The tags to apply to the resource during creation.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateConnectionInput
impl Send for CreateConnectionInput
impl Sync for CreateConnectionInput
impl Unpin for CreateConnectionInput
impl UnwindSafe for CreateConnectionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more