Struct rusoto_gamelift::VpcPeeringConnection[][src]

pub struct VpcPeeringConnection {
    pub fleet_id: Option<String>,
    pub game_lift_vpc_id: Option<String>,
    pub ip_v4_cidr_block: Option<String>,
    pub peer_vpc_id: Option<String>,
    pub status: Option<VpcPeeringConnectionStatus>,
    pub vpc_peering_connection_id: Option<String>,
}

Represents a peering connection between a VPC on one of your AWS accounts and the VPC for your Amazon GameLift fleets. This record may be for an active peering connection or a pending connection that has not yet been established.

VPC peering connection operations include:

Fields

Unique identifier for a fleet. This ID determines the ID of the Amazon GameLift VPC for your fleet.

Unique identifier for the VPC that contains the Amazon GameLift fleet for this connection. This VPC is managed by Amazon GameLift and does not appear in your AWS account.

CIDR block of IPv4 addresses assigned to the VPC peering connection for the GameLift VPC. The peered VPC also has an IPv4 CIDR block associated with it; these blocks cannot overlap or the peering connection cannot be created.

Unique identifier for a VPC with resources to be accessed by your Amazon GameLift fleet. The VPC must be in the same region where your fleet is deployed. To get VPC information, including IDs, use the Virtual Private Cloud service tools, including the VPC Dashboard in the AWS Management Console.

Object that contains status information about the connection. Status indicates if a connection is pending, successful, or failed.

Unique identifier that is automatically assigned to the connection record. This ID is referenced in VPC peering connection events, and is used when deleting a connection with DeleteVpcPeeringConnection.

Trait Implementations

impl Default for VpcPeeringConnection
[src]

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

impl Debug for VpcPeeringConnection
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcPeeringConnection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VpcPeeringConnection
[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