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 - 2048
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 - 2048
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 - 2048
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. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
Constraints:
Length: 1 - 4096
Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
public void setPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
Constraints:
Length: 1 - 4096
plaintext - Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
public DecryptResult withPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 4096
plaintext - Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.
public String toString()
toString in class ObjectObject.toString()Copyright © 2019. All rights reserved.