Module Values.ChannelInfoSource

A structure that encapsulates a signaling channel's metadata and properties.

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

    The name of the signaling channel.

    *)
  2. channelARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the signaling channel.

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

    The type of the signaling channel.

    *)
  4. channelStatus : Status.t option;
    (*

    Current status of the signaling channel.

    *)
  5. creationTime : Timestamp.t option;
    (*

    The time at which the signaling channel was created.

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

    A structure that contains the configuration for the SINGLE_MASTER channel type.

    *)
  7. version : Version.t option;
    (*

    The current version of the signaling channel.

    *)
}
Sourceval make : ?channelName:??? -> ?channelARN:??? -> ?channelType:??? -> ?channelStatus:??? -> ?creationTime:??? -> ?singleMasterConfiguration:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ChannelName.t | `Structure of (string * [> `Integer of MessageTtlSeconds.t ]) list | `Timestamp of Timestamp.t ]) 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