Struct aws_sdk_directconnect::operation::allocate_private_virtual_interface::AllocatePrivateVirtualInterfaceInput
source · #[non_exhaustive]pub struct AllocatePrivateVirtualInterfaceInput {
pub connection_id: Option<String>,
pub owner_account: Option<String>,
pub new_private_virtual_interface_allocation: Option<NewPrivateVirtualInterfaceAllocation>,
}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.connection_id: Option<String>The ID of the connection on which the private virtual interface is provisioned.
owner_account: Option<String>The ID of the Amazon Web Services account that owns the virtual private interface.
new_private_virtual_interface_allocation: Option<NewPrivateVirtualInterfaceAllocation>Information about the private virtual interface.
Implementations§
source§impl AllocatePrivateVirtualInterfaceInput
impl AllocatePrivateVirtualInterfaceInput
sourcepub fn connection_id(&self) -> Option<&str>
pub fn connection_id(&self) -> Option<&str>
The ID of the connection on which the private virtual interface is provisioned.
sourcepub fn owner_account(&self) -> Option<&str>
pub fn owner_account(&self) -> Option<&str>
The ID of the Amazon Web Services account that owns the virtual private interface.
sourcepub fn new_private_virtual_interface_allocation(
&self
) -> Option<&NewPrivateVirtualInterfaceAllocation>
pub fn new_private_virtual_interface_allocation( &self ) -> Option<&NewPrivateVirtualInterfaceAllocation>
Information about the private virtual interface.
source§impl AllocatePrivateVirtualInterfaceInput
impl AllocatePrivateVirtualInterfaceInput
sourcepub fn builder() -> AllocatePrivateVirtualInterfaceInputBuilder
pub fn builder() -> AllocatePrivateVirtualInterfaceInputBuilder
Creates a new builder-style object to manufacture AllocatePrivateVirtualInterfaceInput.
Trait Implementations§
source§impl Clone for AllocatePrivateVirtualInterfaceInput
impl Clone for AllocatePrivateVirtualInterfaceInput
source§fn clone(&self) -> AllocatePrivateVirtualInterfaceInput
fn clone(&self) -> AllocatePrivateVirtualInterfaceInput
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 PartialEq for AllocatePrivateVirtualInterfaceInput
impl PartialEq for AllocatePrivateVirtualInterfaceInput
source§fn eq(&self, other: &AllocatePrivateVirtualInterfaceInput) -> bool
fn eq(&self, other: &AllocatePrivateVirtualInterfaceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AllocatePrivateVirtualInterfaceInput
Auto Trait Implementations§
impl RefUnwindSafe for AllocatePrivateVirtualInterfaceInput
impl Send for AllocatePrivateVirtualInterfaceInput
impl Sync for AllocatePrivateVirtualInterfaceInput
impl Unpin for AllocatePrivateVirtualInterfaceInput
impl UnwindSafe for AllocatePrivateVirtualInterfaceInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.