File Coverage

blib/lib/Paws/CodePipeline/ArtifactStore.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             package Paws::CodePipeline::ArtifactStore;
2 1     1   604 use Moose;
  1         3  
  1         9  
3             has EncryptionKey => (is => 'ro', isa => 'Paws::CodePipeline::EncryptionKey', request_name => 'encryptionKey', traits => ['NameInRequest']);
4             has Location => (is => 'ro', isa => 'Str', request_name => 'location', traits => ['NameInRequest'], required => 1);
5             has Type => (is => 'ro', isa => 'Str', request_name => 'type', traits => ['NameInRequest'], required => 1);
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::CodePipeline::ArtifactStore
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::CodePipeline::ArtifactStore object:
24              
25             $service_obj->Method(Att1 => { EncryptionKey => $value, ..., Type => $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::CodePipeline::ArtifactStore object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->EncryptionKey
33              
34             =head1 DESCRIPTION
35              
36             The Amazon S3 bucket where artifacts are stored for the pipeline.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 EncryptionKey => L<Paws::CodePipeline::EncryptionKey>
42              
43             The encryption key used to encrypt the data in the artifact store, such
44             as an AWS Key Management Service (AWS KMS) key. If this is undefined,
45             the default key for Amazon S3 is used.
46              
47              
48             =head2 B<REQUIRED> Location => Str
49              
50             The Amazon S3 bucket used for storing the artifacts for a pipeline. You
51             can specify the name of an S3 bucket but not a folder within the
52             bucket. A folder to contain the pipeline artifacts is created for you
53             based on the name of the pipeline. You can use any Amazon S3 bucket in
54             the same AWS Region as the pipeline to store your pipeline artifacts.
55              
56              
57             =head2 B<REQUIRED> Type => Str
58              
59             The type of the artifact store, such as S3.
60              
61              
62              
63             =head1 SEE ALSO
64              
65             This class forms part of L<Paws>, describing an object used in L<Paws::CodePipeline>
66              
67             =head1 BUGS and CONTRIBUTIONS
68              
69             The source code is located here: https://github.com/pplu/aws-sdk-perl
70              
71             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
72              
73             =cut
74