1VM::EC2::VPC::NetworkAcUls:e:rAsCsoonctiraitbiuotne(d3V)PMe:r:lECD2o:c:uVmPeCn:t:aNteitownorkAcl::Association(3)
2
3
4
6 VM::EC2::VPC::NetworkAcl::Association - The association between a
7 network acl and a subnet
8
10 use VM::EC2;
11
12 my $ec2 = VM::EC2->new(...);
13 my $acl = $ec2->describe_network_acls(-network_acl_id=>'acl-12345678');
14 my @assoc = $acl->associations;
15
16 foreach my $a (@assoc) {
17 print $a->networkAclAssociationId,"\n",
18 $a->networkAclId,"\n",
19 $a->subnetId,"\n";
20 }
21
23 This object represents an Amazon EC2 VPC network ACL association
24
26 These object methods are supported:
27
28 networkAclAssociationId -- An identifier representing the
29 association between a network ACL
30 and a subnet.
31 networkAclId -- The ID of the network ACL in the
32 association.
33 subnetId -- The ID of the subnet in the association.
34
35 The following convenience methods are supported:
36
37 network_acl -- A VM::EC2::VPC::NetworkAcl object
38
39 subnet -- A VM::EC2::VPC::Subnet object
40
41 The object also supports the tags() method described in
42 VM::EC2::Generic:
43
45 When used in a string context, this object will interpolate the
46 subnetId.
47
49 VM::EC2 VM::EC2::Generic VM::EC2::Tag VM::EC2::VPC
50 VM::EC2::VPC::NetworkAcl VM::EC2::VPC::Subnet
51
53 Lance Kinley <lkinley@loyaltymethods.com>.
54
55 Copyright (c) 2012 Loyalty Methods, Inc.
56
57 This package and its accompanying libraries is free software; you can
58 redistribute it and/or modify it under the terms of the GPL (either
59 version 1, or at your option, any later version) or the Artistic
60 License 2.0. Refer to LICENSE for the full license text. In addition,
61 please see DISCLAIMER.txt for disclaimers of warranty.
62
63
64
65perl v5.32.1 2021-V0M1:-:2E7C2::VPC::NetworkAcl::Association(3)