Class: Aws::EC2::Types::CreateVpcPeeringConnectionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass CreateVpcPeeringConnectionRequest data as a hash:

{
  dry_run: false,
  peer_owner_id: "String",
  peer_vpc_id: "String",
  vpc_id: "String",
  peer_region: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

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`.

Returns:

  • (Boolean)


7258
7259
7260
7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ec2/types.rb', line 7258

class CreateVpcPeeringConnectionRequest < Struct.new(
  :dry_run,
  :peer_owner_id,
  :peer_vpc_id,
  :vpc_id,
  :peer_region)
  include Aws::Structure
end

#peer_owner_idString

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

Default: Your AWS account ID

Returns:

  • (String)


7258
7259
7260
7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ec2/types.rb', line 7258

class CreateVpcPeeringConnectionRequest < Struct.new(
  :dry_run,
  :peer_owner_id,
  :peer_vpc_id,
  :vpc_id,
  :peer_region)
  include Aws::Structure
end

#peer_regionString

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.

Returns:

  • (String)


7258
7259
7260
7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ec2/types.rb', line 7258

class CreateVpcPeeringConnectionRequest < Struct.new(
  :dry_run,
  :peer_owner_id,
  :peer_vpc_id,
  :vpc_id,
  :peer_region)
  include Aws::Structure
end

#peer_vpc_idString

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

Returns:

  • (String)


7258
7259
7260
7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ec2/types.rb', line 7258

class CreateVpcPeeringConnectionRequest < Struct.new(
  :dry_run,
  :peer_owner_id,
  :peer_vpc_id,
  :vpc_id,
  :peer_region)
  include Aws::Structure
end

#vpc_idString

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

Returns:

  • (String)


7258
7259
7260
7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ec2/types.rb', line 7258

class CreateVpcPeeringConnectionRequest < Struct.new(
  :dry_run,
  :peer_owner_id,
  :peer_vpc_id,
  :vpc_id,
  :peer_region)
  include Aws::Structure
end