pub struct AssociateRouteTableRequest {
pub dry_run: Option<bool>,
pub gateway_id: Option<String>,
pub route_table_id: String,
pub subnet_id: Option<String>,
}Fields§
§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.
gateway_id: Option<String>The ID of the internet gateway or virtual private gateway.
route_table_id: StringThe ID of the route table.
subnet_id: Option<String>The ID of the subnet.
Trait Implementations§
Source§impl Clone for AssociateRouteTableRequest
impl Clone for AssociateRouteTableRequest
Source§fn clone(&self) -> AssociateRouteTableRequest
fn clone(&self) -> AssociateRouteTableRequest
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 AssociateRouteTableRequest
impl Debug for AssociateRouteTableRequest
Source§impl Default for AssociateRouteTableRequest
impl Default for AssociateRouteTableRequest
Source§fn default() -> AssociateRouteTableRequest
fn default() -> AssociateRouteTableRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AssociateRouteTableRequest
Auto Trait Implementations§
impl Freeze for AssociateRouteTableRequest
impl RefUnwindSafe for AssociateRouteTableRequest
impl Send for AssociateRouteTableRequest
impl Sync for AssociateRouteTableRequest
impl Unpin for AssociateRouteTableRequest
impl UnwindSafe for AssociateRouteTableRequest
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