Class: Aws::Drs::Types::NetworkInterface
- Inherits:
-
Struct
- Object
- Struct
- Aws::Drs::Types::NetworkInterface
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-drs/types.rb
Overview
Network interface.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ips ⇒ Array<String>
Network interface IPs.
-
#is_primary ⇒ Boolean
Whether this is the primary network interface.
-
#mac_address ⇒ String
The MAC address of the network interface.
Instance Attribute Details
#ips ⇒ Array<String>
Network interface IPs.
2005 2006 2007 2008 2009 2010 2011 |
# File 'lib/aws-sdk-drs/types.rb', line 2005 class NetworkInterface < Struct.new( :mac_address, :ips, :is_primary) SENSITIVE = [] include Aws::Structure end |
#is_primary ⇒ Boolean
Whether this is the primary network interface.
2005 2006 2007 2008 2009 2010 2011 |
# File 'lib/aws-sdk-drs/types.rb', line 2005 class NetworkInterface < Struct.new( :mac_address, :ips, :is_primary) SENSITIVE = [] include Aws::Structure end |
#mac_address ⇒ String
The MAC address of the network interface.
2005 2006 2007 2008 2009 2010 2011 |
# File 'lib/aws-sdk-drs/types.rb', line 2005 class NetworkInterface < Struct.new( :mac_address, :ips, :is_primary) SENSITIVE = [] include Aws::Structure end |