pub struct PeeringConnectionOptionsRequest {
pub allow_dns_resolution_from_remote_vpc: Option<bool>,
pub allow_egress_from_local_classic_link_to_remote_vpc: Option<bool>,
pub allow_egress_from_local_vpc_to_remote_classic_link: Option<bool>,
}Expand description
The VPC peering connection options.
Fields§
§allow_dns_resolution_from_remote_vpc: Option<bool>If true, enables a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.
allow_egress_from_local_classic_link_to_remote_vpc: Option<bool>If true, enables outbound communication from an EC2-Classic instance that's linked to a local VPC using ClassicLink to instances in a peer VPC.
allow_egress_from_local_vpc_to_remote_classic_link: Option<bool>If true, enables outbound communication from instances in a local VPC to an EC2-Classic instance that's linked to a peer VPC using ClassicLink.
Trait Implementations§
Source§impl Clone for PeeringConnectionOptionsRequest
impl Clone for PeeringConnectionOptionsRequest
Source§fn clone(&self) -> PeeringConnectionOptionsRequest
fn clone(&self) -> PeeringConnectionOptionsRequest
Returns a duplicate 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 Default for PeeringConnectionOptionsRequest
impl Default for PeeringConnectionOptionsRequest
Source§fn default() -> PeeringConnectionOptionsRequest
fn default() -> PeeringConnectionOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PeeringConnectionOptionsRequest
impl PartialEq for PeeringConnectionOptionsRequest
Source§fn eq(&self, other: &PeeringConnectionOptionsRequest) -> bool
fn eq(&self, other: &PeeringConnectionOptionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PeeringConnectionOptionsRequest
Auto Trait Implementations§
impl Freeze for PeeringConnectionOptionsRequest
impl RefUnwindSafe for PeeringConnectionOptionsRequest
impl Send for PeeringConnectionOptionsRequest
impl Sync for PeeringConnectionOptionsRequest
impl Unpin for PeeringConnectionOptionsRequest
impl UnwindSafe for PeeringConnectionOptionsRequest
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