Class: Aws::GuardDuty::Types::PrivateIpAddressDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::PrivateIpAddressDetails
- 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
-
#private_dns_name ⇒ String
The private DNS name of the EC2 instance.
-
#private_ip_address ⇒ String
The private IP address of the EC2 instance.
Instance Attribute Details
#private_dns_name ⇒ String
The private DNS name of the EC2 instance.
6615 6616 6617 6618 6619 6620 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6615 class PrivateIpAddressDetails < Struct.new( :private_dns_name, :private_ip_address) SENSITIVE = [:private_ip_address] include Aws::Structure end |
#private_ip_address ⇒ String
The private IP address of the EC2 instance.
6615 6616 6617 6618 6619 6620 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6615 class PrivateIpAddressDetails < Struct.new( :private_dns_name, :private_ip_address) SENSITIVE = [:private_ip_address] include Aws::Structure end |