File Coverage

blib/lib/Paws/ServiceCatalog/DescribeProvisioningParametersOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ServiceCatalog::DescribeProvisioningParametersOutput;
3 1     1   636 use Moose;
  1         4  
  1         8  
4             has ConstraintSummaries => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::ConstraintSummary]');
5             has ProvisioningArtifactParameters => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::ProvisioningArtifactParameter]');
6             has TagOptions => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::TagOptionSummary]');
7             has UsageInstructions => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::UsageInstruction]');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::ServiceCatalog::DescribeProvisioningParametersOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 ConstraintSummaries => ArrayRef[L<Paws::ServiceCatalog::ConstraintSummary>]
21              
22             The list of constraint summaries that apply to provisioning this
23             product.
24              
25              
26             =head2 ProvisioningArtifactParameters => ArrayRef[L<Paws::ServiceCatalog::ProvisioningArtifactParameter>]
27              
28             The list of parameters used to successfully provision the product. Each
29             parameter includes a list of allowable values and additional metadata
30             about each parameter.
31              
32              
33             =head2 TagOptions => ArrayRef[L<Paws::ServiceCatalog::TagOptionSummary>]
34              
35             List of TagOptions associated with the provisioned provisioning
36             parameters.
37              
38              
39             =head2 UsageInstructions => ArrayRef[L<Paws::ServiceCatalog::UsageInstruction>]
40              
41             Any additional metadata specifically related to the provisioning of the
42             product. For example, see the C<Version> field of the CloudFormation
43             template.
44              
45              
46             =head2 _request_id => Str
47              
48              
49             =cut
50              
51             1;