Module Values.LifecyclePolicySummarySource

Contains a summary of lifecycle policy resources.

Sourcetype nonrec t = {
  1. arn : LifecyclePolicyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the lifecycle policy summary resource.

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

    The name of the lifecycle policy.

    *)
  3. description : NonEmptyString.t option;
    (*

    Optional description for the lifecycle policy.

    *)
  4. status : LifecyclePolicyStatus.t option;
    (*

    The lifecycle policy resource status.

    *)
  5. executionRole : RoleNameOrArn.t option;
    (*

    The name or Amazon Resource Name (ARN) of the IAM role that Image Builder uses to run the lifecycle policy.

    *)
  6. resourceType : LifecyclePolicyResourceType.t option;
    (*

    The type of resources the lifecycle policy targets.

    *)
  7. dateCreated : DateTimeTimestamp.t option;
    (*

    The timestamp when Image Builder created the lifecycle policy resource.

    *)
  8. dateUpdated : DateTimeTimestamp.t option;
    (*

    The timestamp when Image Builder updated the lifecycle policy resource.

    *)
  9. dateLastRun : DateTimeTimestamp.t option;
    (*

    The timestamp for the last time Image Builder ran the lifecycle policy.

    *)
  10. tags : TagMap.t option;
    (*

    To help manage your lifecycle policy resources, you can assign your own metadata to each resource in the form of tags. Each tag consists of a key and an optional value, both of which you define.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?executionRole:??? -> ?resourceType:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?dateLastRun:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LifecyclePolicyArn.t | `Timestamp of DateTimeTimestamp.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