alicloud.message.ServiceSubscription
Explore with Pulumi AI
Provides a Message Notification Service Subscription resource.
For information about Message Notification 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") || "tf-example";
const _default = new alicloud.message.ServiceTopic("default", {
topicName: name,
maxMessageSize: 12357,
loggingEnabled: true,
});
const defaultServiceSubscription = new alicloud.message.ServiceSubscription("default", {
topicName: _default.topicName,
subscriptionName: name,
endpoint: "http://example.com",
pushType: "http",
filterTag: "tf-example",
notifyContentFormat: "XML",
notifyStrategy: "BACKOFF_RETRY",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
default = alicloud.message.ServiceTopic("default",
topic_name=name,
max_message_size=12357,
logging_enabled=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="tf-example",
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 := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := message.NewServiceTopic(ctx, "default", &message.ServiceTopicArgs{
TopicName: pulumi.String(name),
MaxMessageSize: pulumi.Int(12357),
LoggingEnabled: 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("tf-example"),
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") ?? "tf-example";
var @default = new AliCloud.Message.ServiceTopic("default", new()
{
TopicName = name,
MaxMessageSize = 12357,
LoggingEnabled = true,
});
var defaultServiceSubscription = new AliCloud.Message.ServiceSubscription("default", new()
{
TopicName = @default.TopicName,
SubscriptionName = name,
Endpoint = "http://example.com",
PushType = "http",
FilterTag = "tf-example",
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("tf-example");
var default_ = new ServiceTopic("default", ServiceTopicArgs.builder()
.topicName(name)
.maxMessageSize(12357)
.loggingEnabled(true)
.build());
var defaultServiceSubscription = new ServiceSubscription("defaultServiceSubscription", ServiceSubscriptionArgs.builder()
.topicName(default_.topicName())
.subscriptionName(name)
.endpoint("http://example.com")
.pushType("http")
.filterTag("tf-example")
.notifyContentFormat("XML")
.notifyStrategy("BACKOFF_RETRY")
.build());
}
}
configuration:
name:
type: string
default: tf-example
resources:
default:
type: alicloud:message:ServiceTopic
properties:
topicName: ${name}
maxMessageSize: 12357
loggingEnabled: true
defaultServiceSubscription:
type: alicloud:message:ServiceSubscription
name: default
properties:
topicName: ${default.topicName}
subscriptionName: ${name}
endpoint: http://example.com
pushType: http
filterTag: tf-example
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,
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",
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"),
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")
.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",
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",
filterTag: "string",
notifyContentFormat: "string",
notifyStrategy: "string",
});
type: alicloud:message:ServiceSubscription
properties:
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
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- 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,
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)
Resource lookup is not supported in YAML
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
Import
Message Notification 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.