Interface DiskEncryptionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DiskEncryptionConfiguration.Builder,DiskEncryptionConfiguration>,SdkBuilder<DiskEncryptionConfiguration.Builder,DiskEncryptionConfiguration>,SdkPojo
- Enclosing class:
- DiskEncryptionConfiguration
@Mutable @NotThreadSafe public static interface DiskEncryptionConfiguration.Builder extends SdkPojo, CopyableBuilder<DiskEncryptionConfiguration.Builder,DiskEncryptionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskEncryptionConfiguration.BuilderencryptionContext(Map<String,String> encryptionContext)Specifies the optional encryption context that will be used when encrypting the data.DiskEncryptionConfiguration.BuilderencryptionKeyArn(String encryptionKeyArn)The KMS key ARN to encrypt local disks.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
encryptionContext
DiskEncryptionConfiguration.Builder encryptionContext(Map<String,String> encryptionContext)
Specifies the optional encryption context that will be used when encrypting the data. An encryption context is a collection of non-secret key-value pairs that represent additional authenticated data.
- Parameters:
encryptionContext- Specifies the optional encryption context that will be used when encrypting the data. An encryption context is a collection of non-secret key-value pairs that represent additional authenticated data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKeyArn
DiskEncryptionConfiguration.Builder encryptionKeyArn(String encryptionKeyArn)
The KMS key ARN to encrypt local disks.
- Parameters:
encryptionKeyArn- The KMS key ARN to encrypt local disks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-