Module Values_0.DataLakeAccessPropertiesSource

Input properties to configure data lake access for your catalog resource in the Glue Data Catalog.

Sourcetype nonrec t = {
  1. dataLakeAccess : Boolean.t option;
    (*

    Turns on or off data lake access for Apache Spark applications that access Amazon Redshift databases in the Data Catalog from any non-Redshift engine, such as Amazon Athena, Amazon EMR, or Glue ETL.

    *)
  2. dataTransferRole : IAMRoleArn.t option;
    (*

    A role that will be assumed by Glue for transferring data into/out of the staging bucket during a query.

    *)
  3. kmsKey : ResourceArnString.t option;
    (*

    An encryption key that will be used for the staging bucket that will be created along with the catalog.

    *)
  4. catalogType : NameString.t option;
    (*

    Specifies a federated catalog type for the native catalog resource. The currently supported type is aws:redshift.

    *)
}
Sourceval make : ?dataLakeAccess:??? -> ?dataTransferRole:??? -> ?kmsKey:??? -> ?catalogType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of IAMRoleArn.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