interface LakeFormationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRContainers.Mixins.CfnSecurityConfigurationPropsMixin.LakeFormationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrcontainers/mixins#CfnSecurityConfigurationPropsMixin_LakeFormationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrcontainers.mixins.CfnSecurityConfigurationPropsMixin.LakeFormationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_emrcontainers.mixins.CfnSecurityConfigurationPropsMixin.LakeFormationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrcontainers » mixins » CfnSecurityConfigurationPropsMixin » 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 { mixins as emrcontainers_mixins } from '@aws-cdk/mixins-preview/aws-emrcontainers';
const lakeFormationConfigurationProperty: emrcontainers_mixins.CfnSecurityConfigurationPropsMixin.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