@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.311Z") @Stability(value=Stable) public class CfnSignalingChannel extends CfnResource implements IInspectable
Specifies a signaling channel.
CreateSignalingChannel is an asynchronous operation.
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.*;
CfnSignalingChannel cfnSignalingChannel = CfnSignalingChannel.Builder.create(this, "MyCfnSignalingChannel")
.messageTtlSeconds(123)
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnSignalingChannel.Builder
A fluent builder for
CfnSignalingChannel. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnSignalingChannel(software.constructs.Construct scope,
String id)
Create a new `AWS::KinesisVideo::SignalingChannel`.
|
|
CfnSignalingChannel(software.constructs.Construct scope,
String id,
CfnSignalingChannelProps props)
Create a new `AWS::KinesisVideo::SignalingChannel`.
|
protected |
CfnSignalingChannel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnSignalingChannel(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn()
The Amazon Resource Name (ARN) of the signaling channel.
|
protected Map<String,Object> |
getCfnProperties() |
Number |
getMessageTtlSeconds()
The period of time a signaling channel retains undelivered messages before they are discarded.
|
String |
getName()
A name for the signaling channel that you are creating.
|
TagManager |
getTags()
An array of key-value pairs to apply to this resource.
|
String |
getType()
A type of the signaling channel that you are creating.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setMessageTtlSeconds(Number value)
The period of time a signaling channel retains undelivered messages before they are discarded.
|
void |
setName(String value)
A name for the signaling channel that you are creating.
|
void |
setType(String value)
A type of the signaling channel that you are creating.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnSignalingChannel(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnSignalingChannel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnSignalingChannel(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@Nullable
CfnSignalingChannelProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties.@Stability(value=Stable)
public CfnSignalingChannel(@NotNull
software.constructs.Construct scope,
@NotNull
String id)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
For more information, see Tag .
@Stability(value=Stable) @Nullable public Number getMessageTtlSeconds()
@Stability(value=Stable)
public void setMessageTtlSeconds(@Nullable
Number value)
@Stability(value=Stable) @Nullable public String getName()
It must be unique for each AWS account and AWS Region .
@Stability(value=Stable)
public void setName(@Nullable
String value)
It must be unique for each AWS account and AWS Region .
@Stability(value=Stable) @Nullable public String getType()
Currently, SINGLE_MASTER is the only supported channel type.
@Stability(value=Stable)
public void setType(@Nullable
String value)
Currently, SINGLE_MASTER is the only supported channel type.
Copyright © 2022. All rights reserved.