PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::EC2::ReplaceNetworkAclEntry; use Moose; has CidrBlock => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cidrBlock' ); has DryRun => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'dryRun' ); has Egress => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'egress' , required => 1); has IcmpTypeCode => (is => 'ro', isa => 'Paws::EC2::IcmpTypeCode', traits => ['NameInRequest'], request_name => 'Icmp' ); has Ipv6CidrBlock => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'ipv6CidrBlock' ); has NetworkAclId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'networkAclId' , required => 1); has PortRange => (is => 'ro', isa => 'Paws::EC2::PortRange', traits => ['NameInRequest'], request_name => 'portRange' ); has Protocol => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'protocol' , required => 1); has RuleAction => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'ruleAction' , required => 1); has RuleNumber => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'ruleNumber' , required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ReplaceNetworkAclEntry'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::EC2::ReplaceNetworkAclEntry - Arguments for method ReplaceNetworkAclEntry on L =head1 DESCRIPTION This class represents the parameters used for calling the method ReplaceNetworkAclEntry on the L service. Use the attributes of this class as arguments to method ReplaceNetworkAclEntry. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ReplaceNetworkAclEntry. =head1 SYNOPSIS my $ec2 = Paws->service('EC2'); # To replace a network ACL entry # This example replaces an entry for the specified network ACL. The new rule 100 # allows ingress traffic from 203.0.113.12/24 on UDP port 53 (DNS) into any # associated subnet. $ec2->ReplaceNetworkAclEntry( 'CidrBlock' => '203.0.113.12/24', 'Egress' => 0, 'NetworkAclId' => 'acl-5fb85d36', 'PortRange' => { 'From' => 53, 'To' => 53 }, 'Protocol' => 'udp', 'RuleAction' => 'allow', 'RuleNumber' => 100 ); 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. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 CidrBlock => Str The IPv4 network range to allow or deny, in CIDR notation (for example C<172.16.0.0/24>). =head2 DryRun => Bool Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is C. Otherwise, it is C. =head2 B Egress => Bool Indicates whether to replace the egress rule. Default: If no value is specified, we replace the ingress rule. =head2 IcmpTypeCode => L ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block. =head2 Ipv6CidrBlock => Str The IPv6 network range to allow or deny, in CIDR notation (for example C<2001:bd8:1234:1a00::/64>). =head2 B NetworkAclId => Str The ID of the ACL. =head2 PortRange => L TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP). =head2 B Protocol => Str The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv4 CIDR block, traffic for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol "58" (ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code. =head2 B RuleAction => Str Indicates whether to allow or deny the traffic that matches the rule. Valid values are: C<"allow">, C<"deny"> =head2 B RuleNumber => Int The rule number of the entry to replace. =head1 SEE ALSO This class forms part of L, documenting arguments for method ReplaceNetworkAclEntry in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut