line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::ConfigurationSettingsDescription; |
3
|
1
|
|
|
1
|
|
494
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
473
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has ApplicationName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DateCreated => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has DateUpdated => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has DeploymentStatus => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has EnvironmentName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has OptionSettings => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::ConfigurationOptionSetting]'); |
11
|
|
|
|
|
|
|
has PlatformArn => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has SolutionStackName => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
has TemplateName => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
### main pod documentation begin ### |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::ConfigurationSettingsDescription |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 ApplicationName => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The name of the application associated with this configuration set. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 DateCreated => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The date (in UTC time) when this configuration set was created. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 DateUpdated => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The date (in UTC time) when this configuration set was last modified. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 DeploymentStatus => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
If this configuration set is associated with an environment, the |
45
|
|
|
|
|
|
|
C<DeploymentStatus> parameter indicates the deployment status of this |
46
|
|
|
|
|
|
|
configuration set: |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=over |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=item * |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
C<null>: This configuration is not associated with a running |
53
|
|
|
|
|
|
|
environment. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=item * |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
C<pending>: This is a draft configuration that is not deployed to the |
58
|
|
|
|
|
|
|
associated environment but is in the process of deploying. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item * |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
C<deployed>: This is the configuration that is currently deployed to |
63
|
|
|
|
|
|
|
the associated running environment. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
C<failed>: This is a draft configuration that failed to successfully |
68
|
|
|
|
|
|
|
deploy. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=back |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Valid values are: C<"deployed">, C<"pending">, C<"failed"> |
74
|
|
|
|
|
|
|
=head2 Description => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
Describes this configuration set. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 EnvironmentName => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
If not C<null>, the name of the environment for this configuration set. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 OptionSettings => ArrayRef[L<Paws::ElasticBeanstalk::ConfigurationOptionSetting>] |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
A list of the configuration options and their values in this |
87
|
|
|
|
|
|
|
configuration set. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head2 PlatformArn => Str |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
The ARN of the platform. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=head2 SolutionStackName => Str |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
The name of the solution stack this configuration set uses. |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head2 TemplateName => Str |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
If not C<null>, the name of the configuration template for this |
103
|
|
|
|
|
|
|
configuration set. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head2 _request_id => Str |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
=cut |
110
|
|
|
|
|
|
|
|