Module Values.LifecyclePolicyDetailExclusionRulesAmisSource

Defines criteria for AMIs that are excluded from lifecycle actions.

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

    Configures whether public AMIs are excluded from the lifecycle action.

    *)
  2. regions : StringList.t option;
    (*

    Configures Amazon Web Services Regions that are excluded from the lifecycle action.

    *)
  3. sharedAccounts : AccountList.t option;
    (*

    Specifies Amazon Web Services accounts whose resources are excluded from the lifecycle action.

    *)
  4. lastLaunched : LifecyclePolicyDetailExclusionRulesAmisLastLaunched.t option;
    (*

    Specifies configuration details for Image Builder to exclude the most recent resources from lifecycle actions.

    *)
  5. tagMap : TagMap.t option;
    (*

    Lists tags that should be excluded from lifecycle actions for the AMIs that have them.

    *)
}
Sourceval make : ?isPublic:??? -> ?regions:??? -> ?sharedAccounts:??? -> ?lastLaunched:??? -> ?tagMap:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `Structure of (string * [> `Enum of string | `Integer of LifecyclePolicyDetailExclusionRulesAmisLastLaunchedValue.t ]) list ]) 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