line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ServiceCatalog::ProvisioningArtifactParameter; |
2
|
1
|
|
|
1
|
|
517
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has DefaultValue => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has IsNoEcho => (is => 'ro', isa => 'Bool'); |
6
|
|
|
|
|
|
|
has ParameterConstraints => (is => 'ro', isa => 'Paws::ServiceCatalog::ParameterConstraints'); |
7
|
|
|
|
|
|
|
has ParameterKey => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ParameterType => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::ServiceCatalog::ProvisioningArtifactParameter |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 USAGE |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
This class represents one of two things: |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
24
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ServiceCatalog::ProvisioningArtifactParameter object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { DefaultValue => $value, ..., ParameterType => $value }); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head3 Results returned from an API call |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ServiceCatalog::ProvisioningArtifactParameter object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->DefaultValue |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
A parameter used to successfully provision the product. This value |
40
|
|
|
|
|
|
|
includes a list of allowable values and additional metadata. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 DefaultValue => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The default value for this parameter. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 Description => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The text description of the parameter. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 IsNoEcho => Bool |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
If this value is true, the value for this parameter is obfuscated from |
58
|
|
|
|
|
|
|
view when the parameter is retrieved. This parameter is used to hide |
59
|
|
|
|
|
|
|
sensitive information. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 ParameterConstraints => L<Paws::ServiceCatalog::ParameterConstraints> |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The list of constraints that the administrator has put on the |
65
|
|
|
|
|
|
|
parameter. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 ParameterKey => Str |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
The parameter key. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 ParameterType => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The parameter type. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 SEE ALSO |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ServiceCatalog> |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=cut |
90
|
|
|
|
|
|
|
|