Interface CfnSignalingChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSignalingChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:58.379Z")
@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();
-
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 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 a signaling channel retains undelivered messages before they are discarded. -
getName
A name for the signaling channel that you are creating.It must be unique for each AWS account and AWS Region .
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
getType
A type of the signaling channel that you are creating.Currently,
SINGLE_MASTERis the only supported channel type. -
builder
- Returns:
- a
CfnSignalingChannelProps.BuilderofCfnSignalingChannelProps
-