Struct rusoto_ec2::CreateVpcPeeringConnectionRequest[][src]

pub struct CreateVpcPeeringConnectionRequest {
    pub dry_run: Option<bool>,
    pub peer_owner_id: Option<String>,
    pub peer_region: Option<String>,
    pub peer_vpc_id: Option<String>,
    pub vpc_id: Option<String>,
}

Contains the parameters for CreateVpcPeeringConnection.

Fields

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.

The AWS account ID of the owner of the accepter VPC.

Default: Your AWS account ID

The region code for the accepter VPC, if the accepter VPC is located in a region other than the region in which you make the request.

Default: The region in which you make the request.

The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.

The ID of the requester VPC. You must specify this parameter in the request.

Trait Implementations

impl Default for CreateVpcPeeringConnectionRequest
[src]

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

impl Debug for CreateVpcPeeringConnectionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateVpcPeeringConnectionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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