Class: Aws::ECS::Types::NetworkInterface

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb

Overview

An object representing the elastic network interface for tasks that use the awsvpc network mode.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_idString

The attachment ID for the network interface.

Returns:

  • (String)


6952
6953
6954
6955
6956
6957
6958
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6952

class NetworkInterface < Struct.new(
  :attachment_id,
  :private_ipv_4_address,
  :ipv6_address)
  SENSITIVE = []
  include Aws::Structure
end

#ipv6_addressString

The private IPv6 address for the network interface.

Returns:

  • (String)


6952
6953
6954
6955
6956
6957
6958
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6952

class NetworkInterface < Struct.new(
  :attachment_id,
  :private_ipv_4_address,
  :ipv6_address)
  SENSITIVE = []
  include Aws::Structure
end

#private_ipv_4_addressString

The private IPv4 address for the network interface.

Returns:

  • (String)


6952
6953
6954
6955
6956
6957
6958
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6952

class NetworkInterface < Struct.new(
  :attachment_id,
  :private_ipv_4_address,
  :ipv6_address)
  SENSITIVE = []
  include Aws::Structure
end