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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeSourceRabbitMQBrokerParametersPropertystatic final classAn implementation forCfnPipe.PipeSourceRabbitMQBrokerParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe maximum number of records to include in each batch.The credentials needed to access the resource.default NumberThe maximum length of a time to wait for events.The name of the destination queue to consume.default StringThe name of the virtual host associated with the source broker.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. -
getVirtualHost
The name of the virtual host associated with the source broker. -
builder
-