interface ConfigurationInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.ConfigurationInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_ConfigurationInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.ConfigurationInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.ConfigurationInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » 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 { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const configurationInfoProperty: msk.CfnClusterPropsMixin.ConfigurationInfoProperty = {
arn: 'arn',
revision: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | IConfiguration | ARN of the configuration to use. |
| revision? | number | The revision of the configuration to use. |
arn?
Type:
string | IConfiguration
(optional)
ARN of the configuration to use.
revision?
Type:
number
(optional)
The revision of the configuration to use.

.NET
Go
Java
Python
TypeScript