Module Values.ProviderPropertiesSource

An object containing the providerServiceARN, intermediateSourceConfiguration, and providerConfiguration.

Sourcetype nonrec t = {
  1. providerServiceArn : ProviderServiceArn.t;
    (*

    The ARN of the provider service.

    *)
  2. providerConfiguration : Document.t option;
    (*

    The required configuration fields to use with the provider service.

    *)
  3. intermediateSourceConfiguration : IntermediateSourceConfiguration.t option;
    (*

    The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.

    *)
}
Sourceval context_ : string
Sourceval make : ?providerConfiguration:??? -> ?intermediateSourceConfiguration:??? -> providerServiceArn:ProviderServiceArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProviderServiceArn.t | `Structure of (string * [> `String of S3Path.t ]) list ]) 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