Module Values.CreateInstanceSnapshotRequestSource

Creates a snapshot of a specific virtual private server, or instance. You can use a snapshot to create a new instance that is based on that snapshot. The create instance snapshot operation supports tag-based access control via request tags. For more information, see the Amazon Lightsail Developer Guide.

Sourcetype nonrec t = {
  1. instanceSnapshotName : ResourceName.t;
    (*

    The name for your new snapshot.

    *)
  2. instanceName : ResourceName.t;
    (*

    The Lightsail instance on which to base your snapshot.

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

    The tag keys and optional values to add to the resource during create. Use the TagResource action to tag a resource after it's created.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> instanceSnapshotName:ResourceName.t -> instanceName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceName.t ]) 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