Interface CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPipePropsMixin
@Stability(Stable)
public static interface CfnPipePropsMixin.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.cfnpropertymixins.services.pipes.*;
PipeSourceActiveMQBrokerParametersProperty pipeSourceActiveMQBrokerParametersProperty = PipeSourceActiveMQBrokerParametersProperty.builder()
.batchSize(123)
.credentials(MQBrokerAccessCredentialsProperty.builder()
.basicAuth("basicAuth")
.build())
.maximumBatchingWindowInSeconds(123)
.queueName("queueName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty -
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.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:
-
builder
@Stability(Stable) static CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty.Builder builder()
-