public class DecryptResult
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
DecryptResult() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getKeyId()
ARN of the key used to perform the decryption.
|
java.nio.ByteBuffer |
getPlaintext()
Decrypted plaintext data.
|
int |
hashCode() |
void |
setKeyId(java.lang.String keyId)
ARN of the key used to perform the decryption.
|
void |
setPlaintext(java.nio.ByteBuffer plaintext)
Decrypted plaintext data.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DecryptResult |
withKeyId(java.lang.String keyId)
ARN of the key used to perform the decryption.
|
DecryptResult |
withPlaintext(java.nio.ByteBuffer plaintext)
Decrypted plaintext data.
|
public java.lang.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(java.lang.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(java.lang.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 java.nio.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(java.nio.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(java.nio.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 java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.