Share via


AzureFunctionEventSubscriptionDestination Constructors

Definition

Overloads

AzureFunctionEventSubscriptionDestination()

Initializes a new instance of the AzureFunctionEventSubscriptionDestination class.

AzureFunctionEventSubscriptionDestination(String, Nullable<Int32>, Nullable<Int32>, IList<DeliveryAttributeMapping>)

Initializes a new instance of the AzureFunctionEventSubscriptionDestination class.

AzureFunctionEventSubscriptionDestination()

Initializes a new instance of the AzureFunctionEventSubscriptionDestination class.

public AzureFunctionEventSubscriptionDestination ();
Public Sub New ()

Applies to

AzureFunctionEventSubscriptionDestination(String, Nullable<Int32>, Nullable<Int32>, IList<DeliveryAttributeMapping>)

Initializes a new instance of the AzureFunctionEventSubscriptionDestination class.

public AzureFunctionEventSubscriptionDestination (string resourceId = default, int? maxEventsPerBatch = default, int? preferredBatchSizeInKilobytes = default, System.Collections.Generic.IList<Microsoft.Azure.Management.EventGrid.Models.DeliveryAttributeMapping> deliveryAttributeMappings = default);
new Microsoft.Azure.Management.EventGrid.Models.AzureFunctionEventSubscriptionDestination : string * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.EventGrid.Models.DeliveryAttributeMapping> -> Microsoft.Azure.Management.EventGrid.Models.AzureFunctionEventSubscriptionDestination
Public Sub New (Optional resourceId As String = Nothing, Optional maxEventsPerBatch As Nullable(Of Integer) = Nothing, Optional preferredBatchSizeInKilobytes As Nullable(Of Integer) = Nothing, Optional deliveryAttributeMappings As IList(Of DeliveryAttributeMapping) = Nothing)

Parameters

resourceId
String

The Azure Resource Id that represents the endpoint of the Azure Function destination of an event subscription.

maxEventsPerBatch
Nullable<Int32>

Maximum number of events per batch.

preferredBatchSizeInKilobytes
Nullable<Int32>

Preferred batch size in Kilobytes.

deliveryAttributeMappings
IList<DeliveryAttributeMapping>

Delivery attribute details.

Applies to