interface PublicAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.PublicAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_PublicAccessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.PublicAccessProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.PublicAccessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » PublicAccessProperty |
Broker access controls.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const publicAccessProperty: msk.CfnClusterPropsMixin.PublicAccessProperty = {
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | DISABLED means that public access is turned off. |
type?
Type:
string
(optional)
DISABLED means that public access is turned off.
SERVICE_PROVIDED_EIPS means that public access is turned on.

.NET
Go
Java
Python
TypeScript