interface PipeSourceRabbitMQBrokerParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_PipeSourceRabbitMQBrokerParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » PipeSourceRabbitMQBrokerParametersProperty |
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 { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const pipeSourceRabbitMQBrokerParametersProperty: pipes_mixins.CfnPipePropsMixin.PipeSourceRabbitMQBrokerParametersProperty = {
batchSize: 123,
credentials: {
basicAuth: 'basicAuth',
},
maximumBatchingWindowInSeconds: 123,
queueName: 'queueName',
virtualHost: 'virtualHost',
};
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. |
| virtual | string | The name of the virtual host associated with the source broker. |
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.
virtualHost?
Type:
string
(optional)
The name of the virtual host associated with the source broker.

.NET
Go
Java
Python
TypeScript