Show / Hide Table of Contents

Class BackoffRetryPolicy

The backoff retry portion of the subscription delivery policy. For information about retry durations for subscriptions, see How Notifications Works.

Inheritance
object
BackoffRetryPolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OnsService.Models
Assembly: OCI.DotNetSDK.Ons.dll
Syntax
public class BackoffRetryPolicy

Properties

MaxRetryDuration

Declaration
[Required(ErrorMessage = "MaxRetryDuration is required.")]
[JsonProperty(PropertyName = "maxRetryDuration")]
public int? MaxRetryDuration { get; set; }
Property Value
Type Description
int?

The maximum retry duration in milliseconds. Default value is 7200000 (2 hours).

Remarks

Required

PolicyType

Declaration
[Required(ErrorMessage = "PolicyType is required.")]
[JsonProperty(PropertyName = "policyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackoffRetryPolicy.PolicyTypeEnum? PolicyType { get; set; }
Property Value
Type Description
BackoffRetryPolicy.PolicyTypeEnum?

The type of delivery policy.

Remarks

Required

In this article
Back to top