Class: Aws::SecurityHub::Types::AwsEc2NetworkInterfacePrivateIpAddressDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEc2NetworkInterfacePrivateIpAddressDetail
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsEc2NetworkInterfacePrivateIpAddressDetail data as a hash:
{
private_ip_address: "NonEmptyString",
private_dns_name: "NonEmptyString",
}
Provides information about a private IPv4 address that is with the network interface.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#private_dns_name ⇒ String
The private DNS name for the IP address.
-
#private_ip_address ⇒ String
The IP address.
Instance Attribute Details
#private_dns_name ⇒ String
The private DNS name for the IP address.
5945 5946 5947 5948 5949 5950 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5945 class AwsEc2NetworkInterfacePrivateIpAddressDetail < Struct.new( :private_ip_address, :private_dns_name) SENSITIVE = [] include Aws::Structure end |
#private_ip_address ⇒ String
The IP address.
5945 5946 5947 5948 5949 5950 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5945 class AwsEc2NetworkInterfacePrivateIpAddressDetail < Struct.new( :private_ip_address, :private_dns_name) SENSITIVE = [] include Aws::Structure end |