Module Values.UpdateIngestConfigurationRequestSource

Updates a specified IngestConfiguration. Only the stage ARN attached to the IngestConfiguration can be updated. An IngestConfiguration that is active cannot be updated.

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

    ARN of the IngestConfiguration, for which the related stage ARN needs to be updated.

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

    Stage ARN that needs to be updated.

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

    Indicates whether redundant ingest is enabled for the ingest configuration. Default: false.

    *)
}
Sourceval context_ : string
Sourceval make : ?stageArn:??? -> ?redundantIngest:??? -> arn:IngestConfigurationArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RedundantIngest.t | `String of IngestConfigurationArn.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