Interface CfnSignalingChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSignalingChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:08.283Z")
@Stability(Stable)
public interface CfnSignalingChannelProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisvideo.*;
CfnSignalingChannelProps cfnSignalingChannelProps = CfnSignalingChannelProps.builder()
.messageTtlSeconds(123)
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSignalingChannelPropsstatic final classAn implementation forCfnSignalingChannelProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe period of time (in seconds) a signaling channel retains undelivered messages before they are discarded.default StringgetName()A name for the signaling channel that you are creating.getTags()An array of key-value pairs to apply to this resource.default StringgetType()A type of the signaling channel that you are creating.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessageTtlSeconds
The period of time (in seconds) a signaling channel retains undelivered messages before they are discarded.Use
API_UpdateSignalingChannelto update this value.- See Also:
-
getName
A name for the signaling channel that you are creating.It must be unique for each AWS account and AWS Region .
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
getType
A type of the signaling channel that you are creating.Currently,
SINGLE_MASTERis the only supported channel type.- See Also:
-
builder
- Returns:
- a
CfnSignalingChannelProps.BuilderofCfnSignalingChannelProps
-