|
NAMEPaws::Inspector::NetworkInterface USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Inspector::NetworkInterface object: $service_obj->Method(Att1 => { Ipv6Addresses => $value, ..., VpcId => $value });
Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Inspector::NetworkInterface object: $result = $service_obj->Method(...); $result->Att1->Ipv6Addresses DESCRIPTIONContains information about the network interfaces interacting with an EC2 instance. This data type is used as one of the elements of the AssetAttributes data type. ATTRIBUTESIpv6Addresses => ArrayRef[Str|Undef]The IP addresses associated with the network interface. NetworkInterfaceId => StrThe ID of the network interface. PrivateDnsName => StrThe name of a private DNS associated with the network interface. PrivateIpAddress => StrThe private IP address associated with the network interface. PrivateIpAddresses => ArrayRef[Paws::Inspector::PrivateIp]A list of the private IP addresses associated with the network interface. Includes the privateDnsName and privateIpAddress. PublicDnsName => StrThe name of a public DNS associated with the network interface. PublicIp => StrThe public IP address from which the network interface is reachable. SecurityGroups => ArrayRef[Paws::Inspector::SecurityGroup]A list of the security groups associated with the network interface. Includes the groupId and groupName. SubnetId => StrThe ID of a subnet associated with the network interface. VpcId => StrThe ID of a VPC associated with the network interface. SEE ALSOThis class forms part of Paws, describing an object used in Paws::Inspector BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|