pub struct TransitGatewayRequestOptions {
pub amazon_side_asn: Option<i64>,
pub auto_accept_shared_attachments: Option<String>,
pub default_route_table_association: Option<String>,
pub default_route_table_propagation: Option<String>,
pub dns_support: Option<String>,
pub multicast_support: Option<String>,
pub vpn_ecmp_support: Option<String>,
}Expand description
Describes the options for a transit gateway.
Fields§
§amazon_side_asn: Option<i64>A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
Enable or disable automatic acceptance of attachment requests. The default is disable.
default_route_table_association: Option<String>Enable or disable automatic association with the default association route table. The default is enable.
default_route_table_propagation: Option<String>Enable or disable automatic propagation of routes to the default propagation route table. The default is enable.
dns_support: Option<String>Enable or disable DNS support.
multicast_support: Option<String>Indicates whether multicast is enabled on the transit gateway
vpn_ecmp_support: Option<String>Enable or disable Equal Cost Multipath Protocol support.
Trait Implementations§
Source§impl Clone for TransitGatewayRequestOptions
impl Clone for TransitGatewayRequestOptions
Source§fn clone(&self) -> TransitGatewayRequestOptions
fn clone(&self) -> TransitGatewayRequestOptions
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 Debug for TransitGatewayRequestOptions
impl Debug for TransitGatewayRequestOptions
Source§impl Default for TransitGatewayRequestOptions
impl Default for TransitGatewayRequestOptions
Source§fn default() -> TransitGatewayRequestOptions
fn default() -> TransitGatewayRequestOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransitGatewayRequestOptions
impl PartialEq for TransitGatewayRequestOptions
Source§fn eq(&self, other: &TransitGatewayRequestOptions) -> bool
fn eq(&self, other: &TransitGatewayRequestOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransitGatewayRequestOptions
Auto Trait Implementations§
impl Freeze for TransitGatewayRequestOptions
impl RefUnwindSafe for TransitGatewayRequestOptions
impl Send for TransitGatewayRequestOptions
impl Sync for TransitGatewayRequestOptions
impl Unpin for TransitGatewayRequestOptions
impl UnwindSafe for TransitGatewayRequestOptions
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