Values.UpdatePipelineRequestSourceUpdates an OpenSearch Ingestion pipeline. For more information, see Updating Amazon OpenSearch Ingestion pipelines.
type nonrec t = {pipelineName : PipelineName.t;The name of the pipeline to update.
*)minUnits : PipelineUnits.t option;The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
*)maxUnits : PipelineUnits.t option;The maximum pipeline capacity, in Ingestion Compute Units (ICUs)
*)pipelineConfigurationBody : PipelineConfigurationBody.t option;The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n.
*)logPublishingOptions : LogPublishingOptions.t option;Key-value pairs to configure log publishing.
*)bufferOptions : BufferOptions.t option;Key-value pairs to configure persistent buffering for the pipeline.
*)encryptionAtRestOptions : EncryptionAtRestOptions.t option;Key-value pairs to configure encryption for data that is written to a persistent buffer.
*)pipelineRoleArn : PipelineRoleArn.t option;The Amazon Resource Name (ARN) of the IAM role that grants the pipeline permission to access Amazon Web Services resources.
*)}val make :
?minUnits:??? ->
?maxUnits:??? ->
?pipelineConfigurationBody:??? ->
?logPublishingOptions:??? ->
?bufferOptions:??? ->
?encryptionAtRestOptions:??? ->
?pipelineRoleArn:??? ->
pipelineName:PipelineName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of PipelineUnits.t
| `String of PipelineName.t
| `Structure of
(string
* [> `Boolean of Boolean.t
| `String of KmsKeyArn.t
| `Structure of (string * [> `String of LogGroup.t ]) list ])
list ])
list ]