interface CfnConfigurationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.CfnConfigurationProps |
![]() | software.amazon.awscdk.services.msk.CfnConfigurationProps |
![]() | aws_cdk.aws_msk.CfnConfigurationProps |
![]() | @aws-cdk/aws-msk » CfnConfigurationProps |
Properties for defining a CfnConfiguration
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as msk from '@aws-cdk/aws-msk';
const cfnConfigurationProps: msk.CfnConfigurationProps = {
name: 'name',
serverProperties: 'serverProperties',
// the properties below are optional
description: 'description',
kafkaVersionsList: ['kafkaVersionsList'],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the configuration. |
server | string | Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded. When using the console, the SDK, or the CLI, the contents of server.properties can be in plaintext. |
description? | string | The description of the configuration. |
kafka | string[] | AWS::MSK::Configuration.KafkaVersionsList . |
name
Type:
string
The name of the configuration.
Configuration names are strings that match the regex "^[0-9A-Za-z][0-9A-Za-z-]{0,}$".
serverProperties
Type:
string
Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded. When using the console, the SDK, or the CLI, the contents of server.properties can be in plaintext.
description?
Type:
string
(optional)
The description of the configuration.
kafkaVersionsList?
Type:
string[]
(optional)
AWS::MSK::Configuration.KafkaVersionsList
.