EventHubArgs

data class EventHubArgs(val authenticationType: Output<Either<String, AuthenticationType>>? = null, val connectionStringPrimaryKey: Output<String>? = null, val connectionStringSecondaryKey: Output<String>? = null, val deadLetterSecret: Output<String>? = null, val deadLetterUri: Output<String>? = null, val endpointType: Output<String>, val endpointUri: Output<String>? = null, val entityPath: Output<String>? = null, val identity: Output<ManagedIdentityReferenceArgs>? = null) : ConvertibleToJava<EventHubArgs>

Properties related to EventHub.

Constructors

Link copied to clipboard
constructor(authenticationType: Output<Either<String, AuthenticationType>>? = null, connectionStringPrimaryKey: Output<String>? = null, connectionStringSecondaryKey: Output<String>? = null, deadLetterSecret: Output<String>? = null, deadLetterUri: Output<String>? = null, endpointType: Output<String>, endpointUri: Output<String>? = null, entityPath: Output<String>? = null, identity: Output<ManagedIdentityReferenceArgs>? = null)

Properties

Link copied to clipboard
val authenticationType: Output<Either<String, AuthenticationType>>? = null

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

Link copied to clipboard
val connectionStringPrimaryKey: Output<String>? = null

PrimaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

Link copied to clipboard

SecondaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

Link copied to clipboard
val deadLetterSecret: Output<String>? = null

Dead letter storage secret for key-based authentication. Will be obfuscated during read.

Link copied to clipboard
val deadLetterUri: Output<String>? = null

Dead letter storage URL for identity-based authentication.

Link copied to clipboard
val endpointType: Output<String>

The type of Digital Twins endpoint Expected value is 'EventHub'.

Link copied to clipboard
val endpointUri: Output<String>? = null

The URL of the EventHub namespace for identity-based authentication. It must include the protocol 'sb://'.

Link copied to clipboard
val entityPath: Output<String>? = null

The EventHub name in the EventHub namespace for identity-based authentication.

Link copied to clipboard

Managed identity properties for the endpoint.

Functions

Link copied to clipboard
open override fun toJava(): EventHubArgs