@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:37:01.076Z")
@Deprecated
public interface PublishToTopicProps
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.stepfunctions.*; import software.amazon.awscdk.services.stepfunctions.tasks.*; TaskInput taskInput; PublishToTopicProps publishToTopicProps = PublishToTopicProps.builder() .message(taskInput) // the properties below are optional .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET) .messagePerSubscriptionType(false) .subject("subject") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
PublishToTopicProps.Builder
Deprecated.
|
static class |
PublishToTopicProps.Jsii$Proxy
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static PublishToTopicProps.Builder |
builder()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
TaskInput |
getMessage()
Deprecated.
|
default java.lang.Boolean |
getMessagePerSubscriptionType()
Deprecated.
|
default java.lang.String |
getSubject()
Deprecated.
|
@Deprecated TaskInput getMessage()
@Deprecated default ServiceIntegrationPattern getIntegrationPattern()
The valid value is either FIRE_AND_FORGET or WAIT_FOR_TASK_TOKEN.
Default: FIRE_AND_FORGET
@Deprecated default java.lang.Boolean getMessagePerSubscriptionType()
If this is set to true, message must be a JSON object with a "default" key and a key for every subscription type (such as "sqs", "email", etc.) The values are strings representing the messages being sent to every subscription type.
Default: false
@Deprecated default java.lang.String getSubject()
Also included, if present, in the standard JSON messages delivered to other endpoints.
Default: - No subject
@Deprecated static PublishToTopicProps.Builder builder()
PublishToTopicProps.Builder
of PublishToTopicProps