Module Values.CreateSignalingChannelInputSource

Creates a signaling channel. CreateSignalingChannel is an asynchronous operation.

Sourcetype nonrec t = {
  1. channelName : ChannelName.t;
    (*

    A name for the signaling channel that you are creating. It must be unique for each Amazon Web Services account and Amazon Web Services Region.

    *)
  2. channelType : ChannelType.t option;
    (*

    A type of the signaling channel that you are creating. Currently, SINGLE_MASTER is the only supported channel type.

    *)
  3. singleMasterConfiguration : SingleMasterConfiguration.t option;
    (*

    A structure containing the configuration for the SINGLE_MASTER channel type. The default configuration for the channel message's time to live is 60 seconds (1 minute).

    *)
  4. tags : TagOnCreateList.t option;
    (*

    A set of tags (key-value pairs) that you want to associate with this channel.

    *)
}
Sourceval context_ : string
Sourceval make : ?channelType:??? -> ?singleMasterConfiguration:??? -> ?tags:??? -> channelName:ChannelName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ChannelName.t | `Structure of (string * [> `Integer of MessageTtlSeconds.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t