alicloud.message.ServiceSubscription
Explore with Pulumi AI
Provides a Message Service Subscription resource.
For information about Message Service Subscription and how to use it, see What is Subscription.
NOTE: Available since v1.188.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.message.ServiceTopic("default", {
topicName: name,
maxMessageSize: 16888,
enableLogging: true,
});
const defaultServiceSubscription = new alicloud.message.ServiceSubscription("default", {
topicName: _default.topicName,
subscriptionName: name,
endpoint: "http://example.com",
pushType: "http",
filterTag: name,
notifyContentFormat: "XML",
notifyStrategy: "BACKOFF_RETRY",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.message.ServiceTopic("default",
topic_name=name,
max_message_size=16888,
enable_logging=True)
default_service_subscription = alicloud.message.ServiceSubscription("default",
topic_name=default.topic_name,
subscription_name=name,
endpoint="http://example.com",
push_type="http",
filter_tag=name,
notify_content_format="XML",
notify_strategy="BACKOFF_RETRY")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/message"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := message.NewServiceTopic(ctx, "default", &message.ServiceTopicArgs{
TopicName: pulumi.String(name),
MaxMessageSize: pulumi.Int(16888),
EnableLogging: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = message.NewServiceSubscription(ctx, "default", &message.ServiceSubscriptionArgs{
TopicName: _default.TopicName,
SubscriptionName: pulumi.String(name),
Endpoint: pulumi.String("http://example.com"),
PushType: pulumi.String("http"),
FilterTag: pulumi.String(name),
NotifyContentFormat: pulumi.String("XML"),
NotifyStrategy: pulumi.String("BACKOFF_RETRY"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Message.ServiceTopic("default", new()
{
TopicName = name,
MaxMessageSize = 16888,
EnableLogging = true,
});
var defaultServiceSubscription = new AliCloud.Message.ServiceSubscription("default", new()
{
TopicName = @default.TopicName,
SubscriptionName = name,
Endpoint = "http://example.com",
PushType = "http",
FilterTag = name,
NotifyContentFormat = "XML",
NotifyStrategy = "BACKOFF_RETRY",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.message.ServiceTopic;
import com.pulumi.alicloud.message.ServiceTopicArgs;
import com.pulumi.alicloud.message.ServiceSubscription;
import com.pulumi.alicloud.message.ServiceSubscriptionArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new ServiceTopic("default", ServiceTopicArgs.builder()
.topicName(name)
.maxMessageSize(16888)
.enableLogging(true)
.build());
var defaultServiceSubscription = new ServiceSubscription("defaultServiceSubscription", ServiceSubscriptionArgs.builder()
.topicName(default_.topicName())
.subscriptionName(name)
.endpoint("http://example.com")
.pushType("http")
.filterTag(name)
.notifyContentFormat("XML")
.notifyStrategy("BACKOFF_RETRY")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:message:ServiceTopic
properties:
topicName: ${name}
maxMessageSize: 16888
enableLogging: true
defaultServiceSubscription:
type: alicloud:message:ServiceSubscription
name: default
properties:
topicName: ${default.topicName}
subscriptionName: ${name}
endpoint: http://example.com
pushType: http
filterTag: ${name}
notifyContentFormat: XML
notifyStrategy: BACKOFF_RETRY
Create ServiceSubscription Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceSubscription(name: string, args: ServiceSubscriptionArgs, opts?: CustomResourceOptions);
@overload
def ServiceSubscription(resource_name: str,
args: ServiceSubscriptionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceSubscription(resource_name: str,
opts: Optional[ResourceOptions] = None,
endpoint: Optional[str] = None,
push_type: Optional[str] = None,
subscription_name: Optional[str] = None,
topic_name: Optional[str] = None,
dlq_policy: Optional[ServiceSubscriptionDlqPolicyArgs] = None,
filter_tag: Optional[str] = None,
notify_content_format: Optional[str] = None,
notify_strategy: Optional[str] = None)
func NewServiceSubscription(ctx *Context, name string, args ServiceSubscriptionArgs, opts ...ResourceOption) (*ServiceSubscription, error)
public ServiceSubscription(string name, ServiceSubscriptionArgs args, CustomResourceOptions? opts = null)
public ServiceSubscription(String name, ServiceSubscriptionArgs args)
public ServiceSubscription(String name, ServiceSubscriptionArgs args, CustomResourceOptions options)
type: alicloud:message:ServiceSubscription
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 ServiceSubscriptionArgs
- 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 ServiceSubscriptionArgs
- 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 ServiceSubscriptionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceSubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceSubscriptionArgs
- 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 serviceSubscriptionResource = new AliCloud.Message.ServiceSubscription("serviceSubscriptionResource", new()
{
Endpoint = "string",
PushType = "string",
SubscriptionName = "string",
TopicName = "string",
DlqPolicy = new AliCloud.Message.Inputs.ServiceSubscriptionDlqPolicyArgs
{
DeadLetterTargetQueue = "string",
Enabled = false,
},
FilterTag = "string",
NotifyContentFormat = "string",
NotifyStrategy = "string",
});
example, err := message.NewServiceSubscription(ctx, "serviceSubscriptionResource", &message.ServiceSubscriptionArgs{
Endpoint: pulumi.String("string"),
PushType: pulumi.String("string"),
SubscriptionName: pulumi.String("string"),
TopicName: pulumi.String("string"),
DlqPolicy: &message.ServiceSubscriptionDlqPolicyArgs{
DeadLetterTargetQueue: pulumi.String("string"),
Enabled: pulumi.Bool(false),
},
FilterTag: pulumi.String("string"),
NotifyContentFormat: pulumi.String("string"),
NotifyStrategy: pulumi.String("string"),
})
var serviceSubscriptionResource = new ServiceSubscription("serviceSubscriptionResource", ServiceSubscriptionArgs.builder()
.endpoint("string")
.pushType("string")
.subscriptionName("string")
.topicName("string")
.dlqPolicy(ServiceSubscriptionDlqPolicyArgs.builder()
.deadLetterTargetQueue("string")
.enabled(false)
.build())
.filterTag("string")
.notifyContentFormat("string")
.notifyStrategy("string")
.build());
service_subscription_resource = alicloud.message.ServiceSubscription("serviceSubscriptionResource",
endpoint="string",
push_type="string",
subscription_name="string",
topic_name="string",
dlq_policy={
"dead_letter_target_queue": "string",
"enabled": False,
},
filter_tag="string",
notify_content_format="string",
notify_strategy="string")
const serviceSubscriptionResource = new alicloud.message.ServiceSubscription("serviceSubscriptionResource", {
endpoint: "string",
pushType: "string",
subscriptionName: "string",
topicName: "string",
dlqPolicy: {
deadLetterTargetQueue: "string",
enabled: false,
},
filterTag: "string",
notifyContentFormat: "string",
notifyStrategy: "string",
});
type: alicloud:message:ServiceSubscription
properties:
dlqPolicy:
deadLetterTargetQueue: string
enabled: false
endpoint: string
filterTag: string
notifyContentFormat: string
notifyStrategy: string
pushType: string
subscriptionName: string
topicName: string
ServiceSubscription 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 ServiceSubscription resource accepts the following input properties:
- Endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- Push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - Subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Dlq
Policy Pulumi.Ali Cloud. Message. Inputs. Service Subscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - Filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- Notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - Notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- Endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- Push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - Subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Dlq
Policy ServiceSubscription Dlq Policy Args - The dead-letter queue policy. See
dlq_policy
below. - Filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- Notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - Notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- endpoint String
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- push
Type String - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name String - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name String - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- dlq
Policy ServiceSubscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - filter
Tag String - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content StringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy String - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- dlq
Policy ServiceSubscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- endpoint str
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- push_
type str - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription_
name str - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic_
name str - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- dlq_
policy ServiceSubscription Dlq Policy Args - The dead-letter queue policy. See
dlq_policy
below. - filter_
tag str - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify_
content_ strformat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify_
strategy str - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- endpoint String
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- push
Type String - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name String - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name String - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- dlq
Policy Property Map - The dead-letter queue policy. See
dlq_policy
below. - filter
Tag String - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content StringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy String - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceSubscription resource produces the following output properties:
- Create
Time int - (Available since v1.244.0) The time when the subscription was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Create
Time int - (Available since v1.244.0) The time when the subscription was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- create
Time Integer - (Available since v1.244.0) The time when the subscription was created.
- id String
- The provider-assigned unique ID for this managed resource.
- create
Time number - (Available since v1.244.0) The time when the subscription was created.
- id string
- The provider-assigned unique ID for this managed resource.
- create_
time int - (Available since v1.244.0) The time when the subscription was created.
- id str
- The provider-assigned unique ID for this managed resource.
- create
Time Number - (Available since v1.244.0) The time when the subscription was created.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceSubscription Resource
Get an existing ServiceSubscription 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?: ServiceSubscriptionState, opts?: CustomResourceOptions): ServiceSubscription
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[int] = None,
dlq_policy: Optional[ServiceSubscriptionDlqPolicyArgs] = None,
endpoint: Optional[str] = None,
filter_tag: Optional[str] = None,
notify_content_format: Optional[str] = None,
notify_strategy: Optional[str] = None,
push_type: Optional[str] = None,
subscription_name: Optional[str] = None,
topic_name: Optional[str] = None) -> ServiceSubscription
func GetServiceSubscription(ctx *Context, name string, id IDInput, state *ServiceSubscriptionState, opts ...ResourceOption) (*ServiceSubscription, error)
public static ServiceSubscription Get(string name, Input<string> id, ServiceSubscriptionState? state, CustomResourceOptions? opts = null)
public static ServiceSubscription get(String name, Output<String> id, ServiceSubscriptionState state, CustomResourceOptions options)
resources: _: type: alicloud:message:ServiceSubscription 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.
- Create
Time int - (Available since v1.244.0) The time when the subscription was created.
- Dlq
Policy Pulumi.Ali Cloud. Message. Inputs. Service Subscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - Endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- Filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- Notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - Notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- Push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - Subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Create
Time int - (Available since v1.244.0) The time when the subscription was created.
- Dlq
Policy ServiceSubscription Dlq Policy Args - The dead-letter queue policy. See
dlq_policy
below. - Endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- Filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- Notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - Notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- Push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - Subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- Topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- create
Time Integer - (Available since v1.244.0) The time when the subscription was created.
- dlq
Policy ServiceSubscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - endpoint String
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- filter
Tag String - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content StringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy String - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- push
Type String - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name String - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name String - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- create
Time number - (Available since v1.244.0) The time when the subscription was created.
- dlq
Policy ServiceSubscription Dlq Policy - The dead-letter queue policy. See
dlq_policy
below. - endpoint string
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- filter
Tag string - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content stringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy string - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- push
Type string - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name string - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name string - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- create_
time int - (Available since v1.244.0) The time when the subscription was created.
- dlq_
policy ServiceSubscription Dlq Policy Args - The dead-letter queue policy. See
dlq_policy
below. - endpoint str
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- filter_
tag str - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify_
content_ strformat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify_
strategy str - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- push_
type str - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription_
name str - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic_
name str - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- create
Time Number - (Available since v1.244.0) The time when the subscription was created.
- dlq
Policy Property Map - The dead-letter queue policy. See
dlq_policy
below. - endpoint String
- The endpoint has three format. Available values format:
HTTP Format
: http://xxx.com/xxxQueue Format
: acs:mns:{REGION}:{AccountID}:queues/{QueueName}Email Format
: mail:directmail:{MailAddress}
- filter
Tag String - The tag that is used to filter messages. Only the messages that have the same tag can be pushed. A tag is a string that can be up to 16 characters in length. By default, no tag is specified to filter messages.
- notify
Content StringFormat - The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. Valid values:
XML
,JSON
andSIMPLIFIED
. Default value:XML
. - notify
Strategy String - The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. Default value:
BACKOFF_RETRY
. Valid values:BACKOFF_RETRY
: retries with a fixed backoff interval.EXPONENTIAL_DECAY_RETRY
: retries with exponential backoff.
- push
Type String - The Push type of Subscription. The Valid values:
http
,queue
,mpush
,alisms
andemail
. - subscription
Name String - Two topics subscription on a single account in the same topic cannot have the same name. A topic subscription name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
- topic
Name String - The topic which The subscription belongs to was named with the name. A topic name must start with an English letter or a digit, and can contain English letters, digits, and hyphens, with the length not exceeding 255 characters.
Supporting Types
ServiceSubscriptionDlqPolicy, ServiceSubscriptionDlqPolicyArgs
- Dead
Letter stringTarget Queue - The queue to which dead-letter messages are delivered.
- Enabled bool
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
- Dead
Letter stringTarget Queue - The queue to which dead-letter messages are delivered.
- Enabled bool
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
- dead
Letter StringTarget Queue - The queue to which dead-letter messages are delivered.
- enabled Boolean
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
- dead
Letter stringTarget Queue - The queue to which dead-letter messages are delivered.
- enabled boolean
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
- dead_
letter_ strtarget_ queue - The queue to which dead-letter messages are delivered.
- enabled bool
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
- dead
Letter StringTarget Queue - The queue to which dead-letter messages are delivered.
- enabled Boolean
- Specifies whether to enable the dead-letter message delivery. Valid values:
true
,false
.
Import
Message Service Subscription can be imported using the id, e.g.
$ pulumi import alicloud:message/serviceSubscription:ServiceSubscription example <topic_name>:<subscription_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.