Class: Aws::ECS::Types::NetworkInterface
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::NetworkInterface
- Defined in:
- gems/aws-sdk-ecs/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.
7405 7406 7407 7408 7409 7410 7411 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7405 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.
7405 7406 7407 7408 7409 7410 7411 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7405 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.
7405 7406 7407 7408 7409 7410 7411 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7405 class NetworkInterface < Struct.new( :attachment_id, :private_ipv_4_address, :ipv6_address) SENSITIVE = [] include Aws::Structure end |