The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::EC2::ReplaceNetworkAclEntry - Arguments for method ReplaceNetworkAclEntry on Paws::EC2

DESCRIPTION

This class represents the parameters used for calling the method ReplaceNetworkAclEntry on the Amazon Elastic Compute Cloud 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.

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 https://docs.aws.amazon.com/goto/WebAPI/ec2/ReplaceNetworkAclEntry

ATTRIBUTES

CidrBlock => Str

The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24).

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 DryRunOperation. Otherwise, it is UnauthorizedOperation.

REQUIRED Egress => Bool

Indicates whether to replace the egress rule.

Default: If no value is specified, we replace the ingress rule.

IcmpTypeCode => Paws::EC2::IcmpTypeCode

ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.

Ipv6CidrBlock => Str

The IPv6 network range to allow or deny, in CIDR notation (for example 2001:bd8:1234:1a00::/64).

REQUIRED NetworkAclId => Str

The ID of the ACL.

PortRange => Paws::EC2::PortRange

TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).

REQUIRED 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.

REQUIRED RuleAction => Str

Indicates whether to allow or deny the traffic that matches the rule.

Valid values are: "allow", "deny"

REQUIRED RuleNumber => Int

The rule number of the entry to replace.

SEE ALSO

This class forms part of Paws, documenting arguments for method ReplaceNetworkAclEntry in Paws::EC2

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues