Module Values.SourceDataSource

The data field of the trust anchor depending on its type.

Sourcetype nonrec t = {
  1. x509CertificateData : SourceDataX509CertificateDataString.t option;
    (*

    The PEM-encoded data for the certificate anchor. Included for trust anchors of type CERTIFICATE_BUNDLE.

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

    The root certificate of the Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests. Included for trust anchors of type AWS_ACM_PCA.

    *)
}
Sourceval make : ?x509CertificateData:??? -> ?acmPcaArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SourceDataX509CertificateDataString.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