GradientEdge CDK Utils
    Preparing search index...
    interface ServiceBusSubscriptionProps {
        autoDeleteOnIdle?: Input<string>;
        clientAffineProperties?: Input<SBClientAffinePropertiesArgs>;
        deadLetteringOnFilterEvaluationExceptions?: Input<boolean>;
        deadLetteringOnMessageExpiration?: Input<boolean>;
        defaultMessageTimeToLive?: Input<string>;
        duplicateDetectionHistoryTimeWindow?: Input<string>;
        enableBatchedOperations?: Input<boolean>;
        forwardDeadLetteredMessagesTo?: Input<string>;
        forwardTo?: Input<string>;
        isClientAffine?: Input<boolean>;
        lockDuration?: Input<string>;
        maxDeliveryCount?: Input<number>;
        namespaceName: Input<string>;
        requiresSession?: Input<boolean>;
        resourceGroupName: Input<string>;
        status?: Input<EntityStatus>;
        subscriptionName?: Input<string>;
        topicName: Input<string>;
    }

    Hierarchy

    • SubscriptionArgs
      • ServiceBusSubscriptionProps
    Index

    Properties

    autoDeleteOnIdle?: Input<string>

    ISO 8061 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes.

    clientAffineProperties?: Input<SBClientAffinePropertiesArgs>

    Properties specific to client affine subscriptions.

    deadLetteringOnFilterEvaluationExceptions?: Input<boolean>

    Value that indicates whether a subscription has dead letter support on filter evaluation exceptions.

    deadLetteringOnMessageExpiration?: Input<boolean>

    Value that indicates whether a subscription has dead letter support when a message expires.

    defaultMessageTimeToLive?: Input<string>

    ISO 8061 Default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself.

    duplicateDetectionHistoryTimeWindow?: Input<string>

    ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes.

    enableBatchedOperations?: Input<boolean>

    Value that indicates whether server-side batched operations are enabled.

    forwardDeadLetteredMessagesTo?: Input<string>

    Queue/Topic name to forward the Dead Letter message

    forwardTo?: Input<string>

    Queue/Topic name to forward the messages

    isClientAffine?: Input<boolean>

    Value that indicates whether the subscription has an affinity to the client id.

    lockDuration?: Input<string>

    ISO 8061 lock duration timespan for the subscription. The default value is 1 minute.

    maxDeliveryCount?: Input<number>

    Number of maximum deliveries.

    namespaceName: Input<string>

    The namespace name

    requiresSession?: Input<boolean>

    Value indicating if a subscription supports the concept of sessions.

    resourceGroupName: Input<string>

    The name of the resource group. The name is case insensitive.

    status?: Input<EntityStatus>

    Enumerates the possible values for the status of a messaging entity.

    subscriptionName?: Input<string>

    The subscription name.

    topicName: Input<string>

    The topic name.