interface CfnSignalingChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisVideo.Mixins.CfnSignalingChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisvideo/mixins#CfnSignalingChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.kinesisvideo.mixins.CfnSignalingChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_kinesisvideo.mixins.CfnSignalingChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisvideo » mixins » CfnSignalingChannelMixinProps |
Properties for CfnSignalingChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisvideo_mixins } from '@aws-cdk/mixins-preview/aws-kinesisvideo';
const cfnSignalingChannelMixinProps: kinesisvideo_mixins.CfnSignalingChannelMixinProps = {
messageTtlSeconds: 123,
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| message | number | The period of time (in seconds) a signaling channel retains undelivered messages before they are discarded. |
| name? | string | A name for the signaling channel that you are creating. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| type? | string | A type of the signaling channel that you are creating. |
messageTtlSeconds?
Type:
number
(optional)
The period of time (in seconds) a signaling channel retains undelivered messages before they are discarded.
Use API_UpdateSignalingChannel to update this value.
name?
Type:
string
(optional)
A name for the signaling channel that you are creating.
It must be unique for each AWS account and AWS Region .
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
type?
Type:
string
(optional)
A type of the signaling channel that you are creating.
Currently, SINGLE_MASTER is the only supported channel type.

.NET
Go
Java
Python
TypeScript