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

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

Overview

An object representing the Elastic Network Interface for tasks that use the ‘awsvpc` network mode.

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_idString

The attachment ID for the network interface.

Returns:

  • (String)


3493
3494
3495
3496
3497
3498
# File 'lib/aws-sdk-ecs/types.rb', line 3493

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

#ipv6_addressString

The private IPv6 address for the network interface.

Returns:

  • (String)


3493
3494
3495
3496
3497
3498
# File 'lib/aws-sdk-ecs/types.rb', line 3493

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

#private_ipv_4_addressString

The private IPv4 address for the network interface.

Returns:

  • (String)


3493
3494
3495
3496
3497
3498
# File 'lib/aws-sdk-ecs/types.rb', line 3493

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