interface PipeSourceSqsQueueParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pipes.CfnPipePropsMixin.PipeSourceSqsQueueParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspipes#CfnPipePropsMixin_PipeSourceSqsQueueParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pipes.CfnPipePropsMixin.PipeSourceSqsQueueParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_pipes.CfnPipePropsMixin.PipeSourceSqsQueueParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pipes » CfnPipePropsMixin » PipeSourceSqsQueueParametersProperty |
The parameters for using a Amazon SQS stream 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/cfn-property-mixins';
const pipeSourceSqsQueueParametersProperty: pipes.CfnPipePropsMixin.PipeSourceSqsQueueParametersProperty = {
batchSize: 123,
maximumBatchingWindowInSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | number | The maximum number of records to include in each batch. |
| maximum | number | The maximum length of a time to wait for events. |
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.

.NET
Go
Java
Python
TypeScript