Class: Aws::GuardDuty::Types::PrivateIpAddressDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::PrivateIpAddressDetails
- Includes:
- Structure
- Defined in:
- 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.
6880 6881 6882 6883 6884 6885 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6880 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.
6880 6881 6882 6883 6884 6885 |
# File 'lib/aws-sdk-guardduty/types.rb', line 6880 class PrivateIpAddressDetails < Struct.new( :private_dns_name, :private_ip_address) SENSITIVE = [:private_ip_address] include Aws::Structure end |