public class DecryptResult extends Object implements Serializable
| Constructor and Description |
|---|
DecryptResult() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getKeyId()
ARN of the key used to perform the decryption.
|
ByteBuffer |
getPlaintext()
Decrypted plaintext data.
|
int |
hashCode() |
void |
setKeyId(String keyId)
ARN of the key used to perform the decryption.
|
void |
setPlaintext(ByteBuffer plaintext)
Decrypted plaintext data.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DecryptResult |
withKeyId(String keyId)
ARN of the key used to perform the decryption.
|
DecryptResult |
withPlaintext(ByteBuffer plaintext)
Decrypted plaintext data.
|
public String getKeyId()
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
Constraints:
Length: 1 - 256
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
public void setKeyId(String keyId)
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
Constraints:
Length: 1 - 256
keyId - ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
public DecryptResult withKeyId(String keyId)
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
keyId - ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
public ByteBuffer getPlaintext()
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
Constraints:
Length: 1 - 4096
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
public void setPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
Constraints:
Length: 1 - 4096
plaintext - Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
public DecryptResult withPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 4096
plaintext - Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
public String toString()
toString in class ObjectObject.toString()Copyright © 2018. All rights reserved.