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

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

Overview

Note:

When making an API call, you may pass HostEntry data as a hash:

{
  hostname: "String", # required
  ip_address: "String", # required
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#hostnameString

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

Returns:

  • (String)


2944
2945
2946
2947
2948
# File 'lib/aws-sdk-ecs/types.rb', line 2944

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

#ip_addressString

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

Returns:

  • (String)


2944
2945
2946
2947
2948
# File 'lib/aws-sdk-ecs/types.rb', line 2944

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