Bagikan melalui


Destination Constructors

Definition

Overloads

Destination()

Initializes a new instance of the Destination class.

Destination(String, String, String, String, Nullable<Guid>, String, String)

Initializes a new instance of the Destination class.

Destination()

Initializes a new instance of the Destination class.

public Destination ();
Public Sub New ()

Applies to

Destination(String, String, String, String, Nullable<Guid>, String, String)

Initializes a new instance of the Destination class.

public Destination (string name = default, string storageAccountResourceId = default, string blobContainer = default, string archiveNameFormat = default, Guid? dataLakeSubscriptionId = default, string dataLakeAccountName = default, string dataLakeFolderPath = default);
new Microsoft.Azure.Management.EventHub.Models.Destination : string * string * string * string * Nullable<Guid> * string * string -> Microsoft.Azure.Management.EventHub.Models.Destination
Public Sub New (Optional name As String = Nothing, Optional storageAccountResourceId As String = Nothing, Optional blobContainer As String = Nothing, Optional archiveNameFormat As String = Nothing, Optional dataLakeSubscriptionId As Nullable(Of Guid) = Nothing, Optional dataLakeAccountName As String = Nothing, Optional dataLakeFolderPath As String = Nothing)

Parameters

name
String

Name for capture destination

storageAccountResourceId
String

Resource id of the storage account to be used to create the blobs

blobContainer
String

Blob container Name

archiveNameFormat
String

Blob naming convention for archive, e.g. {Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order

dataLakeSubscriptionId
Nullable<Guid>

Subscription Id of Azure Data Lake Store

dataLakeAccountName
String

The Azure Data Lake Store name for the captured events

dataLakeFolderPath
String

The destination folder path for the captured events

Applies to