Class: Aws::StorageGateway::Types::NetworkInterface

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

Overview

Describes a gateway’s network interface.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ipv_4_addressString

The Internet Protocol version 4 (IPv4) address of the interface.

Returns:

  • (String)


5102
5103
5104
5105
5106
5107
5108
# File 'lib/aws-sdk-storagegateway/types.rb', line 5102

class NetworkInterface < Struct.new(
  :ipv_4_address,
  :mac_address,
  :ipv_6_address)
  SENSITIVE = []
  include Aws::Structure
end

#ipv_6_addressString

The Internet Protocol version 6 (IPv6) address of the interface. *Currently not supported*.

Returns:

  • (String)


5102
5103
5104
5105
5106
5107
5108
# File 'lib/aws-sdk-storagegateway/types.rb', line 5102

class NetworkInterface < Struct.new(
  :ipv_4_address,
  :mac_address,
  :ipv_6_address)
  SENSITIVE = []
  include Aws::Structure
end

#mac_addressString

The Media Access Control (MAC) address of the interface.

<note markdown=“1”> This is currently unsupported and will not be returned in output.

</note>

Returns:

  • (String)


5102
5103
5104
5105
5106
5107
5108
# File 'lib/aws-sdk-storagegateway/types.rb', line 5102

class NetworkInterface < Struct.new(
  :ipv_4_address,
  :mac_address,
  :ipv_6_address)
  SENSITIVE = []
  include Aws::Structure
end