File Coverage

blib/lib/Paws/EC2/CreateNetworkAclEntry.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EC2::CreateNetworkAclEntry;
3 1     1   517 use Moose;
  1         3  
  1         9  
4             has CidrBlock => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cidrBlock' );
5             has DryRun => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'dryRun' );
6             has Egress => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'egress' , required => 1);
7             has IcmpTypeCode => (is => 'ro', isa => 'Paws::EC2::IcmpTypeCode', traits => ['NameInRequest'], request_name => 'Icmp' );
8             has Ipv6CidrBlock => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'ipv6CidrBlock' );
9             has NetworkAclId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'networkAclId' , required => 1);
10             has PortRange => (is => 'ro', isa => 'Paws::EC2::PortRange', traits => ['NameInRequest'], request_name => 'portRange' );
11             has Protocol => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'protocol' , required => 1);
12             has RuleAction => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'ruleAction' , required => 1);
13             has RuleNumber => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'ruleNumber' , required => 1);
14              
15 1     1   6958 use MooseX::ClassAttribute;
  1         3  
  1         12  
16              
17             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateNetworkAclEntry');
18             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response');
19             class_has _result_key => (isa => 'Str', is => 'ro');
20             1;
21              
22             ### main pod documentation begin ###
23              
24             =head1 NAME
25              
26             Paws::EC2::CreateNetworkAclEntry - Arguments for method CreateNetworkAclEntry on Paws::EC2
27              
28             =head1 DESCRIPTION
29              
30             This class represents the parameters used for calling the method CreateNetworkAclEntry on the
31             Amazon Elastic Compute Cloud service. Use the attributes of this class
32             as arguments to method CreateNetworkAclEntry.
33              
34             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateNetworkAclEntry.
35              
36             As an example:
37              
38             $service_obj->CreateNetworkAclEntry(Att1 => $value1, Att2 => $value2, ...);
39              
40             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 CidrBlock => Str
46              
47             The IPv4 network range to allow or deny, in CIDR notation (for example
48             C<172.16.0.0/24>).
49              
50              
51              
52             =head2 DryRun => Bool
53              
54             Checks whether you have the required permissions for the action,
55             without actually making the request, and provides an error response. If
56             you have the required permissions, the error response is
57             C<DryRunOperation>. Otherwise, it is C<UnauthorizedOperation>.
58              
59              
60              
61             =head2 B<REQUIRED> Egress => Bool
62              
63             Indicates whether this is an egress rule (rule is applied to traffic
64             leaving the subnet).
65              
66              
67              
68             =head2 IcmpTypeCode => L<Paws::EC2::IcmpTypeCode>
69              
70             ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying
71             the ICMP protocol, or protocol 58 (ICMPv6) with an IPv6 CIDR block.
72              
73              
74              
75             =head2 Ipv6CidrBlock => Str
76              
77             The IPv6 network range to allow or deny, in CIDR notation (for example
78             C<2001:db8:1234:1a00::/64>).
79              
80              
81              
82             =head2 B<REQUIRED> NetworkAclId => Str
83              
84             The ID of the network ACL.
85              
86              
87              
88             =head2 PortRange => L<Paws::EC2::PortRange>
89              
90             TCP or UDP protocols: The range of ports the rule applies to.
91              
92              
93              
94             =head2 B<REQUIRED> Protocol => Str
95              
96             The protocol. A value of C<-1> or C<all> means all protocols. If you
97             specify C<all>, C<-1>, or a protocol number other than C<tcp>, C<udp>,
98             or C<icmp>, traffic on all ports is allowed, regardless of any ports or
99             ICMP types or codes you specify. If you specify protocol C<58> (ICMPv6)
100             and specify an IPv4 CIDR block, traffic for all ICMP types and codes
101             allowed, regardless of any that you specify. If you specify protocol
102             C<58> (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP
103             type and code.
104              
105              
106              
107             =head2 B<REQUIRED> RuleAction => Str
108              
109             Indicates whether to allow or deny the traffic that matches the rule.
110              
111             Valid values are: C<"allow">, C<"deny">
112              
113             =head2 B<REQUIRED> RuleNumber => Int
114              
115             The rule number for the entry (for example, 100). ACL entries are
116             processed in ascending order by rule number.
117              
118             Constraints: Positive integer from 1 to 32766. The range 32767 to 65535
119             is reserved for internal use.
120              
121              
122              
123              
124             =head1 SEE ALSO
125              
126             This class forms part of L<Paws>, documenting arguments for method CreateNetworkAclEntry in L<Paws::EC2>
127              
128             =head1 BUGS and CONTRIBUTIONS
129              
130             The source code is located here: https://github.com/pplu/aws-sdk-perl
131              
132             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
133              
134             =cut
135