Share via


Destination Constructors

Definition

Overloads

Destination()

Initializes a new instance of the Destination class.

Destination(String, String, 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)

Initializes a new instance of the Destination class.

public Destination (string name = default, string storageAccountResourceId = default, string blobContainer = default, string archiveNameFormat = default);
new Microsoft.Azure.Management.EventHub.Fluent.Models.Destination : string * string * string * string -> Microsoft.Azure.Management.EventHub.Fluent.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)

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

Applies to