Interface ICfnSignalingChannelProps
Properties for defining a CfnSignalingChannel
.
Namespace: Amazon.CDK.AWS.KinesisVideo
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSignalingChannelProps
Syntax (vb)
Public Interface ICfnSignalingChannelProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisVideo;
var cfnSignalingChannelProps = new CfnSignalingChannelProps {
MessageTtlSeconds = 123,
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
Type = "type"
};
Synopsis
Properties
Message |
The period of time (in seconds) a signaling channel retains undelivered messages before they are discarded. |
Name | A name for the signaling channel that you are creating. |
Tags | An array of key-value pairs to apply to this resource. |
Type | A type of the signaling channel that you are creating. |
Properties
MessageTtlSeconds
The period of time (in seconds) a signaling channel retains undelivered messages before they are discarded.
virtual Nullable<double> MessageTtlSeconds { get; }
Property Value
System.
Remarks
Use API_UpdateSignalingChannel
to update this value.
Name
A name for the signaling channel that you are creating.
virtual string Name { get; }
Property Value
System.
Remarks
It must be unique for each AWS account and AWS Region .
Tags
An array of key-value pairs to apply to this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn
Remarks
Type
A type of the signaling channel that you are creating.
virtual string Type { get; }
Property Value
System.
Remarks
Currently, SINGLE_MASTER
is the only supported channel type.