interface UnauthenticatedProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.UnauthenticatedProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_UnauthenticatedProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.UnauthenticatedProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.UnauthenticatedProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » UnauthenticatedProperty |
Details for allowing no client authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const unauthenticatedProperty: msk_mixins.CfnClusterPropsMixin.UnauthenticatedProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Unauthenticated is enabled or not. |
enabled?
Type:
boolean | IResolvable
(optional)
Unauthenticated is enabled or not.

.NET
Go
Java
Python
TypeScript