Module Values.CreateLogicallyAirGappedBackupVaultInputSource

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;
    (*

    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. backupVaultTags : Tags.t option;
    (*

    The tags to assign to the vault.

    *)
  3. creatorRequestId : string option;
    (*

    The ID of the creation request. This parameter is optional. If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.

    *)
  4. minRetentionDays : Long.t;
    (*

    This setting specifies the minimum retention period that the vault retains its recovery points. The minimum value accepted is 7 days.

    *)
  5. maxRetentionDays : Long.t;
    (*

    The maximum retention period that the vault retains its recovery points.

    *)
  6. encryptionKeyArn : ARN.t option;
    (*

    The ARN of the customer-managed KMS key to use for encrypting the logically air-gapped backup vault. If not specified, the vault will be encrypted with an Amazon Web Services-owned key managed by Amazon Web Services Backup.

    *)
}
Sourceval context_ : string
Sourceval make : ?backupVaultTags:??? -> ?creatorRequestId:??? -> ?encryptionKeyArn:??? -> backupVaultName:BackupVaultName.t -> minRetentionDays:Long.t -> maxRetentionDays:Long.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of BackupVaultName.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