Struct aws_sdk_networkmanager::operation::create_connect_attachment::CreateConnectAttachmentInput
source · #[non_exhaustive]pub struct CreateConnectAttachmentInput {
pub core_network_id: Option<String>,
pub edge_location: Option<String>,
pub transport_attachment_id: Option<String>,
pub options: Option<ConnectAttachmentOptions>,
pub tags: Option<Vec<Tag>>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.core_network_id: Option<String>
The ID of a core network where you want to create the attachment.
edge_location: Option<String>
The Region where the edge is located.
transport_attachment_id: Option<String>
The ID of the attachment between the two connections.
options: Option<ConnectAttachmentOptions>
Options for creating an attachment.
The list of key-value tags associated with the request.
client_token: Option<String>
The client token associated with the request.
Implementations§
source§impl CreateConnectAttachmentInput
impl CreateConnectAttachmentInput
sourcepub fn core_network_id(&self) -> Option<&str>
pub fn core_network_id(&self) -> Option<&str>
The ID of a core network where you want to create the attachment.
sourcepub fn edge_location(&self) -> Option<&str>
pub fn edge_location(&self) -> Option<&str>
The Region where the edge is located.
sourcepub fn transport_attachment_id(&self) -> Option<&str>
pub fn transport_attachment_id(&self) -> Option<&str>
The ID of the attachment between the two connections.
sourcepub fn options(&self) -> Option<&ConnectAttachmentOptions>
pub fn options(&self) -> Option<&ConnectAttachmentOptions>
Options for creating an attachment.
The list of key-value tags associated with the request.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The client token associated with the request.
source§impl CreateConnectAttachmentInput
impl CreateConnectAttachmentInput
sourcepub fn builder() -> CreateConnectAttachmentInputBuilder
pub fn builder() -> CreateConnectAttachmentInputBuilder
Creates a new builder-style object to manufacture CreateConnectAttachmentInput
.
Trait Implementations§
source§impl Clone for CreateConnectAttachmentInput
impl Clone for CreateConnectAttachmentInput
source§fn clone(&self) -> CreateConnectAttachmentInput
fn clone(&self) -> CreateConnectAttachmentInput
Returns a copy 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 CreateConnectAttachmentInput
impl Debug for CreateConnectAttachmentInput
source§impl PartialEq for CreateConnectAttachmentInput
impl PartialEq for CreateConnectAttachmentInput
source§fn eq(&self, other: &CreateConnectAttachmentInput) -> bool
fn eq(&self, other: &CreateConnectAttachmentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateConnectAttachmentInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateConnectAttachmentInput
impl Send for CreateConnectAttachmentInput
impl Sync for CreateConnectAttachmentInput
impl Unpin for CreateConnectAttachmentInput
impl UnwindSafe for CreateConnectAttachmentInput
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