interface LakeFormationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnSecurityConfiguration.LakeFormationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnSecurityConfiguration_LakeFormationConfigurationProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnSecurityConfiguration.LakeFormationConfigurationProperty |
Python | aws_cdk.aws_emrcontainers.CfnSecurityConfiguration.LakeFormationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnSecurityConfiguration » LakeFormationConfigurationProperty |
Lake Formation configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emrcontainers as emrcontainers } from 'aws-cdk-lib';
const lakeFormationConfigurationProperty: emrcontainers.CfnSecurityConfiguration.LakeFormationConfigurationProperty = {
authorizedSessionTagValue: 'authorizedSessionTagValue',
queryAccessControlEnabled: false,
queryEngineRoleArn: 'queryEngineRoleArn',
secureNamespaceInfo: {
clusterId: 'clusterId',
namespace: 'namespace',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| authorized | string | The session tag to authorize Lake Formation access. |
| query | boolean | IResolvable | Whether query access control is enabled. |
| query | string | The ARN of the query engine role. |
| secure | IResolvable | Secure | Secure namespace information for Lake Formation. |
authorizedSessionTagValue?
Type:
string
(optional)
The session tag to authorize Lake Formation access.
queryAccessControlEnabled?
Type:
boolean | IResolvable
(optional)
Whether query access control is enabled.
queryEngineRoleArn?
Type:
string
(optional)
The ARN of the query engine role.
secureNamespaceInfo?
Type:
IResolvable | Secure
(optional)
Secure namespace information for Lake Formation.

.NET
Go
Java
Python
TypeScript