Class ReEncryptInstructionFileResponse
- java.lang.Object
- 
- software.amazon.encryption.s3.internal.ReEncryptInstructionFileResponse
 
- 
 public class ReEncryptInstructionFileResponse extends Object Response object returned after re-encrypting an instruction file in S3. Contains the S3 bucket name, object key, instruction file suffix, and rotation enforcement status for the re-encrypted instruction file
- 
- 
Constructor SummaryConstructors Constructor Description ReEncryptInstructionFileResponse(String bucket, String key, String instructionFileSuffix, boolean enforceRotation)Creates a new ReEncryptInstructionFileResponse object with the specified parameters.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbucket()booleanenforceRotation()StringinstructionFileSuffix()Stringkey()
 
- 
- 
- 
Constructor Detail- 
ReEncryptInstructionFileResponsepublic ReEncryptInstructionFileResponse(String bucket, String key, String instructionFileSuffix, boolean enforceRotation) Creates a new ReEncryptInstructionFileResponse object with the specified parameters.- Parameters:
- bucket- the S3 bucket containing the re-encrypted instruction file
- key- the S3 object key of the encrypted object in S3
- instructionFileSuffix- the suffix used for the instruction file
- enforceRotation- whether rotation was enforced for the re-encrypted instruction file
 
 
- 
 - 
Method Detail- 
bucketpublic String bucket() - Returns:
- the S3 bucket containing the re-encrypted instruction file
 
 - 
keypublic String key() - Returns:
- the S3 object key of the encrypted object in S3
 
 - 
enforceRotationpublic boolean enforceRotation() - Returns:
- whether rotation was enforced for the re-encrypted instruction file
 
 - 
instructionFileSuffixpublic String instructionFileSuffix() - Returns:
- the instruction file suffix used for the instruction file
 
 
- 
 
-