GradientEdge CDK Utils
    Preparing search index...

    Interface EventgridSystemTopicEventSubscriptionProps

    interface EventgridSystemTopicEventSubscriptionProps {
        deadLetterDestination?: Input<StorageBlobDeadLetterDestinationArgs>;
        deadLetterWithResourceIdentity?: Input<DeadLetterWithResourceIdentityArgs>;
        deliveryWithResourceIdentity?: Input<DeliveryWithResourceIdentityArgs>;
        destination?: Input<
            | AzureFunctionEventSubscriptionDestinationArgs
            | EventHubEventSubscriptionDestinationArgs
            | HybridConnectionEventSubscriptionDestinationArgs
            | MonitorAlertEventSubscriptionDestinationArgs
            | NamespaceTopicEventSubscriptionDestinationArgs
            | ServiceBusQueueEventSubscriptionDestinationArgs
            | ServiceBusTopicEventSubscriptionDestinationArgs
            | StorageQueueEventSubscriptionDestinationArgs
            | WebHookEventSubscriptionDestinationArgs,
        >;
        eventDeliverySchema?: Input<string>;
        eventSubscriptionName?: Input<string>;
        expirationTimeUtc?: Input<string>;
        filter?: Input<EventSubscriptionFilterArgs>;
        labels?: Input<Input<string>[]>;
        resourceGroupName: Input<string>;
        retryPolicy?: Input<RetryPolicyArgs>;
        systemTopicName: Input<string>;
    }

    Hierarchy

    • SystemTopicEventSubscriptionArgs
      • EventgridSystemTopicEventSubscriptionProps
    Index

    Properties

    deadLetterDestination?: Input<StorageBlobDeadLetterDestinationArgs>

    The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination. Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.

    deadLetterWithResourceIdentity?: Input<DeadLetterWithResourceIdentityArgs>

    The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination. Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.

    deliveryWithResourceIdentity?: Input<DeliveryWithResourceIdentityArgs>

    Information about the destination where events have to be delivered for the event subscription. Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.

    destination?: Input<
        | AzureFunctionEventSubscriptionDestinationArgs
        | EventHubEventSubscriptionDestinationArgs
        | HybridConnectionEventSubscriptionDestinationArgs
        | MonitorAlertEventSubscriptionDestinationArgs
        | NamespaceTopicEventSubscriptionDestinationArgs
        | ServiceBusQueueEventSubscriptionDestinationArgs
        | ServiceBusTopicEventSubscriptionDestinationArgs
        | StorageQueueEventSubscriptionDestinationArgs
        | WebHookEventSubscriptionDestinationArgs,
    >

    Information about the destination where events have to be delivered for the event subscription. Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.

    eventDeliverySchema?: Input<string>

    The event delivery schema for the event subscription.

    eventSubscriptionName?: Input<string>

    Name of the event subscription to be created. Event subscription names must be between 3 and 64 characters in length and use alphanumeric letters only.

    expirationTimeUtc?: Input<string>

    Expiration time of the event subscription.

    filter?: Input<EventSubscriptionFilterArgs>

    Information about the filter for the event subscription.

    labels?: Input<Input<string>[]>

    List of user defined labels.

    resourceGroupName: Input<string>

    The name of the resource group within the user's subscription.

    retryPolicy?: Input<RetryPolicyArgs>

    The retry policy for events. This can be used to configure maximum number of delivery attempts and time to live for events.

    systemTopicName: Input<string>

    Name of the system topic.