Skip to content

Get Managed Certificate Details

cloudfront_get_managed_certificate_details R Documentation

Gets details about the CloudFront managed ACM certificate

Description

Gets details about the CloudFront managed ACM certificate.

Usage

cloudfront_get_managed_certificate_details(Identifier)

Arguments

Identifier

[required] The identifier of the distribution tenant. You can specify the ARN, ID, or name of the distribution tenant.

Value

A list with the following syntax:

list(
  ManagedCertificateDetails = list(
    CertificateArn = "string",
    CertificateStatus = "pending-validation"|"issued"|"inactive"|"expired"|"validation-timed-out"|"revoked"|"failed",
    ValidationTokenHost = "cloudfront"|"self-hosted",
    ValidationTokenDetails = list(
      list(
        Domain = "string",
        RedirectTo = "string",
        RedirectFrom = "string"
      )
    )
  )
)

Request syntax

svc$get_managed_certificate_details(
  Identifier = "string"
)