Module Values.UpdatePipeSourceParametersSource

The parameters required to set up a source for your pipe.

Sourcetype nonrec t = {
  1. filterCriteria : FilterCriteria.t option;
    (*

    The collection of event patterns used to filter events. To remove a filter, specify a FilterCriteria object with an empty array of Filter objects. For more information, see Events and Event Patterns in the Amazon EventBridge User Guide.

    *)
  2. kinesisStreamParameters : UpdatePipeSourceKinesisStreamParameters.t option;
    (*

    The parameters for using a Kinesis stream as a source.

    *)
  3. dynamoDBStreamParameters : UpdatePipeSourceDynamoDBStreamParameters.t option;
    (*

    The parameters for using a DynamoDB stream as a source.

    *)
  4. sqsQueueParameters : UpdatePipeSourceSqsQueueParameters.t option;
    (*

    The parameters for using a Amazon SQS stream as a source.

    *)
  5. activeMQBrokerParameters : UpdatePipeSourceActiveMQBrokerParameters.t option;
    (*

    The parameters for using an Active MQ broker as a source.

    *)
  6. rabbitMQBrokerParameters : UpdatePipeSourceRabbitMQBrokerParameters.t option;
    (*

    The parameters for using a Rabbit MQ broker as a source.

    *)
  7. managedStreamingKafkaParameters : UpdatePipeSourceManagedStreamingKafkaParameters.t option;
    (*

    The parameters for using an MSK stream as a source.

    *)
  8. selfManagedKafkaParameters : UpdatePipeSourceSelfManagedKafkaParameters.t option;
    (*

    The parameters for using a self-managed Apache Kafka stream as a source. A self managed cluster refers to any Apache Kafka cluster not hosted by Amazon Web Services. This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as Confluent Cloud, CloudKarafka, or Redpanda. For more information, see Apache Kafka streams as a source in the Amazon EventBridge User Guide.

    *)
}
Sourceval make : ?filterCriteria:??? -> ?kinesisStreamParameters:??? -> ?dynamoDBStreamParameters:??? -> ?sqsQueueParameters:??? -> ?activeMQBrokerParameters:??? -> ?rabbitMQBrokerParameters:??? -> ?managedStreamingKafkaParameters:??? -> ?selfManagedKafkaParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of LimitMax10000.t | `List of [> `Structure of (string * [> `String of EventPattern.t ]) list ] list | `String of SecretManagerArn.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of Arn.t ]) list ]) list ]) 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