#[non_exhaustive]pub struct CreateConnectPeerInput {
pub connect_attachment_id: Option<String>,
pub core_network_address: Option<String>,
pub peer_address: Option<String>,
pub bgp_options: Option<BgpOptions>,
pub inside_cidr_blocks: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
pub client_token: Option<String>,
}
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.connect_attachment_id: Option<String>
The ID of the connection attachment.
core_network_address: Option<String>
A Connect peer core network address.
peer_address: Option<String>
The Connect peer address.
bgp_options: Option<BgpOptions>
The Connect peer BGP options.
inside_cidr_blocks: Option<Vec<String>>
The inside IP addresses used for BGP peering.
The tags associated with the peer request.
client_token: Option<String>
The client token associated with the request.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateConnectPeer, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateConnectPeer, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateConnectPeer
>
Creates a new builder-style object to manufacture CreateConnectPeerInput
The ID of the connection attachment.
A Connect peer core network address.
The Connect peer address.
The Connect peer BGP options.
The inside IP addresses used for BGP peering.
The tags associated with the peer request.
The client token associated with the request.
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 CreateConnectPeerInput
impl Send for CreateConnectPeerInput
impl Sync for CreateConnectPeerInput
impl Unpin for CreateConnectPeerInput
impl UnwindSafe for CreateConnectPeerInput
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