Class: Aws::GuardDuty::Types::PrivateIpAddressDetails

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

Overview

Contains other private IP address information of the EC2 instance.

Constant Summary collapse

SENSITIVE =
[:private_ip_address]

Instance Attribute Summary collapse

Instance Attribute Details

#private_dns_nameString

The private DNS name of the EC2 instance.

Returns:

  • (String)


6446
6447
6448
6449
6450
6451
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6446

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

#private_ip_addressString

The private IP address of the EC2 instance.

Returns:

  • (String)


6446
6447
6448
6449
6450
6451
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6446

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