pub struct RouteTableAssociationResult {
pub gateway_id: Output<Option<String>>,
pub route_table_id: Output<String>,
pub subnet_id: Output<Option<String>>,
}
Fields§
§gateway_id: Output<Option<String>>
The gateway ID to create an association. Conflicts with subnet_id
.
route_table_id: Output<String>
The ID of the routing table to associate with.
subnet_id: Output<Option<String>>
The subnet ID to create an association. Conflicts with gateway_id
.
Auto Trait Implementations§
impl Freeze for RouteTableAssociationResult
impl RefUnwindSafe for RouteTableAssociationResult
impl Send for RouteTableAssociationResult
impl Sync for RouteTableAssociationResult
impl Unpin for RouteTableAssociationResult
impl UnwindSafe for RouteTableAssociationResult
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