Module Values.LifecyclePolicySummarySource

A summary of the lifecycle policy.

Sourcetype nonrec t = {
  1. type_ : LifecyclePolicyType.t option;
    (*

    The type of lifecycle policy.

    *)
  2. name : PolicyName.t option;
    (*

    The name of the lifecycle policy.

    *)
  3. policyVersion : PolicyVersion.t option;
    (*

    The version of the lifecycle policy.

    *)
  4. description : PolicyDescription.t option;
    (*

    The description of the lifecycle policy.

    *)
  5. createdDate : Long.t option;
    (*

    The Epoch time when the lifecycle policy was created.

    *)
  6. lastModifiedDate : Long.t option;
    (*

    The date and time when the lifecycle policy was last modified.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?policyVersion:??? -> ?description:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of PolicyName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t