Class: Aws::Inspector::Types::PrivateIp

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb

Overview

Contains information about a private IP address associated with a network interface. This data type is used as a response element in the DescribeFindings action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#private_dns_nameString

The DNS name of the private IP address.

Returns:

  • (String)


2340
2341
2342
2343
2344
2345
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2340

class PrivateIp < Struct.new(
  :private_dns_name,
  :private_ip_address)
  SENSITIVE = []
  include Aws::Structure
end

#private_ip_addressString

The full IP address of the network inteface.

Returns:

  • (String)


2340
2341
2342
2343
2344
2345
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2340

class PrivateIp < Struct.new(
  :private_dns_name,
  :private_ip_address)
  SENSITIVE = []
  include Aws::Structure
end