Module Values.FastLaunchConfigurationSource

Define and configure faster launching for output Windows AMIs.

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

    A Boolean that represents the current state of faster launching for the Windows AMI. Set to true to start using Windows faster launching, or false to stop using it.

    *)
  2. snapshotConfiguration : FastLaunchSnapshotConfiguration.t option;
    (*

    Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.

    *)
  3. maxParallelLaunches : MaxParallelLaunches.t option;
    (*

    The maximum number of parallel instances that are launched for creating resources.

    *)
  4. launchTemplate : FastLaunchLaunchTemplateSpecification.t option;
    (*

    The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.

    *)
  5. accountId : AccountId.t option;
    (*

    The owner account ID for the fast-launch enabled Windows AMI.

    *)
}
Sourceval context_ : string
Sourceval make : ?snapshotConfiguration:??? -> ?maxParallelLaunches:??? -> ?launchTemplate:??? -> ?accountId:??? -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of MaxParallelLaunches.t | `String of AccountId.t | `Structure of (string * [> `Integer of TargetResourceCount.t | `String of LaunchTemplateId.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