Values.CreateIngestConfigurationRequestSourceCreates a new IngestConfiguration resource, used to specify the ingest protocol for a stage.
type nonrec t = {name : IngestConfigurationName.t option;Optional name that can be specified for the IngestConfiguration being created.
*)stageArn : IngestConfigurationStageArn.t option;ARN of the stage with which the IngestConfiguration is associated.
*)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.
*)attributes : ParticipantAttributes.t option;Application-provided attributes to store in the IngestConfiguration and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
*)ingestProtocol : IngestProtocol.t;Type of ingest protocol that the user employs to broadcast. If this is set to RTMP, insecureIngest must be set to true.
*)insecureIngest : InsecureIngest.t option;Whether the stage allows insecure RTMP ingest. This must be set to true, if ingestProtocol is set to RTMP. Default: false.
*)redundantIngest : RedundantIngest.t option;Indicates whether redundant ingest is enabled for the ingest configuration. Default: false.
*)}val make :
?name:??? ->
?stageArn:??? ->
?userId:??? ->
?attributes:??? ->
?insecureIngest:??? ->
?redundantIngest:??? ->
?tags:??? ->
ingestProtocol:IngestProtocol.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of InsecureIngest.t
| `Enum of string
| `Map of
([> `String of String_.t ] * [> `String of String_.t ]) list
| `String of IngestConfigurationName.t ])
list ]