Show / Hide Table of Contents

Class ObjectLifecyclePolicy

The collection of lifecycle policy rules that together form the object lifecycle policy of a given bucket.

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

Properties

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<ObjectLifecycleRule> Items { get; set; }
Property Value
Type Description
List<ObjectLifecycleRule>

The live lifecycle policy on the bucket.
For an example of this value, see the PutObjectLifecyclePolicy API documentation.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the object lifecycle policy was created, as described in RFC 3339.

In this article
Back to top