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

NAME

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

DESCRIPTION

This class represents the parameters used for calling the method CreateNetworkAclEntry on the Amazon Elastic Compute Cloud service. Use the attributes of this class as arguments to method CreateNetworkAclEntry.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateNetworkAclEntry.

SYNOPSIS

    my $ec2 = Paws->service('EC2');
    # To create a network ACL entry
    # This example creates an entry for the specified network ACL. The rule
    # allows ingress traffic from anywhere (0.0.0.0/0) on UDP port 53 (DNS) into
    # any associated subnet.
    $ec2->CreateNetworkAclEntry(
      {
        'CidrBlock'    => '0.0.0.0/0',
        '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/CreateNetworkAclEntry

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 this is an egress rule (rule is applied to traffic leaving the subnet).

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:db8:1234:1a00::/64).

REQUIRED NetworkAclId => Str

The ID of the network 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 for the entry (for example, 100). ACL entries are processed in ascending order by rule number.

Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is reserved for internal use.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateNetworkAclEntry 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