Module Values.IssueCertificateResponseSource

Uses your private certificate authority (CA), or one that has been shared with you, to issue a client certificate. This action returns the Amazon Resource Name (ARN) of the certificate. You can retrieve the certificate by calling the GetCertificate action and specifying the ARN. You cannot use the ACM ListCertificateAuthorities action to retrieve the ARNs of the certificates that you issue by using Amazon Web Services Private CA.

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

    The Amazon Resource Name (ARN) of the issued certificate and the certificate serial number. This is of the form: arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidArgsException of InvalidArgsException.t
  2. | `InvalidArnException of InvalidArnException.t
  3. | `InvalidStateException of InvalidStateException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `MalformedCSRException of MalformedCSRException.t
  6. | `ResourceNotFoundException of ResourceNotFoundException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?certificateArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidArgsException of InvalidArgsException.t | `InvalidArnException of InvalidArnException.t | `InvalidStateException of InvalidStateException.t | `LimitExceededException of LimitExceededException.t | `MalformedCSRException of MalformedCSRException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidArgsException of InvalidArgsException.t | `InvalidArnException of InvalidArnException.t | `InvalidStateException of InvalidStateException.t | `LimitExceededException of LimitExceededException.t | `MalformedCSRException of MalformedCSRException.t | `ResourceNotFoundException of ResourceNotFoundException.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