Module Values.LaunchConfigurationTemplateSource

Account level Launch Configuration Template.

Sourcetype nonrec t = {
  1. launchConfigurationTemplateID : LaunchConfigurationTemplateID.t option;
    (*

    ID of the Launch Configuration Template.

    *)
  2. arn : ARN.t option;
    (*

    ARN of the Launch Configuration Template.

    *)
  3. tags : TagsMap.t option;
    (*

    Tags of the Launch Configuration Template.

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

    Launch disposition.

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

    Target instance type right-sizing method.

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

    Copy private IP.

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

    Copy tags.

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

    Licensing.

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

    S3 bucket ARN to export Source Network templates.

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

    Post-launch actions activated.

    *)
  11. 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 : ?launchConfigurationTemplateID:??? -> ?arn:??? -> ?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 LaunchConfigurationTemplateID.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