File Coverage

blib/lib/Paws/EC2/DescribeNetworkInterfaceAttributeResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EC2::DescribeNetworkInterfaceAttributeResult;
3 1     1   523 use Moose;
  1         2  
  1         7  
4             has Attachment => (is => 'ro', isa => 'Paws::EC2::NetworkInterfaceAttachment', request_name => 'attachment', traits => ['NameInRequest',]);
5             has Description => (is => 'ro', isa => 'Paws::EC2::AttributeValue', request_name => 'description', traits => ['NameInRequest',]);
6             has Groups => (is => 'ro', isa => 'ArrayRef[Paws::EC2::GroupIdentifier]', request_name => 'groupSet', traits => ['NameInRequest',]);
7             has NetworkInterfaceId => (is => 'ro', isa => 'Str', request_name => 'networkInterfaceId', traits => ['NameInRequest',]);
8             has SourceDestCheck => (is => 'ro', isa => 'Paws::EC2::AttributeBooleanValue', request_name => 'sourceDestCheck', traits => ['NameInRequest',]);
9              
10             has _request_id => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::EC2::DescribeNetworkInterfaceAttributeResult
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 Attachment => L<Paws::EC2::NetworkInterfaceAttachment>
23              
24             The attachment (if any) of the network interface.
25              
26              
27             =head2 Description => L<Paws::EC2::AttributeValue>
28              
29             The description of the network interface.
30              
31              
32             =head2 Groups => ArrayRef[L<Paws::EC2::GroupIdentifier>]
33              
34             The security groups associated with the network interface.
35              
36              
37             =head2 NetworkInterfaceId => Str
38              
39             The ID of the network interface.
40              
41              
42             =head2 SourceDestCheck => L<Paws::EC2::AttributeBooleanValue>
43              
44             Indicates whether source/destination checking is enabled.
45              
46              
47             =head2 _request_id => Str
48              
49              
50             =cut
51