Class: Aws::ECS::Types::NetworkInterface
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::NetworkInterface
- 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attachment_id ⇒ String
The attachment ID for the network interface.
-
#ipv6_address ⇒ String
The private IPv6 address for the network interface.
-
#private_ipv_4_address ⇒ String
The private IPv4 address for the network interface.
Instance Attribute Details
#attachment_id ⇒ String
The attachment ID for the network interface.
7360 7361 7362 7363 7364 7365 7366 |
# File 'lib/aws-sdk-ecs/types.rb', line 7360 class NetworkInterface < Struct.new( :attachment_id, :private_ipv_4_address, :ipv6_address) SENSITIVE = [] include Aws::Structure end |
#ipv6_address ⇒ String
The private IPv6 address for the network interface.
7360 7361 7362 7363 7364 7365 7366 |
# File 'lib/aws-sdk-ecs/types.rb', line 7360 class NetworkInterface < Struct.new( :attachment_id, :private_ipv_4_address, :ipv6_address) SENSITIVE = [] include Aws::Structure end |
#private_ipv_4_address ⇒ String
The private IPv4 address for the network interface.
7360 7361 7362 7363 7364 7365 7366 |
# File 'lib/aws-sdk-ecs/types.rb', line 7360 class NetworkInterface < Struct.new( :attachment_id, :private_ipv_4_address, :ipv6_address) SENSITIVE = [] include Aws::Structure end |