interface SqsParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.SqsParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_SqsParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.SqsParametersProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.SqsParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » SqsParametersProperty |
The templated target type for the Amazon SQS SendMessage API operation. Contains the message group ID to use when the target is a FIFO queue. If you specify an Amazon SQS FIFO queue as a target, the queue must have content-based deduplication enabled. For more information, see Using the Amazon SQS message deduplication ID in the Amazon SQS Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const sqsParametersProperty: scheduler_mixins.CfnSchedulePropsMixin.SqsParametersProperty = {
messageGroupId: 'messageGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| message | string | The FIFO message group ID to use as the target. |
messageGroupId?
Type:
string
(optional)
The FIFO message group ID to use as the target.

.NET
Go
Java
Python
TypeScript