Module Values.ClientCertificateSource

Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.

Sourcetype nonrec t = {
  1. clientCertificateId : String_.t option;
    (*

    The identifier of the client certificate.

    *)
  2. description : String_.t option;
    (*

    The description of the client certificate.

    *)
  3. pemEncodedCertificate : String_.t option;
    (*

    The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .

    *)
  4. createdDate : Timestamp.t option;
    (*

    The timestamp when the client certificate was created.

    *)
  5. expirationDate : Timestamp.t option;
    (*

    The timestamp when the client certificate will expire.

    *)
  6. tags : MapOfStringToString.t option;
    (*

    The collection of tags. Each tag element is associated with a given resource.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clientCertificateId:??? -> ?description:??? -> ?pemEncodedCertificate:??? -> ?createdDate:??? -> ?expirationDate:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `LimitExceededException of LimitExceededException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `LimitExceededException of LimitExceededException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Timestamp of Timestamp.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