interface DataLakeAccessPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnCatalog.DataLakeAccessPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCatalog_DataLakeAccessPropertiesProperty |
Java | software.amazon.awscdk.services.glue.CfnCatalog.DataLakeAccessPropertiesProperty |
Python | aws_cdk.aws_glue.CfnCatalog.DataLakeAccessPropertiesProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnCatalog » DataLakeAccessPropertiesProperty |
Data lake access properties for the catalog.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const dataLakeAccessPropertiesProperty: glue.CfnCatalog.DataLakeAccessPropertiesProperty = {
allowFullTableExternalDataAccess: 'allowFullTableExternalDataAccess',
catalogType: 'catalogType',
dataLakeAccess: false,
dataTransferRole: 'dataTransferRole',
kmsKey: 'kmsKey',
managedWorkgroupName: 'managedWorkgroupName',
managedWorkgroupStatus: 'managedWorkgroupStatus',
redshiftDatabaseName: 'redshiftDatabaseName',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | string | Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation. |
| catalog | string | Specifies a federated catalog type for the native catalog resource. |
| data | boolean | IResolvable | 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. |
| data | string | A role that will be assumed by Glue for transferring data into/out of the staging bucket during a query. |
| kms | string | An encryption key that will be used for the staging bucket that will be created along with the catalog. |
| managed | string | The name of the managed workgroup associated with the catalog. |
| managed | string | The status of the managed workgroup. |
| redshift | string | The name of the Redshift database. |
allowFullTableExternalDataAccess?
Type:
string
(optional)
Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation.
catalogType?
Type:
string
(optional)
Specifies a federated catalog type for the native catalog resource.
dataLakeAccess?
Type:
boolean | IResolvable
(optional)
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.
dataTransferRole?
Type:
string
(optional)
A role that will be assumed by Glue for transferring data into/out of the staging bucket during a query.
kmsKey?
Type:
string
(optional)
An encryption key that will be used for the staging bucket that will be created along with the catalog.
managedWorkgroupName?
Type:
string
(optional)
The name of the managed workgroup associated with the catalog.
managedWorkgroupStatus?
Type:
string
(optional)
The status of the managed workgroup.
redshiftDatabaseName?
Type:
string
(optional)
The name of the Redshift database.

.NET
Go
Java
Python
TypeScript