Class: Aws::ECS::Types::HostEntry

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

Overview

Hostnames and IP address entries that are added to the ‘/etc/hosts` file of a container via the `extraHosts` parameter of its ContainerDefinition.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hostnameString

The hostname to use in the ‘/etc/hosts` entry.

Returns:

  • (String)


5317
5318
5319
5320
5321
5322
# File 'lib/aws-sdk-ecs/types.rb', line 5317

class HostEntry < Struct.new(
  :hostname,
  :ip_address)
  SENSITIVE = []
  include Aws::Structure
end

#ip_addressString

The IP address to use in the ‘/etc/hosts` entry.

Returns:

  • (String)


5317
5318
5319
5320
5321
5322
# File 'lib/aws-sdk-ecs/types.rb', line 5317

class HostEntry < Struct.new(
  :hostname,
  :ip_address)
  SENSITIVE = []
  include Aws::Structure
end