1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. message
  5. ServiceQueue
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.message.ServiceQueue

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Message Service Queue resource.

    For information about Message Service Queue and how to use it, see What is Queue.

    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.ServiceQueue("default", {
        queueName: name,
        delaySeconds: 2,
        pollingWaitSeconds: 2,
        messageRetentionPeriod: 566,
        maximumMessageSize: 1126,
        visibilityTimeout: 30,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.message.ServiceQueue("default",
        queue_name=name,
        delay_seconds=2,
        polling_wait_seconds=2,
        message_retention_period=566,
        maximum_message_size=1126,
        visibility_timeout=30)
    
    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
    		}
    		_, err := message.NewServiceQueue(ctx, "default", &message.ServiceQueueArgs{
    			QueueName:              pulumi.String(name),
    			DelaySeconds:           pulumi.Int(2),
    			PollingWaitSeconds:     pulumi.Int(2),
    			MessageRetentionPeriod: pulumi.Int(566),
    			MaximumMessageSize:     pulumi.Int(1126),
    			VisibilityTimeout:      pulumi.Int(30),
    		})
    		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.ServiceQueue("default", new()
        {
            QueueName = name,
            DelaySeconds = 2,
            PollingWaitSeconds = 2,
            MessageRetentionPeriod = 566,
            MaximumMessageSize = 1126,
            VisibilityTimeout = 30,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.message.ServiceQueue;
    import com.pulumi.alicloud.message.ServiceQueueArgs;
    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 ServiceQueue("default", ServiceQueueArgs.builder()
                .queueName(name)
                .delaySeconds("2")
                .pollingWaitSeconds("2")
                .messageRetentionPeriod("566")
                .maximumMessageSize("1126")
                .visibilityTimeout("30")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      default:
        type: alicloud:message:ServiceQueue
        properties:
          queueName: ${name}
          delaySeconds: '2'
          pollingWaitSeconds: '2'
          messageRetentionPeriod: '566'
          maximumMessageSize: '1126'
          visibilityTimeout: '30'
    

    Create ServiceQueue Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceQueue(name: string, args: ServiceQueueArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceQueue(resource_name: str,
                     args: ServiceQueueArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceQueue(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     queue_name: Optional[str] = None,
                     delay_seconds: Optional[int] = None,
                     dlq_policy: Optional[ServiceQueueDlqPolicyArgs] = None,
                     logging_enabled: Optional[bool] = None,
                     maximum_message_size: Optional[int] = None,
                     message_retention_period: Optional[int] = None,
                     polling_wait_seconds: Optional[int] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     visibility_timeout: Optional[int] = None)
    func NewServiceQueue(ctx *Context, name string, args ServiceQueueArgs, opts ...ResourceOption) (*ServiceQueue, error)
    public ServiceQueue(string name, ServiceQueueArgs args, CustomResourceOptions? opts = null)
    public ServiceQueue(String name, ServiceQueueArgs args)
    public ServiceQueue(String name, ServiceQueueArgs args, CustomResourceOptions options)
    
    type: alicloud:message:ServiceQueue
    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 ServiceQueueArgs
    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 ServiceQueueArgs
    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 ServiceQueueArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceQueueArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceQueueArgs
    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 serviceQueueResource = new AliCloud.Message.ServiceQueue("serviceQueueResource", new()
    {
        QueueName = "string",
        DelaySeconds = 0,
        DlqPolicy = new AliCloud.Message.Inputs.ServiceQueueDlqPolicyArgs
        {
            DeadLetterTargetQueue = "string",
            Enabled = false,
            MaxReceiveCount = 0,
        },
        LoggingEnabled = false,
        MaximumMessageSize = 0,
        MessageRetentionPeriod = 0,
        PollingWaitSeconds = 0,
        Tags = 
        {
            { "string", "string" },
        },
        VisibilityTimeout = 0,
    });
    
    example, err := message.NewServiceQueue(ctx, "serviceQueueResource", &message.ServiceQueueArgs{
    	QueueName:    pulumi.String("string"),
    	DelaySeconds: pulumi.Int(0),
    	DlqPolicy: &message.ServiceQueueDlqPolicyArgs{
    		DeadLetterTargetQueue: pulumi.String("string"),
    		Enabled:               pulumi.Bool(false),
    		MaxReceiveCount:       pulumi.Int(0),
    	},
    	LoggingEnabled:         pulumi.Bool(false),
    	MaximumMessageSize:     pulumi.Int(0),
    	MessageRetentionPeriod: pulumi.Int(0),
    	PollingWaitSeconds:     pulumi.Int(0),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	VisibilityTimeout: pulumi.Int(0),
    })
    
    var serviceQueueResource = new ServiceQueue("serviceQueueResource", ServiceQueueArgs.builder()
        .queueName("string")
        .delaySeconds(0)
        .dlqPolicy(ServiceQueueDlqPolicyArgs.builder()
            .deadLetterTargetQueue("string")
            .enabled(false)
            .maxReceiveCount(0)
            .build())
        .loggingEnabled(false)
        .maximumMessageSize(0)
        .messageRetentionPeriod(0)
        .pollingWaitSeconds(0)
        .tags(Map.of("string", "string"))
        .visibilityTimeout(0)
        .build());
    
    service_queue_resource = alicloud.message.ServiceQueue("serviceQueueResource",
        queue_name="string",
        delay_seconds=0,
        dlq_policy={
            "dead_letter_target_queue": "string",
            "enabled": False,
            "max_receive_count": 0,
        },
        logging_enabled=False,
        maximum_message_size=0,
        message_retention_period=0,
        polling_wait_seconds=0,
        tags={
            "string": "string",
        },
        visibility_timeout=0)
    
    const serviceQueueResource = new alicloud.message.ServiceQueue("serviceQueueResource", {
        queueName: "string",
        delaySeconds: 0,
        dlqPolicy: {
            deadLetterTargetQueue: "string",
            enabled: false,
            maxReceiveCount: 0,
        },
        loggingEnabled: false,
        maximumMessageSize: 0,
        messageRetentionPeriod: 0,
        pollingWaitSeconds: 0,
        tags: {
            string: "string",
        },
        visibilityTimeout: 0,
    });
    
    type: alicloud:message:ServiceQueue
    properties:
        delaySeconds: 0
        dlqPolicy:
            deadLetterTargetQueue: string
            enabled: false
            maxReceiveCount: 0
        loggingEnabled: false
        maximumMessageSize: 0
        messageRetentionPeriod: 0
        pollingWaitSeconds: 0
        queueName: string
        tags:
            string: string
        visibilityTimeout: 0
    

    ServiceQueue 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 ServiceQueue resource accepts the following input properties:

    QueueName string
    The name of the queue.
    DelaySeconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    DlqPolicy Pulumi.AliCloud.Message.Inputs.ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    LoggingEnabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    MaximumMessageSize int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    MessageRetentionPeriod int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    PollingWaitSeconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    VisibilityTimeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    QueueName string
    The name of the queue.
    DelaySeconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    DlqPolicy ServiceQueueDlqPolicyArgs
    The dead-letter queue policy. See dlq_policy below.
    LoggingEnabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    MaximumMessageSize int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    MessageRetentionPeriod int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    PollingWaitSeconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    VisibilityTimeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    queueName String
    The name of the queue.
    delaySeconds Integer
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled Boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize Integer
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod Integer
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds Integer
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    visibilityTimeout Integer
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    queueName string
    The name of the queue.
    delaySeconds number
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize number
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod number
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds number
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    visibilityTimeout number
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    queue_name str
    The name of the queue.
    delay_seconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlq_policy ServiceQueueDlqPolicyArgs
    The dead-letter queue policy. See dlq_policy below.
    logging_enabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximum_message_size int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    message_retention_period int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    polling_wait_seconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    visibility_timeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    queueName String
    The name of the queue.
    delaySeconds Number
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy Property Map
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled Boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize Number
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod Number
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds Number
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    tags Map<String>
    A mapping of tags to assign to the resource.
    visibilityTimeout Number
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceQueue resource produces the following output properties:

    CreateTime int
    (Available since v1.223.2) The time when the queue was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    CreateTime int
    (Available since v1.223.2) The time when the queue was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    createTime Integer
    (Available since v1.223.2) The time when the queue was created.
    id String
    The provider-assigned unique ID for this managed resource.
    createTime number
    (Available since v1.223.2) The time when the queue was created.
    id string
    The provider-assigned unique ID for this managed resource.
    create_time int
    (Available since v1.223.2) The time when the queue was created.
    id str
    The provider-assigned unique ID for this managed resource.
    createTime Number
    (Available since v1.223.2) The time when the queue was created.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ServiceQueue Resource

    Get an existing ServiceQueue 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?: ServiceQueueState, opts?: CustomResourceOptions): ServiceQueue
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[int] = None,
            delay_seconds: Optional[int] = None,
            dlq_policy: Optional[ServiceQueueDlqPolicyArgs] = None,
            logging_enabled: Optional[bool] = None,
            maximum_message_size: Optional[int] = None,
            message_retention_period: Optional[int] = None,
            polling_wait_seconds: Optional[int] = None,
            queue_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            visibility_timeout: Optional[int] = None) -> ServiceQueue
    func GetServiceQueue(ctx *Context, name string, id IDInput, state *ServiceQueueState, opts ...ResourceOption) (*ServiceQueue, error)
    public static ServiceQueue Get(string name, Input<string> id, ServiceQueueState? state, CustomResourceOptions? opts = null)
    public static ServiceQueue get(String name, Output<String> id, ServiceQueueState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:message:ServiceQueue    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.
    The following state arguments are supported:
    CreateTime int
    (Available since v1.223.2) The time when the queue was created.
    DelaySeconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    DlqPolicy Pulumi.AliCloud.Message.Inputs.ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    LoggingEnabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    MaximumMessageSize int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    MessageRetentionPeriod int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    PollingWaitSeconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    QueueName string
    The name of the queue.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    VisibilityTimeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    CreateTime int
    (Available since v1.223.2) The time when the queue was created.
    DelaySeconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    DlqPolicy ServiceQueueDlqPolicyArgs
    The dead-letter queue policy. See dlq_policy below.
    LoggingEnabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    MaximumMessageSize int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    MessageRetentionPeriod int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    PollingWaitSeconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    QueueName string
    The name of the queue.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    VisibilityTimeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    createTime Integer
    (Available since v1.223.2) The time when the queue was created.
    delaySeconds Integer
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled Boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize Integer
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod Integer
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds Integer
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    queueName String
    The name of the queue.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    visibilityTimeout Integer
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    createTime number
    (Available since v1.223.2) The time when the queue was created.
    delaySeconds number
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy ServiceQueueDlqPolicy
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize number
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod number
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds number
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    queueName string
    The name of the queue.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    visibilityTimeout number
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    create_time int
    (Available since v1.223.2) The time when the queue was created.
    delay_seconds int
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlq_policy ServiceQueueDlqPolicyArgs
    The dead-letter queue policy. See dlq_policy below.
    logging_enabled bool
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximum_message_size int
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    message_retention_period int
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    polling_wait_seconds int
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    queue_name str
    The name of the queue.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    visibility_timeout int
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.
    createTime Number
    (Available since v1.223.2) The time when the queue was created.
    delaySeconds Number
    The period after which all messages sent to the queue are consumed. Default value: 0. Valid values: 0 to 604800. Unit: seconds.
    dlqPolicy Property Map
    The dead-letter queue policy. See dlq_policy below.
    loggingEnabled Boolean
    Specifies whether to enable the logging feature. Default value: false. Valid values:
    maximumMessageSize Number
    The maximum length of the message that is sent to the queue. Valid values: 1024 to 65536. Unit: bytes. Default value: 65536.
    messageRetentionPeriod Number
    The maximum duration for which a message is retained in the queue. After the specified retention period ends, the message is deleted regardless of whether the message is received. Valid values: 60 to 604800. Unit: seconds. Default value: 345600.
    pollingWaitSeconds Number
    The maximum duration for which long polling requests are held after the ReceiveMessage operation is called. Valid values: 0 to 30. Unit: seconds. Default value: 0.
    queueName String
    The name of the queue.
    tags Map<String>
    A mapping of tags to assign to the resource.
    visibilityTimeout Number
    The duration for which a message stays in the Inactive state after the message is received from the queue. Valid values: 1 to 43200. Unit: seconds. Default value: 30.

    Supporting Types

    ServiceQueueDlqPolicy, ServiceQueueDlqPolicyArgs

    DeadLetterTargetQueue string
    The queue to which dead-letter messages are delivered.
    Enabled bool
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    MaxReceiveCount int
    The maximum number of retries.
    DeadLetterTargetQueue string
    The queue to which dead-letter messages are delivered.
    Enabled bool
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    MaxReceiveCount int
    The maximum number of retries.
    deadLetterTargetQueue String
    The queue to which dead-letter messages are delivered.
    enabled Boolean
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    maxReceiveCount Integer
    The maximum number of retries.
    deadLetterTargetQueue string
    The queue to which dead-letter messages are delivered.
    enabled boolean
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    maxReceiveCount number
    The maximum number of retries.
    dead_letter_target_queue str
    The queue to which dead-letter messages are delivered.
    enabled bool
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    max_receive_count int
    The maximum number of retries.
    deadLetterTargetQueue String
    The queue to which dead-letter messages are delivered.
    enabled Boolean
    Specifies whether to enable the dead-letter message delivery. Valid values: true, false.
    maxReceiveCount Number
    The maximum number of retries.

    Import

    Message Service Queue can be imported using the id, e.g.

    $ pulumi import alicloud:message/serviceQueue:ServiceQueue example <id>
    

    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.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi