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)


6135
6136
6137
6138
6139
6140
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6135

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)


6135
6136
6137
6138
6139
6140
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6135

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