Struct aws_sdk_pipes::types::PipeSourceParameters
source · #[non_exhaustive]pub struct PipeSourceParameters {
pub filter_criteria: Option<FilterCriteria>,
pub kinesis_stream_parameters: Option<PipeSourceKinesisStreamParameters>,
pub dynamo_db_stream_parameters: Option<PipeSourceDynamoDbStreamParameters>,
pub sqs_queue_parameters: Option<PipeSourceSqsQueueParameters>,
pub active_mq_broker_parameters: Option<PipeSourceActiveMqBrokerParameters>,
pub rabbit_mq_broker_parameters: Option<PipeSourceRabbitMqBrokerParameters>,
pub managed_streaming_kafka_parameters: Option<PipeSourceManagedStreamingKafkaParameters>,
pub self_managed_kafka_parameters: Option<PipeSourceSelfManagedKafkaParameters>,
}
Expand description
The parameters required to set up a source for your pipe.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.filter_criteria: Option<FilterCriteria>
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.
kinesis_stream_parameters: Option<PipeSourceKinesisStreamParameters>
The parameters for using a Kinesis stream as a source.
dynamo_db_stream_parameters: Option<PipeSourceDynamoDbStreamParameters>
The parameters for using a DynamoDB stream as a source.
sqs_queue_parameters: Option<PipeSourceSqsQueueParameters>
The parameters for using a Amazon SQS stream as a source.
active_mq_broker_parameters: Option<PipeSourceActiveMqBrokerParameters>
The parameters for using an Active MQ broker as a source.
rabbit_mq_broker_parameters: Option<PipeSourceRabbitMqBrokerParameters>
The parameters for using a Rabbit MQ broker as a source.
managed_streaming_kafka_parameters: Option<PipeSourceManagedStreamingKafkaParameters>
The parameters for using an MSK stream as a source.
self_managed_kafka_parameters: Option<PipeSourceSelfManagedKafkaParameters>
The parameters for using a self-managed Apache Kafka stream as a source.
Implementations§
source§impl PipeSourceParameters
impl PipeSourceParameters
sourcepub fn filter_criteria(&self) -> Option<&FilterCriteria>
pub fn filter_criteria(&self) -> Option<&FilterCriteria>
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.
sourcepub fn kinesis_stream_parameters(
&self
) -> Option<&PipeSourceKinesisStreamParameters>
pub fn kinesis_stream_parameters( &self ) -> Option<&PipeSourceKinesisStreamParameters>
The parameters for using a Kinesis stream as a source.
sourcepub fn dynamo_db_stream_parameters(
&self
) -> Option<&PipeSourceDynamoDbStreamParameters>
pub fn dynamo_db_stream_parameters( &self ) -> Option<&PipeSourceDynamoDbStreamParameters>
The parameters for using a DynamoDB stream as a source.
sourcepub fn sqs_queue_parameters(&self) -> Option<&PipeSourceSqsQueueParameters>
pub fn sqs_queue_parameters(&self) -> Option<&PipeSourceSqsQueueParameters>
The parameters for using a Amazon SQS stream as a source.
sourcepub fn active_mq_broker_parameters(
&self
) -> Option<&PipeSourceActiveMqBrokerParameters>
pub fn active_mq_broker_parameters( &self ) -> Option<&PipeSourceActiveMqBrokerParameters>
The parameters for using an Active MQ broker as a source.
sourcepub fn rabbit_mq_broker_parameters(
&self
) -> Option<&PipeSourceRabbitMqBrokerParameters>
pub fn rabbit_mq_broker_parameters( &self ) -> Option<&PipeSourceRabbitMqBrokerParameters>
The parameters for using a Rabbit MQ broker as a source.
sourcepub fn managed_streaming_kafka_parameters(
&self
) -> Option<&PipeSourceManagedStreamingKafkaParameters>
pub fn managed_streaming_kafka_parameters( &self ) -> Option<&PipeSourceManagedStreamingKafkaParameters>
The parameters for using an MSK stream as a source.
sourcepub fn self_managed_kafka_parameters(
&self
) -> Option<&PipeSourceSelfManagedKafkaParameters>
pub fn self_managed_kafka_parameters( &self ) -> Option<&PipeSourceSelfManagedKafkaParameters>
The parameters for using a self-managed Apache Kafka stream as a source.
source§impl PipeSourceParameters
impl PipeSourceParameters
sourcepub fn builder() -> PipeSourceParametersBuilder
pub fn builder() -> PipeSourceParametersBuilder
Creates a new builder-style object to manufacture PipeSourceParameters
.
Trait Implementations§
source§impl Clone for PipeSourceParameters
impl Clone for PipeSourceParameters
source§fn clone(&self) -> PipeSourceParameters
fn clone(&self) -> PipeSourceParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipeSourceParameters
impl Debug for PipeSourceParameters
source§impl PartialEq for PipeSourceParameters
impl PartialEq for PipeSourceParameters
source§fn eq(&self, other: &PipeSourceParameters) -> bool
fn eq(&self, other: &PipeSourceParameters) -> bool
self
and other
values to be equal, and is used
by ==
.