Module Values.CustomSecretConfigSource

Specifies configuration information for a customer-managed Secrets Manager secret where a storage location credentials is stored in Secrets Manager as plain text (for authentication token, secret key, or password) or as binary (for Kerberos keytab). This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret. You can use either CmkSecretConfig or CustomSecretConfig to provide credentials for a CreateLocation request. Do not provide both parameters for the same request.

Sourcetype nonrec t = {
  1. secretArn : SecretArn.t option;
    (*

    Specifies the ARN for an Secrets Manager secret.

    *)
  2. secretAccessRoleArn : IamRoleArnOrEmptyString.t option;
    (*

    Specifies the ARN for the Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.

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