Interface CfnSchedule.SqsParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSchedule.SqsParametersProperty.Jsii$Proxy
Enclosing class:
CfnSchedule

@Stability(Stable) public static interface CfnSchedule.SqsParametersProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.scheduler.*;
 SqsParametersProperty sqsParametersProperty = SqsParametersProperty.builder()
         .messageGroupId("messageGroupId")
         .build();
 

See Also: