Module Values.CreateBackupRequestSource

The request object for the CreateBackup operation.

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t option;
    (*

    The ID of the file system to back up.

    *)
  2. clientRequestToken : ClientRequestToken.t option;
    (*

    (Optional) A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.

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

    (Optional) The tags to apply to the backup at backup creation. The key value of the Name tag appears in the console as the backup name. If you have set CopyTagsToBackups to true, and you specify one or more tags using the CreateBackup operation, no existing file system tags are copied from the file system to the backup.

    *)
  4. volumeId : VolumeId.t option;
    (*

    (Optional) The ID of the FSx for ONTAP volume to back up.

    *)
}
Sourceval make : ?fileSystemId:??? -> ?clientRequestToken:??? -> ?tags:??? -> ?volumeId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of FileSystemId.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