@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.311Z") @Stability(value=Stable) public interface CfnSignalingChannelProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSignalingChannelProps.Builder
A builder for
CfnSignalingChannelProps |
static class |
CfnSignalingChannelProps.Jsii$Proxy
An implementation for
CfnSignalingChannelProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSignalingChannelProps.Builder |
builder() |
default Number |
getMessageTtlSeconds()
The period of time a signaling channel retains undelivered messages before they are discarded.
|
default String |
getName()
A name for the signaling channel that you are creating.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
default String |
getType()
A type of the signaling channel that you are creating.
|
@Stability(value=Stable) @Nullable default Number getMessageTtlSeconds()
@Stability(value=Stable) @Nullable default String getName()
It must be unique for each AWS account and AWS Region .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) @Nullable default String getType()
Currently, SINGLE_MASTER is the only supported channel type.
@Stability(value=Stable) static CfnSignalingChannelProps.Builder builder()
CfnSignalingChannelProps.Builder of CfnSignalingChannelPropsCopyright © 2022. All rights reserved.