Module Values.ResourceStateUpdateIncludeResourcesSource

Specifies if the lifecycle policy should apply actions to selected resources.

Sourcetype nonrec t = {
  1. amis : Boolean.t option;
    (*

    Specifies whether the lifecycle action should apply to distributed AMIs

    *)
  2. snapshots : Boolean.t option;
    (*

    Specifies whether the lifecycle action should apply to snapshots associated with distributed AMIs.

    *)
  3. containers : Boolean.t option;
    (*

    Specifies whether the lifecycle action should apply to distributed containers.

    *)
}
Sourceval make : ?amis:??? -> ?snapshots:??? -> ?containers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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