Module Values.TLSCertificateConfigurationSource

Configurations related to the TLS certificate for the security configuration.

Sourcetype nonrec t = {
  1. certificateProviderType : CertificateProviderType.t option;
    (*

    The TLS certificate type. Acceptable values: PEM or Custom.

    *)
  2. publicCertificateSecretArn : SecretsManagerArn.t option;
    (*

    Secrets Manager ARN that contains the public TLS certificate contents, used for communication between the user job and the system job.

    *)
  3. privateCertificateSecretArn : SecretsManagerArn.t option;
    (*

    Secrets Manager ARN that contains the private TLS certificate contents, used for communication between the user job and the system job.

    *)
}
Sourceval make : ?certificateProviderType:??? -> ?publicCertificateSecretArn:??? -> ?privateCertificateSecretArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SecretsManagerArn.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