line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::OpsWorks::EnvironmentVariable; |
2
|
1
|
|
|
1
|
|
548
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has Key => (is => 'ro', isa => 'Str', required => 1); |
4
|
|
|
|
|
|
|
has Secure => (is => 'ro', isa => 'Bool'); |
5
|
|
|
|
|
|
|
has Value => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::OpsWorks::EnvironmentVariable |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 USAGE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This class represents one of two things: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
21
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::OpsWorks::EnvironmentVariable object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Key => $value, ..., Value => $value }); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Results returned from an API call |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::OpsWorks::EnvironmentVariable object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->Key |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Represents an app's environment variable. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 B<REQUIRED> Key => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
(Required) The environment variable's name, which can consist of up to |
44
|
|
|
|
|
|
|
64 characters and must be specified. The name can contain upper- and |
45
|
|
|
|
|
|
|
lowercase letters, numbers, and underscores (_), but it must start with |
46
|
|
|
|
|
|
|
a letter or underscore. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 Secure => Bool |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
(Optional) Whether the variable's value will be returned by the |
52
|
|
|
|
|
|
|
DescribeApps action. To conceal an environment variable's value, set |
53
|
|
|
|
|
|
|
C<Secure> to C<true>. C<DescribeApps> then returns |
54
|
|
|
|
|
|
|
C<*****FILTERED*****> instead of the actual value. The default value |
55
|
|
|
|
|
|
|
for C<Secure> is C<false>. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 B<REQUIRED> Value => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
(Optional) The environment variable's value, which can be left empty. |
61
|
|
|
|
|
|
|
If you specify a value, it can contain up to 256 characters, which must |
62
|
|
|
|
|
|
|
all be printable. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 SEE ALSO |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::OpsWorks> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=cut |
77
|
|
|
|
|
|
|
|