#[non_exhaustive]pub struct UpdateConnectionInput {
pub global_network_id: Option<String>,
pub connection_id: Option<String>,
pub link_id: Option<String>,
pub connected_link_id: Option<String>,
pub description: Option<String>,
}
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.
connection_id: Option<String>
The ID of the connection.
link_id: Option<String>
The ID of the link for the first device in the connection.
connected_link_id: Option<String>
The ID of the link for the second device in the connection.
description: Option<String>
A description of the connection.
Length Constraints: Maximum length of 256 characters.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateConnection, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateConnection, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateConnection
>
Creates a new builder-style object to manufacture UpdateConnectionInput
The ID of the global network.
The ID of the connection.
The ID of the link for the first device in the connection.
The ID of the link for the second device in the connection.
A description of the connection.
Length Constraints: Maximum length of 256 characters.
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 UpdateConnectionInput
impl Send for UpdateConnectionInput
impl Sync for UpdateConnectionInput
impl Unpin for UpdateConnectionInput
impl UnwindSafe for UpdateConnectionInput
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