Module Values.PipelineSource

Information about an existing OpenSearch Ingestion pipeline.

Sourcetype nonrec t = {
  1. pipelineName : String_.t option;
    (*

    The name of the pipeline.

    *)
  2. pipelineArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline.

    *)
  3. minUnits : Integer.t option;
    (*

    The minimum pipeline capacity, in Ingestion Compute Units (ICUs).

    *)
  4. maxUnits : Integer.t option;
    (*

    The maximum pipeline capacity, in Ingestion Compute Units (ICUs).

    *)
  5. status : PipelineStatus.t option;
    (*

    The current status of the pipeline.

    *)
  6. statusReason : PipelineStatusReason.t option;
    (*

    The reason for the current status of the pipeline.

    *)
  7. pipelineConfigurationBody : String_.t option;
    (*

    The Data Prepper pipeline configuration in YAML format.

    *)
  8. createdAt : Timestamp.t option;
    (*

    The date and time when the pipeline was created.

    *)
  9. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time when the pipeline was last updated.

    *)
  10. ingestEndpointUrls : IngestEndpointUrlsList.t option;
    (*

    The ingestion endpoints for the pipeline, which you can send data to.

    *)
  11. logPublishingOptions : LogPublishingOptions.t option;
    (*

    Key-value pairs that represent log publishing settings.

    *)
  12. vpcEndpoints : VpcEndpointsList.t option;
    (*

    The VPC interface endpoints that have access to the pipeline.

    *)
  13. bufferOptions : BufferOptions.t option;
  14. encryptionAtRestOptions : EncryptionAtRestOptions.t option;
  15. vpcEndpointService : String_.t option;
    (*

    The VPC endpoint service name for the pipeline.

    *)
  16. serviceVpcEndpoints : ServiceVpcEndpointsList.t option;
    (*

    A list of VPC endpoints that OpenSearch Ingestion has created to other Amazon Web Services services.

    *)
  17. destinations : PipelineDestinationList.t option;
    (*

    Destinations to which the pipeline writes data.

    *)
  18. tags : TagList.t option;
    (*

    A list of tags associated with the given pipeline.

    *)
  19. pipelineRoleArn : PipelineRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the pipeline uses to access AWS resources.

    *)
}
Sourceval make : ?pipelineName:??? -> ?pipelineArn:??? -> ?minUnits:??? -> ?maxUnits:??? -> ?status:??? -> ?statusReason:??? -> ?pipelineConfigurationBody:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?ingestEndpointUrls:??? -> ?logPublishingOptions:??? -> ?vpcEndpoints:??? -> ?bufferOptions:??? -> ?encryptionAtRestOptions:??? -> ?vpcEndpointService:??? -> ?serviceVpcEndpoints:??? -> ?destinations:??? -> ?tags:??? -> ?pipelineRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of SubnetId.t ] list | `Structure of (string * [> `Boolean of Boolean.t | `String of CidrBlock.t ]) list ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `String of LogGroup.t ]) list ]) list | `Timestamp of Timestamp.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