Show / Hide Table of Contents

Class TopicSubscriptionArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TopicSubscriptionArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AliCloud.Mns
Assembly: Pulumi.AliCloud.dll
Syntax
public sealed class TopicSubscriptionArgs : ResourceArgs

Constructors

View Source

TopicSubscriptionArgs()

Declaration
public TopicSubscriptionArgs()

Properties

View Source

Endpoint

The endpoint has three format. Available values format:

  • HTTP Format: http://xxx.com/xxx
  • Queue Format: acs:mns:{REGION}:{AccountID}:queues/{QueueName}
  • Email Format: mail:directmail:{MailAddress}
Declaration
public Input<string> Endpoint { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FilterTag

The length should be shorter than 16.

Declaration
public Input<string> FilterTag { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

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 256 characters.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NotifyContentFormat

The NotifyContentFormat attribute of Subscription. This attribute specifies the content format of the messages pushed to users. The valid values: 'SIMPLIFIED', 'XML' and 'JSON'. Default to 'SIMPLIFIED'.

Declaration
public Input<string> NotifyContentFormat { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NotifyStrategy

The NotifyStrategy attribute of Subscription. This attribute specifies the retry strategy when message sending fails. the attribute has two value EXPONENTIAL_DECAY_RETR or BACKOFF_RETRY. Default value to BACKOFF_RETRY .

Declaration
public Input<string> NotifyStrategy { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TopicName

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 256 characters.

Declaration
public Input<string> TopicName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.