pub struct AttachInternetGatewayRequest {
pub dry_run: Option<bool>,
pub internet_gateway_id: String,
pub vpc_id: 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.
internet_gateway_id: StringThe ID of the internet gateway.
vpc_id: StringThe ID of the VPC.
Trait Implementations§
Source§impl Clone for AttachInternetGatewayRequest
impl Clone for AttachInternetGatewayRequest
Source§fn clone(&self) -> AttachInternetGatewayRequest
fn clone(&self) -> AttachInternetGatewayRequest
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 AttachInternetGatewayRequest
impl Debug for AttachInternetGatewayRequest
Source§impl Default for AttachInternetGatewayRequest
impl Default for AttachInternetGatewayRequest
Source§fn default() -> AttachInternetGatewayRequest
fn default() -> AttachInternetGatewayRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AttachInternetGatewayRequest
impl PartialEq for AttachInternetGatewayRequest
Source§fn eq(&self, other: &AttachInternetGatewayRequest) -> bool
fn eq(&self, other: &AttachInternetGatewayRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttachInternetGatewayRequest
Auto Trait Implementations§
impl Freeze for AttachInternetGatewayRequest
impl RefUnwindSafe for AttachInternetGatewayRequest
impl Send for AttachInternetGatewayRequest
impl Sync for AttachInternetGatewayRequest
impl Unpin for AttachInternetGatewayRequest
impl UnwindSafe for AttachInternetGatewayRequest
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