line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::CreateSubnet; |
3
|
1
|
|
|
1
|
|
299
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
574
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
15
|
|
4
|
|
|
|
|
|
|
has AvailabilityZone => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has CidrBlock => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has DryRun => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'dryRun' ); |
7
|
|
|
|
|
|
|
has Ipv6CidrBlock => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has VpcId => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5293
|
use MooseX::ClassAttribute; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
6677
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateSubnet'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::CreateSubnetResult'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::EC2::CreateSubnet - Arguments for method CreateSubnet on Paws::EC2 |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents the parameters used for calling the method CreateSubnet on the |
26
|
|
|
|
|
|
|
Amazon Elastic Compute Cloud service. Use the attributes of this class |
27
|
|
|
|
|
|
|
as arguments to method CreateSubnet. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateSubnet. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
As an example: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->CreateSubnet(Att1 => $value1, Att2 => $value2, ...); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
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. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 AvailabilityZone => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The Availability Zone for the subnet. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Default: AWS selects one for you. If you create more than one subnet in |
45
|
|
|
|
|
|
|
your VPC, we may not necessarily select a different zone for each |
46
|
|
|
|
|
|
|
subnet. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 B<REQUIRED> CidrBlock => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The IPv4 network range for the subnet, in CIDR notation. For example, |
53
|
|
|
|
|
|
|
C<10.0.0.0/24>. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 DryRun => Bool |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Checks whether you have the required permissions for the action, |
60
|
|
|
|
|
|
|
without actually making the request, and provides an error response. If |
61
|
|
|
|
|
|
|
you have the required permissions, the error response is |
62
|
|
|
|
|
|
|
C<DryRunOperation>. Otherwise, it is C<UnauthorizedOperation>. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 Ipv6CidrBlock => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The IPv6 network range for the subnet, in CIDR notation. The subnet |
69
|
|
|
|
|
|
|
size must use a /64 prefix length. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 B<REQUIRED> VpcId => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The ID of the VPC. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 SEE ALSO |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method CreateSubnet in L<Paws::EC2> |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=cut |
91
|
|
|
|
|
|
|
|