interface SqsParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Scheduler.CfnSchedulePropsMixin.SqsParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscheduler#CfnSchedulePropsMixin_SqsParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.scheduler.CfnSchedulePropsMixin.SqsParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_scheduler.CfnSchedulePropsMixin.SqsParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scheduler » 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 { aws_scheduler as scheduler } from '@aws-cdk/cfn-property-mixins';
const sqsParametersProperty: scheduler.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