Module Values_0.DataLakeAccessPropertiesOutputSource

The output properties of the data lake access configuration 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.

    *)
  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. managedWorkgroupName : NameString.t option;
    (*

    The managed Redshift Serverless compute name that is created for your catalog resource.

    *)
  5. managedWorkgroupStatus : NameString.t option;
    (*

    The managed Redshift Serverless compute status.

    *)
  6. redshiftDatabaseName : NameString.t option;
    (*

    The default Redshift database resource name in the managed compute.

    *)
  7. statusMessage : NameString.t option;
    (*

    A message that gives more detailed information about the managed workgroup status.

    *)
  8. 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:??? -> ?managedWorkgroupName:??? -> ?managedWorkgroupStatus:??? -> ?redshiftDatabaseName:??? -> ?statusMessage:??? -> ?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