GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::EC2::CreateNetworkAclEntry(3) User Contributed Perl Documentation Paws::EC2::CreateNetworkAclEntry(3)

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

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.

    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>

The IPv4 network range to allow or deny, in CIDR notation (for example "172.16.0.0/24"). We modify the specified CIDR block to its canonical form; for example, if you specify "100.68.0.18/18", we modify it to "100.68.0.0/18".

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

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

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.

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.

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

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>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.