Class: Aws::Batch::Types::NetworkInterface

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

Overview

An object that represents the elastic network interface for a multi-node parallel job node.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_idString

The attachment ID for the network interface.

Returns:

  • (String)


5934
5935
5936
5937
5938
5939
5940
# File 'lib/aws-sdk-batch/types.rb', line 5934

class NetworkInterface < Struct.new(
  :attachment_id,
  :ipv6_address,
  :private_ipv_4_address)
  SENSITIVE = []
  include Aws::Structure
end

#ipv6_addressString

The private IPv6 address for the network interface.

Returns:

  • (String)


5934
5935
5936
5937
5938
5939
5940
# File 'lib/aws-sdk-batch/types.rb', line 5934

class NetworkInterface < Struct.new(
  :attachment_id,
  :ipv6_address,
  :private_ipv_4_address)
  SENSITIVE = []
  include Aws::Structure
end

#private_ipv_4_addressString

The private IPv4 address for the network interface.

Returns:

  • (String)


5934
5935
5936
5937
5938
5939
5940
# File 'lib/aws-sdk-batch/types.rb', line 5934

class NetworkInterface < Struct.new(
  :attachment_id,
  :ipv6_address,
  :private_ipv_4_address)
  SENSITIVE = []
  include Aws::Structure
end