Module Values.IngestConfigurationSummarySource

Summary information about an IngestConfiguration.

Sourcetype nonrec t = {
  1. name : IngestConfigurationName.t option;
    (*

    Ingest name.

    *)
  2. arn : IngestConfigurationArn.t option;
    (*

    Ingest configuration ARN.

    *)
  3. ingestProtocol : IngestProtocol.t option;
    (*

    Type of ingest protocol that the user employs for broadcasting.

    *)
  4. stageArn : IngestConfigurationStageArn.t option;
    (*

    ARN of the stage with which the IngestConfiguration is associated.

    *)
  5. participantId : ParticipantId.t option;
    (*

    ID of the participant within the stage.

    *)
  6. state : IngestConfigurationState.t option;
    (*

    State of the ingest configuration. It is ACTIVE if a publisher currently is publishing to the stage associated with the ingest configuration.

    *)
  7. userId : UserId.t option;
    (*

    Customer-assigned name to help identify the participant using the IngestConfiguration; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.

    *)
  8. redundantIngest : RedundantIngest.t option;
    (*

    Indicates whether redundant ingest is enabled for the ingest configuration.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?ingestProtocol:??? -> ?stageArn:??? -> ?participantId:??? -> ?state:??? -> ?userId:??? -> ?redundantIngest:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RedundantIngest.t | `Enum of string | `String of IngestConfigurationName.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