Interface DecryptDataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DecryptDataResponse.Builder,DecryptDataResponse>,PaymentCryptographyDataResponse.Builder,SdkBuilder<DecryptDataResponse.Builder,DecryptDataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DecryptDataResponse
public static interface DecryptDataResponse.Builder extends PaymentCryptographyDataResponse.Builder, SdkPojo, CopyableBuilder<DecryptDataResponse.Builder,DecryptDataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecryptDataResponse.BuilderkeyArn(String keyArn)ThekeyARNof the encryption key that Amazon Web Services Payment Cryptography uses for ciphertext decryption.DecryptDataResponse.BuilderkeyCheckValue(String keyCheckValue)The key check value (KCV) of the encryption key.DecryptDataResponse.BuilderplainText(String plainText)The decrypted plaintext data in hexBinary format.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.paymentcryptographydata.model.PaymentCryptographyDataResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
keyArn
DecryptDataResponse.Builder keyArn(String keyArn)
The
keyARNof the encryption key that Amazon Web Services Payment Cryptography uses for ciphertext decryption.- Parameters:
keyArn- ThekeyARNof the encryption key that Amazon Web Services Payment Cryptography uses for ciphertext decryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyCheckValue
DecryptDataResponse.Builder keyCheckValue(String keyCheckValue)
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
- Parameters:
keyCheckValue- The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
plainText
DecryptDataResponse.Builder plainText(String plainText)
The decrypted plaintext data in hexBinary format.
- Parameters:
plainText- The decrypted plaintext data in hexBinary format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-