pub struct CreateTransitGatewayConnectPeerRequest {
pub bgp_options: Option<TransitGatewayConnectRequestBgpOptions>,
pub dry_run: Option<bool>,
pub inside_cidr_blocks: Vec<String>,
pub peer_address: String,
pub tag_specifications: Option<Vec<TagSpecification>>,
pub transit_gateway_address: Option<String>,
pub transit_gateway_attachment_id: String,
}
Fields§
§bgp_options: Option<TransitGatewayConnectRequestBgpOptions>
The BGP options for the Connect peer.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
inside_cidr_blocks: Vec<String>
The range of inside IP addresses that are used for BGP peering. You must specify a size /29 IPv4 CIDR block from the 169.254.0.0/16
range. The first address from the range must be configured on the appliance as the BGP IP address. You can also optionally specify a size /125 IPv6 CIDR block from the fd00::/8
range.
peer_address: String
The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.
tag_specifications: Option<Vec<TagSpecification>>
The tags to apply to the Connect peer.
transit_gateway_address: Option<String>
The peer IP address (GRE outer IP address) on the transit gateway side of the Connect peer, which must be specified from a transit gateway CIDR block. If not specified, Amazon automatically assigns the first available IP address from the transit gateway CIDR block.
transit_gateway_attachment_id: String
The ID of the Connect attachment.
Trait Implementations§
Source§impl Clone for CreateTransitGatewayConnectPeerRequest
impl Clone for CreateTransitGatewayConnectPeerRequest
Source§fn clone(&self) -> CreateTransitGatewayConnectPeerRequest
fn clone(&self) -> CreateTransitGatewayConnectPeerRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CreateTransitGatewayConnectPeerRequest
impl Default for CreateTransitGatewayConnectPeerRequest
Source§fn default() -> CreateTransitGatewayConnectPeerRequest
fn default() -> CreateTransitGatewayConnectPeerRequest
Source§impl PartialEq for CreateTransitGatewayConnectPeerRequest
impl PartialEq for CreateTransitGatewayConnectPeerRequest
Source§fn eq(&self, other: &CreateTransitGatewayConnectPeerRequest) -> bool
fn eq(&self, other: &CreateTransitGatewayConnectPeerRequest) -> bool
self
and other
values to be equal, and is used by ==
.