Class: Aws::Drs::Types::NetworkInterface

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

Overview

Network interface.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ipsArray<String>

Network interface IPs.

Returns:

  • (Array<String>)


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_primaryBoolean

Whether this is the primary network interface.

Returns:

  • (Boolean)


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_addressString

The MAC address of the network interface.

Returns:

  • (String)


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