Struct rusoto_gamelift::CreateVpcPeeringConnectionInput[][src]

pub struct CreateVpcPeeringConnectionInput {
    pub fleet_id: String,
    pub peer_vpc_aws_account_id: String,
    pub peer_vpc_id: String,
}

Represents the input for a request action.

Fields

Unique identifier for a fleet. This tells Amazon GameLift which GameLift VPC to peer with.

Unique identifier for the AWS account with the VPC that you want to peer your Amazon GameLift fleet with. You can find your Account ID in the AWS Management Console under account settings.

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.

Trait Implementations

impl Default for CreateVpcPeeringConnectionInput
[src]

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

impl Debug for CreateVpcPeeringConnectionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateVpcPeeringConnectionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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