interface ConfigurationInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnCluster.ConfigurationInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_ConfigurationInfoProperty |
Java | software.amazon.awscdk.services.msk.CfnCluster.ConfigurationInfoProperty |
Python | aws_cdk.aws_msk.CfnCluster.ConfigurationInfoProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnCluster » ConfigurationInfoProperty |
Specifies the configuration to use for the brokers.
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-lib';
const configurationInfoProperty: msk.CfnCluster.ConfigurationInfoProperty = {
arn: 'arn',
revision: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| arn | string | ARN of the configuration to use. |
| revision | number | The revision of the configuration to use. |
arn
Type:
string
ARN of the configuration to use.
revision
Type:
number
The revision of the configuration to use.

.NET
Go
Java
Python
TypeScript