Class: Aws::ACM::Types::CertificateSearchResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::CertificateSearchResult
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Contains information about a certificate returned by the SearchCertificates action. This structure includes the certificate ARN, X.509 attributes, and ACM metadata.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
-
#certificate_metadata ⇒ Types::CertificateMetadata
ACM-specific metadata about the certificate.
-
#x509_attributes ⇒ Types::X509Attributes
X.509 certificate attributes such as subject, issuer, and validity period.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
601 602 603 604 605 606 607 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 601 class CertificateSearchResult < Struct.new( :certificate_arn, :x509_attributes, :certificate_metadata) SENSITIVE = [] include Aws::Structure end |
#certificate_metadata ⇒ Types::CertificateMetadata
ACM-specific metadata about the certificate.
601 602 603 604 605 606 607 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 601 class CertificateSearchResult < Struct.new( :certificate_arn, :x509_attributes, :certificate_metadata) SENSITIVE = [] include Aws::Structure end |
#x509_attributes ⇒ Types::X509Attributes
X.509 certificate attributes such as subject, issuer, and validity period.
601 602 603 604 605 606 607 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 601 class CertificateSearchResult < Struct.new( :certificate_arn, :x509_attributes, :certificate_metadata) SENSITIVE = [] include Aws::Structure end |