Paws
view release on metacpan or search on metacpan
lib/Paws/ACM/CertificateDetail.pm view on Meta::CPAN
# Generated by default/object.tt
package Paws::ACM::CertificateDetail;
use Moose;
has CertificateArn => (is => 'ro', isa => 'Str');
has CertificateAuthorityArn => (is => 'ro', isa => 'Str');
has CreatedAt => (is => 'ro', isa => 'Str');
has DomainName => (is => 'ro', isa => 'Str');
has DomainValidationOptions => (is => 'ro', isa => 'ArrayRef[Paws::ACM::DomainValidation]');
has ExtendedKeyUsages => (is => 'ro', isa => 'ArrayRef[Paws::ACM::ExtendedKeyUsage]');
has FailureReason => (is => 'ro', isa => 'Str');
has ImportedAt => (is => 'ro', isa => 'Str');
has InUseBy => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
has IssuedAt => (is => 'ro', isa => 'Str');
has Issuer => (is => 'ro', isa => 'Str');
has KeyAlgorithm => (is => 'ro', isa => 'Str');
has KeyUsages => (is => 'ro', isa => 'ArrayRef[Paws::ACM::KeyUsage]');
has NotAfter => (is => 'ro', isa => 'Str');
has NotBefore => (is => 'ro', isa => 'Str');
has Options => (is => 'ro', isa => 'Paws::ACM::CertificateOptions');
has RenewalEligibility => (is => 'ro', isa => 'Str');
has RenewalSummary => (is => 'ro', isa => 'Paws::ACM::RenewalSummary');
has RevocationReason => (is => 'ro', isa => 'Str');
has RevokedAt => (is => 'ro', isa => 'Str');
has Serial => (is => 'ro', isa => 'Str');
has SignatureAlgorithm => (is => 'ro', isa => 'Str');
has Status => (is => 'ro', isa => 'Str');
has Subject => (is => 'ro', isa => 'Str');
has SubjectAlternativeNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
has Type => (is => 'ro', isa => 'Str');
1;
### main pod documentation begin ###
=head1 NAME
Paws::ACM::CertificateDetail
=head1 USAGE
This class represents one of two things:
=head3 Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::ACM::CertificateDetail object:
$service_obj->Method(Att1 => { CertificateArn => $value, ..., Type => $value });
=head3 Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::ACM::CertificateDetail object:
$result = $service_obj->Method(...);
$result->Att1->CertificateArn
=head1 DESCRIPTION
Contains metadata about an ACM certificate. This structure is returned
in the response to a DescribeCertificate request.
=head1 ATTRIBUTES
=head2 CertificateArn => Str
The Amazon Resource Name (ARN) of the certificate. For more information
about ARNs, see Amazon Resource Names (ARNs)
(https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
in the I<AWS General Reference>.
=head2 CertificateAuthorityArn => Str
The Amazon Resource Name (ARN) of the ACM PCA private certificate
authority (CA) that issued the certificate. This has the following
format:
C<arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012>
=head2 CreatedAt => Str
The time at which the certificate was requested.
( run in 2.604 seconds using v1.01-cache-2.11-cpan-437f7b0c052 )