public class DecryptResult extends Object implements Serializable, Cloneable
Constructor and Description |
---|
DecryptResult() |
Modifier and Type | Method and Description |
---|---|
DecryptResult |
clone() |
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()
Constraints:
Length: 1 - 256
public void setKeyId(String keyId)
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)
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()
Constraints:
Length: 1 - 4096
public void setPlaintext(ByteBuffer plaintext)
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)
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 Object
Object.toString()
public DecryptResult clone()
Copyright © 2015. All rights reserved.