Interface CfnPipe.PipeSourceRabbitMQBrokerParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.PipeSourceRabbitMQBrokerParametersProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.PipeSourceRabbitMQBrokerParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for using a Rabbit MQ broker as a source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.*;
 PipeSourceRabbitMQBrokerParametersProperty pipeSourceRabbitMQBrokerParametersProperty = PipeSourceRabbitMQBrokerParametersProperty.builder()
         .credentials(MQBrokerAccessCredentialsProperty.builder()
                 .basicAuth("basicAuth")
                 .build())
         .queueName("queueName")
         // the properties below are optional
         .batchSize(123)
         .maximumBatchingWindowInSeconds(123)
         .virtualHost("virtualHost")
         .build();
 

See Also: