interface ChannelStateInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.ChannelStateInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_ChannelStateInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.ChannelStateInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.ChannelStateInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » ChannelStateInfoProperty |
Includes information about the channel state.
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 channelStateInfoProperty: msk.CfnChannelPropsMixin.ChannelStateInfoProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code? | string | Code for channel state. |
| message? | string | Message for channel state. |
code?
Type:
string
(optional)
Code for channel state.
message?
Type:
string
(optional)
Message for channel state.

.NET
Go
Java
Python
TypeScript