Module Values.LaunchConfigurationSource

Gets a LaunchConfiguration, filtered by Source Server IDs.

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

    The ID of the Source Server for this launch configuration.

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

    The name of the launch configuration.

    *)
  3. ec2LaunchTemplateID : BoundedString.t option;
    (*

    The EC2 launch template ID of this launch configuration.

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

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

    *)
  5. 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.

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

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

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

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

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

    The licensing configuration to be used for this launch configuration.

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

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

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

    Launch into existing instance properties.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `UninitializedAccountException of UninitializedAccountException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?sourceServerID:??? -> ?name:??? -> ?ec2LaunchTemplateID:??? -> ?launchDisposition:??? -> ?targetInstanceTypeRightSizingMethod:??? -> ?copyPrivateIp:??? -> ?copyTags:??? -> ?licensing:??? -> ?postLaunchEnabled:??? -> ?launchIntoInstanceProperties:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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