Class: Aws::StorageGateway::Types::NetworkInterface
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::NetworkInterface
- 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
-
#ipv_4_address ⇒ String
The Internet Protocol version 4 (IPv4) address of the interface.
-
#ipv_6_address ⇒ String
The Internet Protocol version 6 (IPv6) address of the interface.
-
#mac_address ⇒ String
The Media Access Control (MAC) address of the interface.
Instance Attribute Details
#ipv_4_address ⇒ String
The Internet Protocol version 4 (IPv4) address of the interface.
5047 5048 5049 5050 5051 5052 5053 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 5047 class NetworkInterface < Struct.new( :ipv_4_address, :mac_address, :ipv_6_address) SENSITIVE = [] include Aws::Structure end |
#ipv_6_address ⇒ String
The Internet Protocol version 6 (IPv6) address of the interface. *Currently not supported*.
5047 5048 5049 5050 5051 5052 5053 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 5047 class NetworkInterface < Struct.new( :ipv_4_address, :mac_address, :ipv_6_address) SENSITIVE = [] include Aws::Structure end |
#mac_address ⇒ String
The Media Access Control (MAC) address of the interface.
<note markdown=“1”> This is currently unsupported and will not be returned in output.
</note>
5047 5048 5049 5050 5051 5052 5053 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 5047 class NetworkInterface < Struct.new( :ipv_4_address, :mac_address, :ipv_6_address) SENSITIVE = [] include Aws::Structure end |