interface PipeSourceActiveMQBrokerParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_PipeSourceActiveMQBrokerParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » PipeSourceActiveMQBrokerParametersProperty |
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 { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const pipeSourceActiveMQBrokerParametersProperty: pipes_mixins.CfnPipePropsMixin.PipeSourceActiveMQBrokerParametersProperty = {
batchSize: 123,
credentials: {
basicAuth: 'basicAuth',
},
maximumBatchingWindowInSeconds: 123,
queueName: 'queueName',
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | number | The maximum number of records to include in each batch. |
| credentials? | IResolvable | MQBroker | The credentials needed to access the resource. |
| maximum | number | The maximum length of a time to wait for events. |
| queue | string | The name of the destination queue to consume. |
batchSize?
Type:
number
(optional)
The maximum number of records to include in each batch.
credentials?
Type:
IResolvable | MQBroker
(optional)
The credentials needed to access the resource.
maximumBatchingWindowInSeconds?
Type:
number
(optional)
The maximum length of a time to wait for events.
queueName?
Type:
string
(optional)
The name of the destination queue to consume.

.NET
Go
Java
Python
TypeScript