Module Values.CreateLogicallyAirGappedBackupVaultOutputSource

Creates a logical container to where backups may be copied. This request includes a name, the Region, the maximum number of retention days, the minimum number of retention days, and optionally can include tags and a creator request ID. Do not include sensitive data, such as passport numbers, in the name of a backup vault.

Sourcetype nonrec t = {
  1. backupVaultName : BackupVaultName.t option;
    (*

    The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.

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

    The ARN (Amazon Resource Name) of the vault.

    *)
  3. creationDate : string option;
    (*

    The date and time when the vault was created. This value is in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  4. vaultState : VaultState.t option;
    (*

    The current state of the vault.

    *)
}
Sourcetype nonrec error = [
  1. | `AlreadyExistsException of AlreadyExistsException.t
  2. | `InvalidParameterValueException of InvalidParameterValueException.t
  3. | `InvalidRequestException of InvalidRequestException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `MissingParameterValueException of MissingParameterValueException.t
  6. | `ServiceUnavailableException of ServiceUnavailableException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?backupVaultName:??? -> ?backupVaultArn:??? -> ?creationDate:??? -> ?vaultState:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AlreadyExistsException of AlreadyExistsException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `InvalidRequestException of InvalidRequestException.t | `LimitExceededException of LimitExceededException.t | `MissingParameterValueException of MissingParameterValueException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AlreadyExistsException of AlreadyExistsException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `InvalidRequestException of InvalidRequestException.t | `LimitExceededException of LimitExceededException.t | `MissingParameterValueException of MissingParameterValueException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BackupVaultName.t | `Timestamp of string ]) 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