Module Values.AuthenticationSource

The authentication configuration for an actor, specifying the provider type and credentials.

Sourcetype nonrec t = {
  1. providerType : AuthenticationProviderType.t option;
    (*

    The type of authentication provider. Valid values include SECRETS_MANAGER, AWS_LAMBDA, AWS_IAM_ROLE, and AWS_INTERNAL.

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

    The authentication value, such as a secret ARN, Lambda function ARN, or IAM role ARN, depending on the provider type.

    *)
}
Sourceval make : ?providerType:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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