aws-cdk-lib.aws_pipes.CfnPipe.PipeSourceActiveMQBrokerParametersProperty

interface PipeSourceActiveMQBrokerParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Pipes.CfnPipe.PipeSourceActiveMQBrokerParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspipes#CfnPipe_PipeSourceActiveMQBrokerParametersProperty
Javasoftware.amazon.awscdk.services.pipes.CfnPipe.PipeSourceActiveMQBrokerParametersProperty
Pythonaws_cdk.aws_pipes.CfnPipe.PipeSourceActiveMQBrokerParametersProperty
TypeScript aws-cdk-lib » aws_pipes » CfnPipe » 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 { aws_pipes as pipes } from 'aws-cdk-lib';
const pipeSourceActiveMQBrokerParametersProperty: pipes.CfnPipe.PipeSourceActiveMQBrokerParametersProperty = {
  credentials: {
    basicAuth: 'basicAuth',
  },
  queueName: 'queueName',

  // the properties below are optional
  batchSize: 123,
  maximumBatchingWindowInSeconds: 123,
};

Properties

NameTypeDescription
credentialsIResolvable | MQBrokerAccessCredentialsPropertyThe credentials needed to access the resource.
queueNamestringThe name of the destination queue to consume.
batchSize?numberThe maximum number of records to include in each batch.
maximumBatchingWindowInSeconds?numberThe maximum length of a time to wait for events.

credentials

Type: IResolvable | MQBrokerAccessCredentialsProperty

The credentials needed to access the resource.


queueName

Type: string

The name of the destination queue to consume.


batchSize?

Type: number (optional)

The maximum number of records to include in each batch.


maximumBatchingWindowInSeconds?

Type: number (optional)

The maximum length of a time to wait for events.