line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::DomainName; |
3
|
1
|
|
|
1
|
|
507
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has CertificateArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificateArn'); |
5
|
|
|
|
|
|
|
has CertificateName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificateName'); |
6
|
|
|
|
|
|
|
has CertificateUploadDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificateUploadDate'); |
7
|
|
|
|
|
|
|
has DistributionDomainName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'distributionDomainName'); |
8
|
|
|
|
|
|
|
has DomainName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domainName'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::ApiGateway::DomainName |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 CertificateArn => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The reference to an AWS-managed certificate. AWS Certificate Manager is |
25
|
|
|
|
|
|
|
the only supported source. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 CertificateName => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The name of the certificate. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 CertificateUploadDate => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The timestamp when the certificate was uploaded. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 DistributionDomainName => Str |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
The domain name of the Amazon CloudFront distribution. For more |
41
|
|
|
|
|
|
|
information, see the Amazon CloudFront documentation. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 DomainName => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The name of the DomainName resource. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 _request_id => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |
53
|
|
|
|
|
|
|
|