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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeSourceActiveMQBrokerParametersPropertystatic final classAn implementation forCfnPipe.PipeSourceActiveMQBrokerParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCredentials
The credentials needed to access the resource. -
getQueueName
The name of the destination queue to consume. -
getBatchSize
The maximum number of records to include in each batch. -
getMaximumBatchingWindowInSeconds
The maximum length of a time to wait for events. -
builder
-