pub struct CreateEgressOnlyInternetGatewayRequest {
pub client_token: Option<String>,
pub dry_run: Option<bool>,
pub tag_specifications: Option<Vec<TagSpecification>>,
pub vpc_id: String,
}Fields§
§client_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
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 egress-only internet gateway.
vpc_id: StringThe ID of the VPC for which to create the egress-only internet gateway.
Trait Implementations§
Source§impl Clone for CreateEgressOnlyInternetGatewayRequest
impl Clone for CreateEgressOnlyInternetGatewayRequest
Source§fn clone(&self) -> CreateEgressOnlyInternetGatewayRequest
fn clone(&self) -> CreateEgressOnlyInternetGatewayRequest
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 Default for CreateEgressOnlyInternetGatewayRequest
impl Default for CreateEgressOnlyInternetGatewayRequest
Source§fn default() -> CreateEgressOnlyInternetGatewayRequest
fn default() -> CreateEgressOnlyInternetGatewayRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateEgressOnlyInternetGatewayRequest
impl PartialEq for CreateEgressOnlyInternetGatewayRequest
Source§fn eq(&self, other: &CreateEgressOnlyInternetGatewayRequest) -> bool
fn eq(&self, other: &CreateEgressOnlyInternetGatewayRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateEgressOnlyInternetGatewayRequest
Auto Trait Implementations§
impl Freeze for CreateEgressOnlyInternetGatewayRequest
impl RefUnwindSafe for CreateEgressOnlyInternetGatewayRequest
impl Send for CreateEgressOnlyInternetGatewayRequest
impl Sync for CreateEgressOnlyInternetGatewayRequest
impl Unpin for CreateEgressOnlyInternetGatewayRequest
impl UnwindSafe for CreateEgressOnlyInternetGatewayRequest
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