Module Values.DataSourceSource

Data sources that are associated with an OpenSearch application.

Sourcetype nonrec t = {
  1. dataSourceArn : ARN.t option;
  2. dataSourceDescription : DataSourceDescription.t option;
    (*

    Detailed description of a data source.

    *)
  3. iamRoleForDataSourceArn : RoleArn.t option;
    (*

    The ARN of the IAM role to be used for cross account/region data source association.

    *)
}
Sourceval make : ?dataSourceArn:??? -> ?dataSourceDescription:??? -> ?iamRoleForDataSourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ARN.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