Module Values.DescribeChannelPlacementGroupResultSource

Contains the response for CreateChannelPlacementGroup, DescribeChannelPlacementGroup, DeleteChannelPlacementGroup, UpdateChannelPlacementGroup

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The ARN of this ChannelPlacementGroup. It is automatically assigned when the ChannelPlacementGroup is created.

    *)
  2. channels : string list option;
    (*

    Used in ListChannelPlacementGroupsResult

    *)
  3. clusterId : string option;
    (*

    The ID of the Cluster that the Node belongs to.

    *)
  4. id : string option;
    (*

    The ID of the ChannelPlacementGroup. Unique in the AWS account. The ID is the resource-id portion of the ARN.

    *)
  5. name : string option;
    (*

    The name that you specified for the ChannelPlacementGroup.

    *)
  6. nodes : string list option;
    (*

    An array with one item, which is the single Node that is associated with the ChannelPlacementGroup.

    *)
  7. state : ChannelPlacementGroupState.t option;
    (*

    The current state of the ChannelPlacementGroup.

    *)
}
Sourceval make : ?arn:??? -> ?channels:??? -> ?clusterId:??? -> ?id:??? -> ?name:??? -> ?nodes:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string ]) 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