interface ChannelStateInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.ChannelStateInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_ChannelStateInfoProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.ChannelStateInfoProperty |
Python | aws_cdk.aws_msk.CfnChannel.ChannelStateInfoProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » 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-lib';
const channelStateInfoProperty: msk.CfnChannel.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