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