Interface CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPipePropsMixin
@Stability(Stable)
public static interface CfnPipePropsMixin.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.cfnpropertymixins.services.pipes.*;
PipeSourceRabbitMQBrokerParametersProperty pipeSourceRabbitMQBrokerParametersProperty = PipeSourceRabbitMQBrokerParametersProperty.builder()
.batchSize(123)
.credentials(MQBrokerAccessCredentialsProperty.builder()
.basicAuth("basicAuth")
.build())
.maximumBatchingWindowInSeconds(123)
.queueName("queueName")
.virtualHost("virtualHost")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe maximum number of records to include in each batch.default ObjectThe credentials needed to access the resource.default NumberThe maximum length of a time to wait for events.default StringThe 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
-
getBatchSize
The maximum number of records to include in each batch.- See Also:
-
getCredentials
The credentials needed to access the resource.Returns union: either
IResolvableorCfnPipePropsMixin.MQBrokerAccessCredentialsProperty- See Also:
-
getMaximumBatchingWindowInSeconds
The maximum length of a time to wait for events.- See Also:
-
getQueueName
The name of the destination queue to consume.- See Also:
-
getVirtualHost
The name of the virtual host associated with the source broker.- See Also:
-
builder
@Stability(Stable) static CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty.Builder builder()
-