Module Values.RevokeCertificateRequestSource

Revokes a public ACM certificate. You can only revoke certificates that have been previously exported. Once a certificate is revoked, you cannot reuse the certificate. Revoking a certificate is permanent.

Sourcetype nonrec t = {
  1. certificateArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the public or private certificate that will be revoked. The ARN must have the following form: arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012

    *)
  2. revocationReason : RevocationReason.t;
    (*

    Specifies why you revoked the certificate.

    *)
}
Sourceval context_ : string
Sourceval make : certificateArn:Arn.t -> revocationReason:RevocationReason.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t