Show / Hide Table of Contents

Class QueueSuccessDestinationDetails

The destination queue or channel in the Queue service to which to send the response of the successful detached function invocation.
Example: {"kind": "QUEUE", "queueId": "queue_OCID", "channelId": "channel_Id"}

Inheritance
object
SuccessDestinationDetails
QueueSuccessDestinationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FunctionsService.Models
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class QueueSuccessDestinationDetails : SuccessDestinationDetails

Properties

ChannelId

Declaration
[JsonProperty(PropertyName = "channelId")]
public string ChannelId { get; set; }
Property Value
Type Description
string

The ID of the channel in the queue.

QueueId

Declaration
[Required(ErrorMessage = "QueueId is required.")]
[JsonProperty(PropertyName = "queueId")]
public string QueueId { get; set; }
Property Value
Type Description
string

The OCID of the queue.

Remarks

Required

In this article
Back to top