interface CfnSignalingChannelProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisVideo.CfnSignalingChannelProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisvideo#CfnSignalingChannelProps |
![]() | software.amazon.awscdk.services.kinesisvideo.CfnSignalingChannelProps |
![]() | aws_cdk.aws_kinesisvideo.CfnSignalingChannelProps |
![]() | aws-cdk-lib » aws_kinesisvideo » CfnSignalingChannelProps |
Properties for defining a CfnSignalingChannel
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisvideo as kinesisvideo } from 'aws-cdk-lib';
const cfnSignalingChannelProps: kinesisvideo.CfnSignalingChannelProps = {
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.