Struct rusoto_ec2::CreateNatGatewayResult[][src]

pub struct CreateNatGatewayResult {
    pub client_token: Option<String>,
    pub nat_gateway: Option<NatGateway>,
}

Contains the output of CreateNatGateway.

Fields

Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.

Information about the NAT gateway.

Trait Implementations

impl Default for CreateNatGatewayResult
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateNatGatewayResult
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateNatGatewayResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateNatGatewayResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations