Class: Aws::EC2::Types::NatGatewayAddress

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

Overview

Describes the IP addresses and network interface associated with a NAT gateway.

Instance Attribute Summary collapse

Instance Attribute Details

#allocation_idString

The allocation ID of the Elastic IP address that’s associated with the NAT gateway.

Returns:

  • (String)


27238
27239
27240
27241
27242
27243
27244
# File 'lib/aws-sdk-ec2/types.rb', line 27238

class NatGatewayAddress < Struct.new(
  :allocation_id,
  :network_interface_id,
  :private_ip,
  :public_ip)
  include Aws::Structure
end

#network_interface_idString

The ID of the network interface associated with the NAT gateway.

Returns:

  • (String)


27238
27239
27240
27241
27242
27243
27244
# File 'lib/aws-sdk-ec2/types.rb', line 27238

class NatGatewayAddress < Struct.new(
  :allocation_id,
  :network_interface_id,
  :private_ip,
  :public_ip)
  include Aws::Structure
end

#private_ipString

The private IP address associated with the Elastic IP address.

Returns:

  • (String)


27238
27239
27240
27241
27242
27243
27244
# File 'lib/aws-sdk-ec2/types.rb', line 27238

class NatGatewayAddress < Struct.new(
  :allocation_id,
  :network_interface_id,
  :private_ip,
  :public_ip)
  include Aws::Structure
end

#public_ipString

The Elastic IP address associated with the NAT gateway.

Returns:

  • (String)


27238
27239
27240
27241
27242
27243
27244
# File 'lib/aws-sdk-ec2/types.rb', line 27238

class NatGatewayAddress < Struct.new(
  :allocation_id,
  :network_interface_id,
  :private_ip,
  :public_ip)
  include Aws::Structure
end