Interface CfnPipe.PipeSourceActiveMQBrokerParametersProperty

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

@Stability(Stable) public static interface CfnPipe.PipeSourceActiveMQBrokerParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for using an Active 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.*;
 PipeSourceActiveMQBrokerParametersProperty pipeSourceActiveMQBrokerParametersProperty = PipeSourceActiveMQBrokerParametersProperty.builder()
         .credentials(MQBrokerAccessCredentialsProperty.builder()
                 .basicAuth("basicAuth")
                 .build())
         .queueName("queueName")
         // the properties below are optional
         .batchSize(123)
         .maximumBatchingWindowInSeconds(123)
         .build();