Module Values.RequestCertificateResponseSource

Requests an ACM certificate for use with other Amazon Web Services services. To request an ACM certificate, you must specify a fully qualified domain name (FQDN) in the DomainName parameter. You can also specify additional FQDNs in the SubjectAlternativeNames parameter. If you are requesting a private certificate, domain validation is not required. If you are requesting a public certificate, each domain name that you specify must be validated to verify that you own or control the domain. You can use DNS validation or email validation. We recommend that you use DNS validation. ACM behavior differs from the RFC 6125 specification of the certificate validation process. ACM first checks for a Subject Alternative Name, and, if it finds one, ignores the common name (CN). After successful completion of the RequestCertificate action, there is a delay of several seconds before you can retrieve information about the new certificate.

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

    String that contains the ARN of the issued certificate. This must be of the form: arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidArnException of InvalidArnException.t
  2. | `InvalidDomainValidationOptionsException of InvalidDomainValidationOptionsException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `InvalidTagException of InvalidTagException.t
  5. | `LimitExceededException of LimitExceededException.t
  6. | `TagPolicyException of TagPolicyException.t
  7. | `TooManyTagsException of TooManyTagsException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?certificateArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidArnException of InvalidArnException.t | `InvalidDomainValidationOptionsException of InvalidDomainValidationOptionsException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidTagException of InvalidTagException.t | `LimitExceededException of LimitExceededException.t | `TagPolicyException of TagPolicyException.t | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidArnException of InvalidArnException.t | `InvalidDomainValidationOptionsException of InvalidDomainValidationOptionsException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidTagException of InvalidTagException.t | `LimitExceededException of LimitExceededException.t | `TagPolicyException of TagPolicyException.t | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure 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