line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::CodePipeline::ActionTypeSettings; |
2
|
1
|
|
|
1
|
|
270
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has EntityUrlTemplate => (is => 'ro', isa => 'Str', request_name => 'entityUrlTemplate', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has ExecutionUrlTemplate => (is => 'ro', isa => 'Str', request_name => 'executionUrlTemplate', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has RevisionUrlTemplate => (is => 'ro', isa => 'Str', request_name => 'revisionUrlTemplate', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has ThirdPartyConfigurationUrl => (is => 'ro', isa => 'Str', request_name => 'thirdPartyConfigurationUrl', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::CodePipeline::ActionTypeSettings |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 USAGE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents one of two things: |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
22
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::CodePipeline::ActionTypeSettings object: |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { EntityUrlTemplate => $value, ..., ThirdPartyConfigurationUrl => $value }); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Results returned from an API call |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::CodePipeline::ActionTypeSettings object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
33
|
|
|
|
|
|
|
$result->Att1->EntityUrlTemplate |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Returns information about the settings for an action type. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 EntityUrlTemplate => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The URL returned to the AWS CodePipeline console that provides a deep |
45
|
|
|
|
|
|
|
link to the resources of the external system, such as the configuration |
46
|
|
|
|
|
|
|
page for an AWS CodeDeploy deployment group. This link is provided as |
47
|
|
|
|
|
|
|
part of the action display within the pipeline. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 ExecutionUrlTemplate => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The URL returned to the AWS CodePipeline console that contains a link |
53
|
|
|
|
|
|
|
to the top-level landing page for the external system, such as console |
54
|
|
|
|
|
|
|
page for AWS CodeDeploy. This link is shown on the pipeline view page |
55
|
|
|
|
|
|
|
in the AWS CodePipeline console and provides a link to the execution |
56
|
|
|
|
|
|
|
entity of the external action. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 RevisionUrlTemplate => Str |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
The URL returned to the AWS CodePipeline console that contains a link |
62
|
|
|
|
|
|
|
to the page where customers can update or change the configuration of |
63
|
|
|
|
|
|
|
the external action. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 ThirdPartyConfigurationUrl => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The URL of a sign-up page where users can sign up for an external |
69
|
|
|
|
|
|
|
service and perform initial configuration of the action provided by |
70
|
|
|
|
|
|
|
that service. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 SEE ALSO |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::CodePipeline> |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=cut |
85
|
|
|
|
|
|
|
|