commercetools.Subscription
Explore with Pulumi AI
Subscriptions allow you to be notified of new messages or changes via a Message Queue of your choice. Subscriptions are used to trigger an asynchronous background process in response to an event on the commercetools platform. Common use cases include sending an Order Confirmation Email, charging a Credit Card after the delivery has been made, or synchronizing customer accounts to a Customer Relationship Management (CRM) system.
See also the Subscriptions API Documentation
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as commercetools from "@pulumi/commercetools";
const my_sqs_subscription = new commercetools.Subscription("my-sqs-subscription", {
key: "my-sqs-subscription-key",
destinations: [{
type: "SQS",
queueUrl: aws_sqs_queue["your-queue"].id,
accessKey: aws_iam_access_key.ct.id,
accessSecret: aws_iam_access_key.ct.secret,
region: "eu-west-1",
}],
changes: [{
resourceTypeIds: ["product"],
}],
messages: [{
resourceTypeId: "product",
types: [
"ProductPublished",
"ProductCreated",
],
}],
});
import pulumi
import pulumi_commercetools as commercetools
my_sqs_subscription = commercetools.Subscription("my-sqs-subscription",
key="my-sqs-subscription-key",
destinations=[{
"type": "SQS",
"queue_url": aws_sqs_queue["your-queue"]["id"],
"access_key": aws_iam_access_key["ct"]["id"],
"access_secret": aws_iam_access_key["ct"]["secret"],
"region": "eu-west-1",
}],
changes=[{
"resource_type_ids": ["product"],
}],
messages=[{
"resource_type_id": "product",
"types": [
"ProductPublished",
"ProductCreated",
],
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/commercetools/commercetools"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := commercetools.NewSubscription(ctx, "my-sqs-subscription", &commercetools.SubscriptionArgs{
Key: pulumi.String("my-sqs-subscription-key"),
Destinations: commercetools.SubscriptionDestinationArray{
&commercetools.SubscriptionDestinationArgs{
Type: pulumi.String("SQS"),
QueueUrl: pulumi.Any(aws_sqs_queue.YourQueue.Id),
AccessKey: pulumi.Any(aws_iam_access_key.Ct.Id),
AccessSecret: pulumi.Any(aws_iam_access_key.Ct.Secret),
Region: pulumi.String("eu-west-1"),
},
},
Changes: commercetools.SubscriptionChangeArray{
&commercetools.SubscriptionChangeArgs{
ResourceTypeIds: pulumi.StringArray{
pulumi.String("product"),
},
},
},
Messages: commercetools.SubscriptionMessageArray{
&commercetools.SubscriptionMessageArgs{
ResourceTypeId: pulumi.String("product"),
Types: pulumi.StringArray{
pulumi.String("ProductPublished"),
pulumi.String("ProductCreated"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Commercetools = Pulumi.Commercetools;
return await Deployment.RunAsync(() =>
{
var my_sqs_subscription = new Commercetools.Subscription("my-sqs-subscription", new()
{
Key = "my-sqs-subscription-key",
Destinations = new[]
{
new Commercetools.Inputs.SubscriptionDestinationArgs
{
Type = "SQS",
QueueUrl = aws_sqs_queue.Your_queue.Id,
AccessKey = aws_iam_access_key.Ct.Id,
AccessSecret = aws_iam_access_key.Ct.Secret,
Region = "eu-west-1",
},
},
Changes = new[]
{
new Commercetools.Inputs.SubscriptionChangeArgs
{
ResourceTypeIds = new[]
{
"product",
},
},
},
Messages = new[]
{
new Commercetools.Inputs.SubscriptionMessageArgs
{
ResourceTypeId = "product",
Types = new[]
{
"ProductPublished",
"ProductCreated",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.commercetools.Subscription;
import com.pulumi.commercetools.SubscriptionArgs;
import com.pulumi.commercetools.inputs.SubscriptionDestinationArgs;
import com.pulumi.commercetools.inputs.SubscriptionChangeArgs;
import com.pulumi.commercetools.inputs.SubscriptionMessageArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var my_sqs_subscription = new Subscription("my-sqs-subscription", SubscriptionArgs.builder()
.key("my-sqs-subscription-key")
.destinations(SubscriptionDestinationArgs.builder()
.type("SQS")
.queueUrl(aws_sqs_queue.your-queue().id())
.accessKey(aws_iam_access_key.ct().id())
.accessSecret(aws_iam_access_key.ct().secret())
.region("eu-west-1")
.build())
.changes(SubscriptionChangeArgs.builder()
.resourceTypeIds("product")
.build())
.messages(SubscriptionMessageArgs.builder()
.resourceTypeId("product")
.types(
"ProductPublished",
"ProductCreated")
.build())
.build());
}
}
resources:
my-sqs-subscription:
type: commercetools:Subscription
properties:
key: my-sqs-subscription-key
destinations:
- type: SQS
queueUrl: ${aws_sqs_queue"your-queue"[%!s(MISSING)].id}
accessKey: ${aws_iam_access_key.ct.id}
accessSecret: ${aws_iam_access_key.ct.secret}
region: eu-west-1
changes:
- resourceTypeIds:
- product
messages:
- resourceTypeId: product
types:
- ProductPublished
- ProductCreated
Create Subscription Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Subscription(name: string, args?: SubscriptionArgs, opts?: CustomResourceOptions);
@overload
def Subscription(resource_name: str,
args: Optional[SubscriptionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Subscription(resource_name: str,
opts: Optional[ResourceOptions] = None,
changes: Optional[Sequence[SubscriptionChangeArgs]] = None,
destinations: Optional[Sequence[SubscriptionDestinationArgs]] = None,
formats: Optional[Sequence[SubscriptionFormatArgs]] = None,
key: Optional[str] = None,
messages: Optional[Sequence[SubscriptionMessageArgs]] = None)
func NewSubscription(ctx *Context, name string, args *SubscriptionArgs, opts ...ResourceOption) (*Subscription, error)
public Subscription(string name, SubscriptionArgs? args = null, CustomResourceOptions? opts = null)
public Subscription(String name, SubscriptionArgs args)
public Subscription(String name, SubscriptionArgs args, CustomResourceOptions options)
type: commercetools:Subscription
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SubscriptionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SubscriptionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SubscriptionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var subscriptionResource = new Commercetools.Subscription("subscriptionResource", new()
{
Changes = new[]
{
new Commercetools.Inputs.SubscriptionChangeArgs
{
ResourceTypeIds = new[]
{
"string",
},
},
},
Destinations = new[]
{
new Commercetools.Inputs.SubscriptionDestinationArgs
{
Type = "string",
Key = "string",
ProjectId = "string",
Acks = "string",
ApiKey = "string",
ApiSecret = "string",
BootstrapServer = "string",
AccountId = "string",
AccessKey = "string",
ConnectionString = "string",
QueueUrl = "string",
Region = "string",
Topic = "string",
TopicArn = "string",
AccessSecret = "string",
Uri = "string",
},
},
Formats = new[]
{
new Commercetools.Inputs.SubscriptionFormatArgs
{
CloudEventsVersion = "string",
Type = "string",
},
},
Key = "string",
Messages = new[]
{
new Commercetools.Inputs.SubscriptionMessageArgs
{
ResourceTypeId = "string",
Types = new[]
{
"string",
},
},
},
});
example, err := commercetools.NewSubscription(ctx, "subscriptionResource", &commercetools.SubscriptionArgs{
Changes: .SubscriptionChangeArray{
&.SubscriptionChangeArgs{
ResourceTypeIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Destinations: .SubscriptionDestinationArray{
&.SubscriptionDestinationArgs{
Type: pulumi.String("string"),
Key: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Acks: pulumi.String("string"),
ApiKey: pulumi.String("string"),
ApiSecret: pulumi.String("string"),
BootstrapServer: pulumi.String("string"),
AccountId: pulumi.String("string"),
AccessKey: pulumi.String("string"),
ConnectionString: pulumi.String("string"),
QueueUrl: pulumi.String("string"),
Region: pulumi.String("string"),
Topic: pulumi.String("string"),
TopicArn: pulumi.String("string"),
AccessSecret: pulumi.String("string"),
Uri: pulumi.String("string"),
},
},
Formats: .SubscriptionFormatArray{
&.SubscriptionFormatArgs{
CloudEventsVersion: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Key: pulumi.String("string"),
Messages: .SubscriptionMessageArray{
&.SubscriptionMessageArgs{
ResourceTypeId: pulumi.String("string"),
Types: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
var subscriptionResource = new Subscription("subscriptionResource", SubscriptionArgs.builder()
.changes(SubscriptionChangeArgs.builder()
.resourceTypeIds("string")
.build())
.destinations(SubscriptionDestinationArgs.builder()
.type("string")
.key("string")
.projectId("string")
.acks("string")
.apiKey("string")
.apiSecret("string")
.bootstrapServer("string")
.accountId("string")
.accessKey("string")
.connectionString("string")
.queueUrl("string")
.region("string")
.topic("string")
.topicArn("string")
.accessSecret("string")
.uri("string")
.build())
.formats(SubscriptionFormatArgs.builder()
.cloudEventsVersion("string")
.type("string")
.build())
.key("string")
.messages(SubscriptionMessageArgs.builder()
.resourceTypeId("string")
.types("string")
.build())
.build());
subscription_resource = commercetools.Subscription("subscriptionResource",
changes=[{
"resource_type_ids": ["string"],
}],
destinations=[{
"type": "string",
"key": "string",
"project_id": "string",
"acks": "string",
"api_key": "string",
"api_secret": "string",
"bootstrap_server": "string",
"account_id": "string",
"access_key": "string",
"connection_string": "string",
"queue_url": "string",
"region": "string",
"topic": "string",
"topic_arn": "string",
"access_secret": "string",
"uri": "string",
}],
formats=[{
"cloud_events_version": "string",
"type": "string",
}],
key="string",
messages=[{
"resource_type_id": "string",
"types": ["string"],
}])
const subscriptionResource = new commercetools.Subscription("subscriptionResource", {
changes: [{
resourceTypeIds: ["string"],
}],
destinations: [{
type: "string",
key: "string",
projectId: "string",
acks: "string",
apiKey: "string",
apiSecret: "string",
bootstrapServer: "string",
accountId: "string",
accessKey: "string",
connectionString: "string",
queueUrl: "string",
region: "string",
topic: "string",
topicArn: "string",
accessSecret: "string",
uri: "string",
}],
formats: [{
cloudEventsVersion: "string",
type: "string",
}],
key: "string",
messages: [{
resourceTypeId: "string",
types: ["string"],
}],
});
type: commercetools:Subscription
properties:
changes:
- resourceTypeIds:
- string
destinations:
- accessKey: string
accessSecret: string
accountId: string
acks: string
apiKey: string
apiSecret: string
bootstrapServer: string
connectionString: string
key: string
projectId: string
queueUrl: string
region: string
topic: string
topicArn: string
type: string
uri: string
formats:
- cloudEventsVersion: string
type: string
key: string
messages:
- resourceTypeId: string
types:
- string
Subscription Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Subscription resource accepts the following input properties:
- Changes
List<Subscription
Change> - The change notifications subscribed to
- Destinations
List<Subscription
Destination> - Formats
List<Subscription
Format> - The format in which the payload is delivered
- Key string
- Messages
List<Subscription
Message> - The messages subscribed to
- Changes
[]Subscription
Change Args - The change notifications subscribed to
- Destinations
[]Subscription
Destination Args - Formats
[]Subscription
Format Args - The format in which the payload is delivered
- Key string
- Messages
[]Subscription
Message Args - The messages subscribed to
- changes
List<Subscription
Change> - The change notifications subscribed to
- destinations
List<Subscription
Destination> - formats
List<Subscription
Format> - The format in which the payload is delivered
- key String
- messages
List<Subscription
Message> - The messages subscribed to
- changes
Subscription
Change[] - The change notifications subscribed to
- destinations
Subscription
Destination[] - formats
Subscription
Format[] - The format in which the payload is delivered
- key string
- messages
Subscription
Message[] - The messages subscribed to
- changes
Sequence[Subscription
Change Args] - The change notifications subscribed to
- destinations
Sequence[Subscription
Destination Args] - formats
Sequence[Subscription
Format Args] - The format in which the payload is delivered
- key str
- messages
Sequence[Subscription
Message Args] - The messages subscribed to
- changes List<Property Map>
- The change notifications subscribed to
- destinations List<Property Map>
- formats List<Property Map>
- The format in which the payload is delivered
- key String
- messages List<Property Map>
- The messages subscribed to
Outputs
All input properties are implicitly available as output properties. Additionally, the Subscription resource produces the following output properties:
Look up Existing Subscription Resource
Get an existing Subscription resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SubscriptionState, opts?: CustomResourceOptions): Subscription
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
changes: Optional[Sequence[SubscriptionChangeArgs]] = None,
destinations: Optional[Sequence[SubscriptionDestinationArgs]] = None,
formats: Optional[Sequence[SubscriptionFormatArgs]] = None,
key: Optional[str] = None,
messages: Optional[Sequence[SubscriptionMessageArgs]] = None,
version: Optional[float] = None) -> Subscription
func GetSubscription(ctx *Context, name string, id IDInput, state *SubscriptionState, opts ...ResourceOption) (*Subscription, error)
public static Subscription Get(string name, Input<string> id, SubscriptionState? state, CustomResourceOptions? opts = null)
public static Subscription get(String name, Output<String> id, SubscriptionState state, CustomResourceOptions options)
resources: _: type: commercetools:Subscription get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Changes
List<Subscription
Change> - The change notifications subscribed to
- Destinations
List<Subscription
Destination> - Formats
List<Subscription
Format> - The format in which the payload is delivered
- Key string
- Messages
List<Subscription
Message> - The messages subscribed to
- Version double
- Changes
[]Subscription
Change Args - The change notifications subscribed to
- Destinations
[]Subscription
Destination Args - Formats
[]Subscription
Format Args - The format in which the payload is delivered
- Key string
- Messages
[]Subscription
Message Args - The messages subscribed to
- Version float64
- changes
List<Subscription
Change> - The change notifications subscribed to
- destinations
List<Subscription
Destination> - formats
List<Subscription
Format> - The format in which the payload is delivered
- key String
- messages
List<Subscription
Message> - The messages subscribed to
- version Double
- changes
Subscription
Change[] - The change notifications subscribed to
- destinations
Subscription
Destination[] - formats
Subscription
Format[] - The format in which the payload is delivered
- key string
- messages
Subscription
Message[] - The messages subscribed to
- version number
- changes
Sequence[Subscription
Change Args] - The change notifications subscribed to
- destinations
Sequence[Subscription
Destination Args] - formats
Sequence[Subscription
Format Args] - The format in which the payload is delivered
- key str
- messages
Sequence[Subscription
Message Args] - The messages subscribed to
- version float
- changes List<Property Map>
- The change notifications subscribed to
- destinations List<Property Map>
- formats List<Property Map>
- The format in which the payload is delivered
- key String
- messages List<Property Map>
- The messages subscribed to
- version Number
Supporting Types
SubscriptionChange, SubscriptionChangeArgs
- Resource
Type List<string>Ids - Resource Type ID
- Resource
Type []stringIds - Resource Type ID
- resource
Type List<String>Ids - Resource Type ID
- resource
Type string[]Ids - Resource Type ID
- resource_
type_ Sequence[str]ids - Resource Type ID
- resource
Type List<String>Ids - Resource Type ID
SubscriptionDestination, SubscriptionDestinationArgs
- Type string
- The type of the destination. See Destination for more information
- Access
Key string - The access key of the SQS queue, SNS topic or EventBridge topic
- Access
Secret string - The access secret of the SQS queue, SNS topic or EventBridge topic
- Account
Id string - The AWS account ID of the SNS topic or EventBridge topic
- Acks string
- The acks value of the Confluent Cloud topic
- Api
Key string - The API key of the Confluent Cloud topic
- Api
Secret string - The API secret of the Confluent Cloud topic
- Bootstrap
Server string - The bootstrap server of the Confluent Cloud topic
- Connection
String string - The connection string of the Azure Service Bus
- Key string
- The key of the Confluent Cloud topic
- Project
Id string - The project ID of the Google Cloud Pub/Sub
- Queue
Url string - The URL of the SQS queue
- Region string
- The region of the SQS queue, SNS topic or EventBridge topic
- Topic string
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- Topic
Arn string - The ARN of the SNS topic
- Uri string
- The URI of the EventGrid topic
- Type string
- The type of the destination. See Destination for more information
- Access
Key string - The access key of the SQS queue, SNS topic or EventBridge topic
- Access
Secret string - The access secret of the SQS queue, SNS topic or EventBridge topic
- Account
Id string - The AWS account ID of the SNS topic or EventBridge topic
- Acks string
- The acks value of the Confluent Cloud topic
- Api
Key string - The API key of the Confluent Cloud topic
- Api
Secret string - The API secret of the Confluent Cloud topic
- Bootstrap
Server string - The bootstrap server of the Confluent Cloud topic
- Connection
String string - The connection string of the Azure Service Bus
- Key string
- The key of the Confluent Cloud topic
- Project
Id string - The project ID of the Google Cloud Pub/Sub
- Queue
Url string - The URL of the SQS queue
- Region string
- The region of the SQS queue, SNS topic or EventBridge topic
- Topic string
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- Topic
Arn string - The ARN of the SNS topic
- Uri string
- The URI of the EventGrid topic
- type String
- The type of the destination. See Destination for more information
- access
Key String - The access key of the SQS queue, SNS topic or EventBridge topic
- access
Secret String - The access secret of the SQS queue, SNS topic or EventBridge topic
- account
Id String - The AWS account ID of the SNS topic or EventBridge topic
- acks String
- The acks value of the Confluent Cloud topic
- api
Key String - The API key of the Confluent Cloud topic
- api
Secret String - The API secret of the Confluent Cloud topic
- bootstrap
Server String - The bootstrap server of the Confluent Cloud topic
- connection
String String - The connection string of the Azure Service Bus
- key String
- The key of the Confluent Cloud topic
- project
Id String - The project ID of the Google Cloud Pub/Sub
- queue
Url String - The URL of the SQS queue
- region String
- The region of the SQS queue, SNS topic or EventBridge topic
- topic String
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- topic
Arn String - The ARN of the SNS topic
- uri String
- The URI of the EventGrid topic
- type string
- The type of the destination. See Destination for more information
- access
Key string - The access key of the SQS queue, SNS topic or EventBridge topic
- access
Secret string - The access secret of the SQS queue, SNS topic or EventBridge topic
- account
Id string - The AWS account ID of the SNS topic or EventBridge topic
- acks string
- The acks value of the Confluent Cloud topic
- api
Key string - The API key of the Confluent Cloud topic
- api
Secret string - The API secret of the Confluent Cloud topic
- bootstrap
Server string - The bootstrap server of the Confluent Cloud topic
- connection
String string - The connection string of the Azure Service Bus
- key string
- The key of the Confluent Cloud topic
- project
Id string - The project ID of the Google Cloud Pub/Sub
- queue
Url string - The URL of the SQS queue
- region string
- The region of the SQS queue, SNS topic or EventBridge topic
- topic string
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- topic
Arn string - The ARN of the SNS topic
- uri string
- The URI of the EventGrid topic
- type str
- The type of the destination. See Destination for more information
- access_
key str - The access key of the SQS queue, SNS topic or EventBridge topic
- access_
secret str - The access secret of the SQS queue, SNS topic or EventBridge topic
- account_
id str - The AWS account ID of the SNS topic or EventBridge topic
- acks str
- The acks value of the Confluent Cloud topic
- api_
key str - The API key of the Confluent Cloud topic
- api_
secret str - The API secret of the Confluent Cloud topic
- bootstrap_
server str - The bootstrap server of the Confluent Cloud topic
- connection_
string str - The connection string of the Azure Service Bus
- key str
- The key of the Confluent Cloud topic
- project_
id str - The project ID of the Google Cloud Pub/Sub
- queue_
url str - The URL of the SQS queue
- region str
- The region of the SQS queue, SNS topic or EventBridge topic
- topic str
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- topic_
arn str - The ARN of the SNS topic
- uri str
- The URI of the EventGrid topic
- type String
- The type of the destination. See Destination for more information
- access
Key String - The access key of the SQS queue, SNS topic or EventBridge topic
- access
Secret String - The access secret of the SQS queue, SNS topic or EventBridge topic
- account
Id String - The AWS account ID of the SNS topic or EventBridge topic
- acks String
- The acks value of the Confluent Cloud topic
- api
Key String - The API key of the Confluent Cloud topic
- api
Secret String - The API secret of the Confluent Cloud topic
- bootstrap
Server String - The bootstrap server of the Confluent Cloud topic
- connection
String String - The connection string of the Azure Service Bus
- key String
- The key of the Confluent Cloud topic
- project
Id String - The project ID of the Google Cloud Pub/Sub
- queue
Url String - The URL of the SQS queue
- region String
- The region of the SQS queue, SNS topic or EventBridge topic
- topic String
- The topic of the Google Cloud Pub/Sub or Confluent Cloud topic
- topic
Arn String - The ARN of the SNS topic
- uri String
- The URI of the EventGrid topic
SubscriptionFormat, SubscriptionFormatArgs
- Cloud
Events stringVersion - For CloudEvents
- Type string
- Cloud
Events stringVersion - For CloudEvents
- Type string
- cloud
Events StringVersion - For CloudEvents
- type String
- cloud
Events stringVersion - For CloudEvents
- type string
- cloud_
events_ strversion - For CloudEvents
- type str
- cloud
Events StringVersion - For CloudEvents
- type String
SubscriptionMessage, SubscriptionMessageArgs
- Resource
Type stringId - Resource Type ID
- Types List<string>
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
- Resource
Type stringId - Resource Type ID
- Types []string
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
- resource
Type StringId - Resource Type ID
- types List<String>
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
- resource
Type stringId - Resource Type ID
- types string[]
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
- resource_
type_ strid - Resource Type ID
- types Sequence[str]
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
- resource
Type StringId - Resource Type ID
- types List<String>
- types must contain valid message types for this resource, for example for resource type product the message type ProductPublished is valid. If no types of messages are given, the subscription is valid for all messages of this resource
Package Details
- Repository
- commercetools labd/terraform-provider-commercetools
- License
- Notes
- This Pulumi package is based on the
commercetools
Terraform Provider.