interface PipeTargetSqsQueueParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.PipeTargetSqsQueueParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_PipeTargetSqsQueueParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.PipeTargetSqsQueueParametersProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.PipeTargetSqsQueueParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » PipeTargetSqsQueueParametersProperty |
The parameters for using a Amazon SQS stream as a target.
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 pipeTargetSqsQueueParametersProperty: pipes_mixins.CfnPipePropsMixin.PipeTargetSqsQueueParametersProperty = {
messageDeduplicationId: 'messageDeduplicationId',
messageGroupId: 'messageGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| message | string | This parameter applies only to FIFO (first-in-first-out) queues. |
| message | string | The FIFO message group ID to use as the target. |
messageDeduplicationId?
Type:
string
(optional)
This parameter applies only to FIFO (first-in-first-out) queues.
The token used for deduplication of sent messages.
messageGroupId?
Type:
string
(optional)
The FIFO message group ID to use as the target.

.NET
Go
Java
Python
TypeScript