Class: Aws::Backup::Types::CreateBackupVaultInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:backup_vault_tags]

Instance Attribute Summary collapse

Instance Attribute Details

#backup_vault_nameString

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 Amazon Web Services Region where they are created. They consist of letters, numbers, and hyphens.

Returns:

  • (String)


1791
1792
1793
1794
1795
1796
1797
1798
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1791

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_tagsHash<String,String>

The tags to assign to the backup vault.

Returns:

  • (Hash<String,String>)


1791
1792
1793
1794
1795
1796
1797
1798
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1791

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_idString

A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice. This parameter is optional.

If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


1791
1792
1793
1794
1795
1796
1797
1798
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1791

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_arnString

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.

Returns:

  • (String)


1791
1792
1793
1794
1795
1796
1797
1798
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1791

class CreateBackupVaultInput < Struct.new(
  :backup_vault_name,
  :backup_vault_tags,
  :encryption_key_arn,
  :creator_request_id)
  SENSITIVE = [:backup_vault_tags]
  include Aws::Structure
end