Module Values.DataProviderDescriptorDefinitionSource

Information about a data provider.

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

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

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

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

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?secretsManagerSecretId:??? -> ?secretsManagerAccessRoleArn:??? -> dataProviderIdentifier:String_.t -> 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