Class: Aws::Backup::Types::CreateBackupVaultInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::CreateBackupVaultInput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
When making an API call, you may pass CreateBackupVaultInput data as a hash:
{
backup_vault_name: "BackupVaultName", # required
backup_vault_tags: {
"TagKey" => "TagValue",
},
encryption_key_arn: "ARN",
creator_request_id: "string",
}
Constant Summary collapse
- SENSITIVE =
[:backup_vault_tags]
Instance Attribute Summary collapse
-
#backup_vault_name ⇒ String
The name of a logical container where backups are stored.
-
#backup_vault_tags ⇒ Hash<String,String>
Metadata that you can assign to help organize the resources that you create.
-
#creator_request_id ⇒ String
A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.
-
#encryption_key_arn ⇒ String
The server-side encryption key that is used to protect your backups; for example,
arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
.
Instance Attribute Details
#backup_vault_name ⇒ String
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created. They consist of lowercase letters, numbers, and hyphens.
1192 1193 1194 1195 1196 1197 1198 1199 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1192 class CreateBackupVaultInput < Struct.new( :backup_vault_name, :backup_vault_tags, :encryption_key_arn, :creator_request_id) SENSITIVE = [:backup_vault_tags] include Aws::Structure end |
#backup_vault_tags ⇒ Hash<String,String>
Metadata that you can assign to help organize the resources that you create. Each tag is a key-value pair.
1192 1193 1194 1195 1196 1197 1198 1199 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1192 class CreateBackupVaultInput < Struct.new( :backup_vault_name, :backup_vault_tags, :encryption_key_arn, :creator_request_id) SENSITIVE = [:backup_vault_tags] include Aws::Structure end |
#creator_request_id ⇒ String
A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.
1192 1193 1194 1195 1196 1197 1198 1199 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1192 class CreateBackupVaultInput < Struct.new( :backup_vault_name, :backup_vault_tags, :encryption_key_arn, :creator_request_id) SENSITIVE = [:backup_vault_tags] include Aws::Structure end |
#encryption_key_arn ⇒ String
The server-side encryption key that is used to protect your backups;
for example,
arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
.
1192 1193 1194 1195 1196 1197 1198 1199 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1192 class CreateBackupVaultInput < Struct.new( :backup_vault_name, :backup_vault_tags, :encryption_key_arn, :creator_request_id) SENSITIVE = [:backup_vault_tags] include Aws::Structure end |