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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/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 'gems/aws-sdk-ecs/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 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5317

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