line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::CreateVpcEndpoint; |
3
|
1
|
|
|
1
|
|
405
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ClientToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DryRun => (is => 'ro', isa => 'Bool'); |
6
|
|
|
|
|
|
|
has PolicyDocument => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has RouteTableIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'RouteTableId' ); |
8
|
|
|
|
|
|
|
has ServiceName => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
has VpcId => (is => 'ro', isa => 'Str', required => 1); |
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
5924
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateVpcEndpoint'); |
14
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::CreateVpcEndpointResult'); |
15
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
### main pod documentation begin ### |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Paws::EC2::CreateVpcEndpoint - Arguments for method CreateVpcEndpoint on Paws::EC2 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This class represents the parameters used for calling the method CreateVpcEndpoint on the |
27
|
|
|
|
|
|
|
Amazon Elastic Compute Cloud service. Use the attributes of this class |
28
|
|
|
|
|
|
|
as arguments to method CreateVpcEndpoint. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateVpcEndpoint. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
As an example: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$service_obj->CreateVpcEndpoint(Att1 => $value1, Att2 => $value2, ...); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
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. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 ClientToken => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Unique, case-sensitive identifier you provide to ensure the idempotency |
44
|
|
|
|
|
|
|
of the request. For more information, see How to Ensure Idempotency. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 DryRun => Bool |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Checks whether you have the required permissions for the action, |
51
|
|
|
|
|
|
|
without actually making the request, and provides an error response. If |
52
|
|
|
|
|
|
|
you have the required permissions, the error response is |
53
|
|
|
|
|
|
|
C<DryRunOperation>. Otherwise, it is C<UnauthorizedOperation>. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 PolicyDocument => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
A policy to attach to the endpoint that controls access to the service. |
60
|
|
|
|
|
|
|
The policy must be in valid JSON format. If this parameter is not |
61
|
|
|
|
|
|
|
specified, we attach a default policy that allows full access to the |
62
|
|
|
|
|
|
|
service. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 RouteTableIds => ArrayRef[Str|Undef] |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
One or more route table IDs. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 B<REQUIRED> ServiceName => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The AWS service name, in the form C<com.amazonaws.I<region>.I<service> |
75
|
|
|
|
|
|
|
>. To get a list of available services, use the |
76
|
|
|
|
|
|
|
DescribeVpcEndpointServices request. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head2 B<REQUIRED> VpcId => Str |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
The ID of the VPC in which the endpoint will be used. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 SEE ALSO |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method CreateVpcEndpoint in L<Paws::EC2> |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=cut |
98
|
|
|
|
|
|
|
|