interface ConfigurationInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.ConfigurationInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_ConfigurationInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.ConfigurationInfoProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.ConfigurationInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const configurationInfoProperty: msk_mixins.CfnClusterPropsMixin.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
(optional)
ARN of the configuration to use.
revision?
Type:
number
(optional)
The revision of the configuration to use.

.NET
Go
Java
Python
TypeScript