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();
 
  • Method Details

    • getMessageTtlSeconds

      @Stability(Stable) @Nullable default Number getMessageTtlSeconds()
      The period of time a signaling channel retains undelivered messages before they are discarded.
    • getName

      @Stability(Stable) @Nullable default String getName()
      A name for the signaling channel that you are creating.

      It must be unique for each AWS account and AWS Region .

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • getType

      @Stability(Stable) @Nullable default String getType()
      A type of the signaling channel that you are creating.

      Currently, SINGLE_MASTER is the only supported channel type.

    • builder

      @Stability(Stable) static CfnSignalingChannelProps.Builder builder()
      Returns:
      a CfnSignalingChannelProps.Builder of CfnSignalingChannelProps