#[non_exhaustive]pub struct ConnectPeerConfiguration { /* private fields */ }
Expand description
Describes a core network Connect peer configuration.
Implementations§
source§impl ConnectPeerConfiguration
impl ConnectPeerConfiguration
sourcepub fn core_network_address(&self) -> Option<&str>
pub fn core_network_address(&self) -> Option<&str>
The IP address of a core network.
sourcepub fn peer_address(&self) -> Option<&str>
pub fn peer_address(&self) -> Option<&str>
The IP address of the Connect peer.
sourcepub fn inside_cidr_blocks(&self) -> Option<&[String]>
pub fn inside_cidr_blocks(&self) -> Option<&[String]>
The inside IP addresses used for a Connect peer configuration.
sourcepub fn protocol(&self) -> Option<&TunnelProtocol>
pub fn protocol(&self) -> Option<&TunnelProtocol>
The protocol used for a Connect peer configuration.
sourcepub fn bgp_configurations(&self) -> Option<&[ConnectPeerBgpConfiguration]>
pub fn bgp_configurations(&self) -> Option<&[ConnectPeerBgpConfiguration]>
The Connect peer BGP configurations.
source§impl ConnectPeerConfiguration
impl ConnectPeerConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConnectPeerConfiguration
.
Trait Implementations§
source§impl Clone for ConnectPeerConfiguration
impl Clone for ConnectPeerConfiguration
source§fn clone(&self) -> ConnectPeerConfiguration
fn clone(&self) -> ConnectPeerConfiguration
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 ConnectPeerConfiguration
impl Debug for ConnectPeerConfiguration
source§impl PartialEq<ConnectPeerConfiguration> for ConnectPeerConfiguration
impl PartialEq<ConnectPeerConfiguration> for ConnectPeerConfiguration
source§fn eq(&self, other: &ConnectPeerConfiguration) -> bool
fn eq(&self, other: &ConnectPeerConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.