Interface CreateBackupVaultRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,BackupRequest.Builder,Buildable,CopyableBuilder<CreateBackupVaultRequest.Builder,CreateBackupVaultRequest>,SdkBuilder<CreateBackupVaultRequest.Builder,CreateBackupVaultRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateBackupVaultRequest
public static interface CreateBackupVaultRequest.Builder extends BackupRequest.Builder, SdkPojo, CopyableBuilder<CreateBackupVaultRequest.Builder,CreateBackupVaultRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateBackupVaultRequest.BuilderbackupVaultName(String backupVaultName)The name of a logical container where backups are stored.CreateBackupVaultRequest.BuilderbackupVaultTags(Map<String,String> backupVaultTags)Metadata that you can assign to help organize the resources that you create.CreateBackupVaultRequest.BuildercreatorRequestId(String creatorRequestId)A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.CreateBackupVaultRequest.BuilderencryptionKeyArn(String encryptionKeyArn)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.CreateBackupVaultRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateBackupVaultRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.backup.model.BackupRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
backupVaultName
CreateBackupVaultRequest.Builder backupVaultName(String backupVaultName)
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.
- Parameters:
backupVaultName- 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:
- Returns a reference to this object so that method calls can be chained together.
-
backupVaultTags
CreateBackupVaultRequest.Builder backupVaultTags(Map<String,String> backupVaultTags)
Metadata that you can assign to help organize the resources that you create. Each tag is a key-value pair.
- Parameters:
backupVaultTags- Metadata that you can assign to help organize the resources that you create. Each tag is a key-value pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKeyArn
CreateBackupVaultRequest.Builder encryptionKeyArn(String encryptionKeyArn)
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.- Parameters:
encryptionKeyArn- 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:
- Returns a reference to this object so that method calls can be chained together.
-
creatorRequestId
CreateBackupVaultRequest.Builder creatorRequestId(String creatorRequestId)
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.
- Parameters:
creatorRequestId- 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateBackupVaultRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateBackupVaultRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-