Class: Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails data as a hash:
{
hostname: "NonEmptyString",
ip_address: "NonEmptyString",
}
A hostname and IP address mapping to append to the /etc/hosts file on the container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hostname ⇒ String
The hostname to use in the /etc/hosts entry.
-
#ip_address ⇒ String
The IP address to use in the /etc/hosts entry.
Instance Attribute Details
#hostname ⇒ String
The hostname to use in the /etc/hosts entry.
9035 9036 9037 9038 9039 9040 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9035 class AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails < Struct.new( :hostname, :ip_address) SENSITIVE = [] include Aws::Structure end |
#ip_address ⇒ String
The IP address to use in the /etc/hosts entry.
9035 9036 9037 9038 9039 9040 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9035 class AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails < Struct.new( :hostname, :ip_address) SENSITIVE = [] include Aws::Structure end |