#[non_exhaustive]pub struct ConnectPeerConfiguration {
pub core_network_address: Option<String>,
pub peer_address: Option<String>,
pub inside_cidr_blocks: Option<Vec<String>>,
pub protocol: Option<TunnelProtocol>,
pub bgp_configurations: Option<Vec<ConnectPeerBgpConfiguration>>,
}
Expand description
Describes a core network Connect peer configuration.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.core_network_address: Option<String>
The IP address of a core network.
peer_address: Option<String>
The IP address of the Connect peer.
inside_cidr_blocks: Option<Vec<String>>
The inside IP addresses used for a Connect peer configuration.
protocol: Option<TunnelProtocol>
The protocol used for a Connect peer configuration.
bgp_configurations: Option<Vec<ConnectPeerBgpConfiguration>>
The Connect peer BGP configurations.
Implementations
The IP address of a core network.
The IP address of the Connect peer.
The inside IP addresses used for a Connect peer configuration.
The protocol used for a Connect peer configuration.
The Connect peer BGP configurations.
Creates a new builder-style object to manufacture ConnectPeerConfiguration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConnectPeerConfiguration
impl Send for ConnectPeerConfiguration
impl Sync for ConnectPeerConfiguration
impl Unpin for ConnectPeerConfiguration
impl UnwindSafe for ConnectPeerConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more