Interface CloudSchedulerJobPubsubTarget
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CloudSchedulerJobPubsubTarget.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:18.037Z") @Stability(Stable) public interface CloudSchedulerJobPubsubTarget extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCloudSchedulerJobPubsubTarget.BuilderA builder forCloudSchedulerJobPubsubTargetstatic classCloudSchedulerJobPubsubTarget.Jsii$ProxyAn implementation forCloudSchedulerJobPubsubTarget
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static CloudSchedulerJobPubsubTarget.Builderbuilder()default Map<String,String>getAttributes()Attributes for PubsubMessage.default StringgetData()The message payload for PubsubMessage.StringgetTopicName()The full resource name for the Cloud Pub/Sub topic to which messages will be published when a job is delivered.
-
-
-
Method Detail
-
getTopicName
@Stability(Stable) @NotNull String getTopicName()
The full resource name for the Cloud Pub/Sub topic to which messages will be published when a job is delivered.~>**NOTE:** The topic name must be in the same format as required by PubSub's PublishRequest.name, e.g. 'projects/my-project/topics/my-topic'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/cloud_scheduler_job#topic_name CloudSchedulerJob#topic_name}
-
getAttributes
@Stability(Stable) @Nullable default Map<String,String> getAttributes()
Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/cloud_scheduler_job#attributes CloudSchedulerJob#attributes}
-
getData
@Stability(Stable) @Nullable default String getData()
The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.A base64-encoded string. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/cloud_scheduler_job#data CloudSchedulerJob#data}
-
builder
@Stability(Stable) static CloudSchedulerJobPubsubTarget.Builder builder()
-
-