Partager via


DeadLetterDestination Class

Definition

Information about the dead letter destination for an event subscription. To configure a deadletter destination, do not directly instantiate an object of this class. Instead, instantiate an object of a derived class. Currently, StorageBlobDeadLetterDestination is the only class that derives from this class.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.DeadLetterDestinationTypeConverter))]
public class DeadLetterDestination : Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDeadLetterDestination
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.DeadLetterDestinationTypeConverter))>]
type DeadLetterDestination = class
    interface IDeadLetterDestination
    interface IJsonSerializable
Public Class DeadLetterDestination
Implements IDeadLetterDestination
Inheritance
DeadLetterDestination
Attributes
Implements

Constructors

DeadLetterDestination()

Creates an new DeadLetterDestination instance.

Properties

EndpointType

Type of the endpoint for the dead letter destination

Methods

DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of DeadLetterDestination.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of DeadLetterDestination.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDeadLetterDestination. Note: the Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDeadLetterDestination interface is polymorphic, and the precise model class that will get deserialized is determined at runtime based on the payload.

FromJsonString(String)

Creates a new instance of DeadLetterDestination, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of DeadLetterDestination into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

ToString()

Applies to