Module Values.CreateChannelInputSource

Creates a channel in an AWS re:Post Private private re:Post.

Sourcetype nonrec t = {
  1. spaceId : SpaceId.t;
    (*

    The unique ID of the private re:Post.

    *)
  2. channelName : ChannelName.t;
    (*

    The name for the channel. This must be unique per private re:Post.

    *)
  3. channelDescription : ChannelDescription.t option;
    (*

    A description for the channel. This is used only to help you identify this channel.

    *)
}
Sourceval context_ : string
Sourceval make : ?channelDescription:??? -> spaceId:SpaceId.t -> channelName:ChannelName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SpaceId.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