Module Values.DataProviderDescriptorSource

Information about a data provider.

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

    The identifier of the Amazon Web Services Secrets Manager Secret used to store access credentials for the data provider.

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

    The ARN of the role used to access Amazon Web Services Secrets Manager.

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

    The user-friendly name of the data provider.

    *)
  4. dataProviderArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the data provider.

    *)
}
Sourceval make : ?secretsManagerSecretId:??? -> ?secretsManagerAccessRoleArn:??? -> ?dataProviderName:??? -> ?dataProviderArn:??? -> 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