File Coverage

blib/lib/Paws/ServiceCatalog/CreateProvisioningArtifactOutput.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::CreateProvisioningArtifactOutput;
3 1     1   501 use Moose;
  1         2  
  1         7  
4             has Info => (is => 'ro', isa => 'Paws::ServiceCatalog::ProvisioningArtifactInfo');
5             has ProvisioningArtifactDetail => (is => 'ro', isa => 'Paws::ServiceCatalog::ProvisioningArtifactDetail');
6             has Status => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ServiceCatalog::CreateProvisioningArtifactOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Info => L<Paws::ServiceCatalog::ProvisioningArtifactInfo>
20              
21             Additional information about the creation request for the provisioning
22             artifact.
23              
24              
25             =head2 ProvisioningArtifactDetail => L<Paws::ServiceCatalog::ProvisioningArtifactDetail>
26              
27             The resulting detailed provisioning artifact information.
28              
29              
30             =head2 Status => Str
31              
32             The status of the current request.
33              
34             Valid values are: C<"AVAILABLE">, C<"CREATING">, C<"FAILED">
35             =head2 _request_id => Str
36              
37              
38             =cut
39              
40             1;