Module Values.CreateLaunchConfigurationTemplateRequestSource

Creates a new Launch Configuration Template.

Sourcetype nonrec t = {
  1. tags : TagsMap.t option;
    (*

    Request to associate tags during creation of a Launch Configuration Template.

    *)
  2. launchDisposition : LaunchDisposition.t option;
    (*

    Launch disposition.

    *)
  3. targetInstanceTypeRightSizingMethod : TargetInstanceTypeRightSizingMethod.t option;
    (*

    Target instance type right-sizing method.

    *)
  4. copyPrivateIp : Boolean.t option;
    (*

    Copy private IP.

    *)
  5. copyTags : Boolean.t option;
    (*

    Copy tags.

    *)
  6. licensing : Licensing.t option;
    (*

    Licensing.

    *)
  7. exportBucketArn : ARN.t option;
    (*

    S3 bucket ARN to export Source Network templates.

    *)
  8. postLaunchEnabled : Boolean.t option;
    (*

    Whether we want to activate post-launch actions.

    *)
  9. launchIntoSourceInstance : Boolean.t option;
    (*

    DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.

    *)
}
Sourceval make : ?tags:??? -> ?launchDisposition:??? -> ?targetInstanceTypeRightSizingMethod:??? -> ?copyPrivateIp:??? -> ?copyTags:??? -> ?licensing:??? -> ?exportBucketArn:??? -> ?postLaunchEnabled:??? -> ?launchIntoSourceInstance:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ARN.t | `Structure of (string * [> `Boolean of Boolean.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