Module Values.UpdateLaunchConfigurationRequestSource

Updates a LaunchConfiguration by Source Server ID.

Sourcetype nonrec t = {
  1. sourceServerID : SourceServerID.t;
    (*

    The ID of the Source Server that we want to retrieve a Launch Configuration for.

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

    The name of the launch configuration.

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

    The state of the Recovery Instance in EC2 after the recovery operation.

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

    Whether Elastic Disaster Recovery should try to automatically choose the instance type that best matches the OS, CPU, and RAM of your Source Server.

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

    Whether we should copy the Private IP of the Source Server to the Recovery Instance.

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

    Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.

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

    The licensing configuration to be used for this launch configuration.

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

    Whether we want to enable post-launch actions for the Source Server.

    *)
  9. launchIntoInstanceProperties : LaunchIntoInstanceProperties.t option;
    (*

    Launch into existing instance properties.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?launchDisposition:??? -> ?targetInstanceTypeRightSizingMethod:??? -> ?copyPrivateIp:??? -> ?copyTags:??? -> ?licensing:??? -> ?postLaunchEnabled:??? -> ?launchIntoInstanceProperties:??? -> sourceServerID:SourceServerID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of SourceServerID.t | `Structure of (string * [> `Boolean of Boolean.t | `String of EC2InstanceID.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