CopyableBuilder<EncryptRequest.Builder,EncryptRequest>
, SdkBuilder<EncryptRequest.Builder,EncryptRequest>
public static interface EncryptRequest.Builder extends CopyableBuilder<EncryptRequest.Builder,EncryptRequest>
Modifier and Type | Method | Description |
---|---|---|
EncryptRequest.Builder |
encryptionContext(Map<String,String> encryptionContext) |
Name-value pair that specifies the encryption context to be used for authenticated encryption.
|
EncryptRequest.Builder |
grantTokens(String... grantTokens) |
A list of grant tokens.
|
EncryptRequest.Builder |
grantTokens(Collection<String> grantTokens) |
A list of grant tokens.
|
EncryptRequest.Builder |
keyId(String keyId) |
A unique identifier for the customer master key.
|
EncryptRequest.Builder |
plaintext(ByteBuffer plaintext) |
Data to be encrypted.
|
copy
apply, build
EncryptRequest.Builder keyId(String keyId)
A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by "alias/".
Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName
Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
Alias Name Example - alias/MyAliasName
keyId
- A unique identifier for the customer master key. This value can be a globally unique identifier, a
fully specified ARN to either an alias or a key, or an alias name prefixed by "alias/".
Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName
Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
Alias Name Example - alias/MyAliasName
EncryptRequest.Builder plaintext(ByteBuffer plaintext)
Data to be encrypted.
plaintext
- Data to be encrypted.EncryptRequest.Builder encryptionContext(Map<String,String> encryptionContext)
Name-value pair that specifies the encryption context to be used for authenticated encryption. If used here,
the same value must be supplied to the Decrypt
API or decryption will fail. For more
information, see Encryption Context.
encryptionContext
- Name-value pair that specifies the encryption context to be used for authenticated encryption. If used
here, the same value must be supplied to the Decrypt
API or decryption will fail. For
more information, see Encryption
Context.EncryptRequest.Builder grantTokens(Collection<String> grantTokens)
A list of grant tokens.
For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.
grantTokens
- A list of grant tokens.
For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.
EncryptRequest.Builder grantTokens(String... grantTokens)
A list of grant tokens.
For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.
NOTE: This method appends the values to the existing list (if any). Use
#setGrantTokens(java.util.Collection)
or #withGrantTokens(java.util.Collection)
if you want
to override the existing values.
grantTokens
- A list of grant tokens.
For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.