Struct aws_sdk_ec2::operation::modify_vpc_peering_connection_options::ModifyVpcPeeringConnectionOptionsOutput
source · #[non_exhaustive]pub struct ModifyVpcPeeringConnectionOptionsOutput {
pub accepter_peering_connection_options: Option<PeeringConnectionOptions>,
pub requester_peering_connection_options: Option<PeeringConnectionOptions>,
/* private fields */
}
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_peering_connection_options: Option<PeeringConnectionOptions>
Information about the VPC peering connection options for the accepter VPC.
requester_peering_connection_options: Option<PeeringConnectionOptions>
Information about the VPC peering connection options for the requester VPC.
Implementations§
source§impl ModifyVpcPeeringConnectionOptionsOutput
impl ModifyVpcPeeringConnectionOptionsOutput
sourcepub fn accepter_peering_connection_options(
&self
) -> Option<&PeeringConnectionOptions>
pub fn accepter_peering_connection_options( &self ) -> Option<&PeeringConnectionOptions>
Information about the VPC peering connection options for the accepter VPC.
sourcepub fn requester_peering_connection_options(
&self
) -> Option<&PeeringConnectionOptions>
pub fn requester_peering_connection_options( &self ) -> Option<&PeeringConnectionOptions>
Information about the VPC peering connection options for the requester VPC.
source§impl ModifyVpcPeeringConnectionOptionsOutput
impl ModifyVpcPeeringConnectionOptionsOutput
sourcepub fn builder() -> ModifyVpcPeeringConnectionOptionsOutputBuilder
pub fn builder() -> ModifyVpcPeeringConnectionOptionsOutputBuilder
Creates a new builder-style object to manufacture ModifyVpcPeeringConnectionOptionsOutput
.
Trait Implementations§
source§impl Clone for ModifyVpcPeeringConnectionOptionsOutput
impl Clone for ModifyVpcPeeringConnectionOptionsOutput
source§fn clone(&self) -> ModifyVpcPeeringConnectionOptionsOutput
fn clone(&self) -> ModifyVpcPeeringConnectionOptionsOutput
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<ModifyVpcPeeringConnectionOptionsOutput> for ModifyVpcPeeringConnectionOptionsOutput
impl PartialEq<ModifyVpcPeeringConnectionOptionsOutput> for ModifyVpcPeeringConnectionOptionsOutput
source§fn eq(&self, other: &ModifyVpcPeeringConnectionOptionsOutput) -> bool
fn eq(&self, other: &ModifyVpcPeeringConnectionOptionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ModifyVpcPeeringConnectionOptionsOutput
impl RequestId for ModifyVpcPeeringConnectionOptionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ModifyVpcPeeringConnectionOptionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ModifyVpcPeeringConnectionOptionsOutput
impl Send for ModifyVpcPeeringConnectionOptionsOutput
impl Sync for ModifyVpcPeeringConnectionOptionsOutput
impl Unpin for ModifyVpcPeeringConnectionOptionsOutput
impl UnwindSafe for ModifyVpcPeeringConnectionOptionsOutput
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