Class: Aws::GameLift::Types::DeleteVpcPeeringConnectionInput

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

Overview

Note:

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

{
  fleet_id: "FleetId", # required
  vpc_peering_connection_id: "NonZeroAndMaxString", # required
}

Represents the input for a request action.

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idString

Unique identifier for a fleet. This value must match the fleet ID referenced in the VPC peering connection record.

Returns:

  • (String)


1384
1385
1386
1387
1388
# File 'lib/aws-sdk-gamelift/types.rb', line 1384

class DeleteVpcPeeringConnectionInput < Struct.new(
  :fleet_id,
  :vpc_peering_connection_id)
  include Aws::Structure
end

#vpc_peering_connection_idString

Unique identifier for a VPC peering connection. This value is included in the VpcPeeringConnection object, which can be retrieved by calling DescribeVpcPeeringConnections.

Returns:

  • (String)


1384
1385
1386
1387
1388
# File 'lib/aws-sdk-gamelift/types.rb', line 1384

class DeleteVpcPeeringConnectionInput < Struct.new(
  :fleet_id,
  :vpc_peering_connection_id)
  include Aws::Structure
end