interface SecureNamespaceInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnSecurityConfiguration.SecureNamespaceInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnSecurityConfiguration_SecureNamespaceInfoProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnSecurityConfiguration.SecureNamespaceInfoProperty |
Python | aws_cdk.aws_emrcontainers.CfnSecurityConfiguration.SecureNamespaceInfoProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnSecurityConfiguration » SecureNamespaceInfoProperty |
Secure namespace information for Lake Formation.
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 secureNamespaceInfoProperty: emrcontainers.CfnSecurityConfiguration.SecureNamespaceInfoProperty = {
clusterId: 'clusterId',
namespace: 'namespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ID of the cluster. |
| namespace? | string | The namespace. |
clusterId?
Type:
string
(optional)
The ID of the cluster.
namespace?
Type:
string
(optional)
The namespace.

.NET
Go
Java
Python
TypeScript