Class: Aws::ACMPCA::Types::DescribeCertificateAuthorityAuditReportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::DescribeCertificateAuthorityAuditReportRequest
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Note:
When making an API call, you may pass DescribeCertificateAuthorityAuditReportRequest data as a hash:
{
certificate_authority_arn: "Arn", # required
audit_report_id: "AuditReportId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audit_report_id ⇒ String
The report ID returned by calling the [CreateCertificateAuthorityAuditReport][1] action.
-
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) of the private CA.
Instance Attribute Details
#audit_report_id ⇒ String
The report ID returned by calling the CreateCertificateAuthorityAuditReport action.
1453 1454 1455 1456 1457 1458 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1453 class DescribeCertificateAuthorityAuditReportRequest < Struct.new( :certificate_authority_arn, :audit_report_id) SENSITIVE = [] include Aws::Structure end |
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) of the private CA. This must be of the form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
1453 1454 1455 1456 1457 1458 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1453 class DescribeCertificateAuthorityAuditReportRequest < Struct.new( :certificate_authority_arn, :audit_report_id) SENSITIVE = [] include Aws::Structure end |