#[non_exhaustive]pub struct AwsEc2VpcPeeringConnectionDetails {
pub accepter_vpc_info: Option<AwsEc2VpcPeeringConnectionVpcInfoDetails>,
pub expiration_time: Option<String>,
pub requester_vpc_info: Option<AwsEc2VpcPeeringConnectionVpcInfoDetails>,
pub status: Option<AwsEc2VpcPeeringConnectionStatusDetails>,
pub vpc_peering_connection_id: Option<String>,
}
Expand description
Provides information about a VPC peering connection between two VPCs: a requester VPC that you own and an accepter VPC with which to create the connection.
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.accepter_vpc_info: Option<AwsEc2VpcPeeringConnectionVpcInfoDetails>
Information about the accepter VPC.
expiration_time: Option<String>
The time at which an unaccepted VPC peering connection will expire.
requester_vpc_info: Option<AwsEc2VpcPeeringConnectionVpcInfoDetails>
Information about the requester VPC.
status: Option<AwsEc2VpcPeeringConnectionStatusDetails>
The status of the VPC peering connection.
vpc_peering_connection_id: Option<String>
The ID of the VPC peering connection.
Implementations§
source§impl AwsEc2VpcPeeringConnectionDetails
impl AwsEc2VpcPeeringConnectionDetails
sourcepub fn accepter_vpc_info(
&self
) -> Option<&AwsEc2VpcPeeringConnectionVpcInfoDetails>
pub fn accepter_vpc_info( &self ) -> Option<&AwsEc2VpcPeeringConnectionVpcInfoDetails>
Information about the accepter VPC.
sourcepub fn expiration_time(&self) -> Option<&str>
pub fn expiration_time(&self) -> Option<&str>
The time at which an unaccepted VPC peering connection will expire.
sourcepub fn requester_vpc_info(
&self
) -> Option<&AwsEc2VpcPeeringConnectionVpcInfoDetails>
pub fn requester_vpc_info( &self ) -> Option<&AwsEc2VpcPeeringConnectionVpcInfoDetails>
Information about the requester VPC.
sourcepub fn status(&self) -> Option<&AwsEc2VpcPeeringConnectionStatusDetails>
pub fn status(&self) -> Option<&AwsEc2VpcPeeringConnectionStatusDetails>
The status of the VPC peering connection.
sourcepub fn vpc_peering_connection_id(&self) -> Option<&str>
pub fn vpc_peering_connection_id(&self) -> Option<&str>
The ID of the VPC peering connection.
source§impl AwsEc2VpcPeeringConnectionDetails
impl AwsEc2VpcPeeringConnectionDetails
sourcepub fn builder() -> AwsEc2VpcPeeringConnectionDetailsBuilder
pub fn builder() -> AwsEc2VpcPeeringConnectionDetailsBuilder
Creates a new builder-style object to manufacture AwsEc2VpcPeeringConnectionDetails
.
Trait Implementations§
source§impl Clone for AwsEc2VpcPeeringConnectionDetails
impl Clone for AwsEc2VpcPeeringConnectionDetails
source§fn clone(&self) -> AwsEc2VpcPeeringConnectionDetails
fn clone(&self) -> AwsEc2VpcPeeringConnectionDetails
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 AwsEc2VpcPeeringConnectionDetails
impl PartialEq for AwsEc2VpcPeeringConnectionDetails
source§fn eq(&self, other: &AwsEc2VpcPeeringConnectionDetails) -> bool
fn eq(&self, other: &AwsEc2VpcPeeringConnectionDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEc2VpcPeeringConnectionDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsEc2VpcPeeringConnectionDetails
impl Send for AwsEc2VpcPeeringConnectionDetails
impl Sync for AwsEc2VpcPeeringConnectionDetails
impl Unpin for AwsEc2VpcPeeringConnectionDetails
impl UnwindSafe for AwsEc2VpcPeeringConnectionDetails
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.