Show / Hide Table of Contents

Class StreamFailureDestinationDetails

The destination stream in the Streaming service to which to send the response of the failed detached function invocation.
Example: {"kind": "STREAM", "streamId": "stream_OCID"}

Inheritance
object
FailureDestinationDetails
StreamFailureDestinationDetails
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 StreamFailureDestinationDetails : FailureDestinationDetails

Properties

StreamId

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

The OCID of the stream.

Remarks

Required

In this article
Back to top