Module Values.KerberosAuthenticationSettingsSource

Specifies the settings required for kerberos authentication when creating the replication instance.

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

    Specifies the ID of the secret that stores the key cache file required for kerberos authentication.

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

    Specifies the Amazon Resource Name (ARN) of the IAM role that grants Amazon Web Services DMS access to the secret containing key cache file for the kerberos authentication.

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

    Specifies the contents of krb5 configuration file required for kerberos authentication.

    *)
}
Sourceval make : ?keyCacheSecretId:??? -> ?keyCacheSecretIamArn:??? -> ?krb5FileContents:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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