Show / Hide Table of Contents

Class FixedTTLResponseCacheStorePolicy

How a response from a backend is cached in the Response Cache.

Inheritance
object
ResponseCacheStorePolicy
FixedTTLResponseCacheStorePolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class FixedTTLResponseCacheStorePolicy : ResponseCacheStorePolicy

Properties

TimeToLiveInSeconds

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

Sets the number of seconds for a response from a backend being stored in the Response Cache before it expires.

Remarks

Required

In this article
Back to top