Class ContentMetadata
- java.lang.Object
-
- software.amazon.encryption.s3.internal.ContentMetadata
-
public class ContentMetadata extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ContentMetadata.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AlgorithmSuite
algorithmSuite()
static ContentMetadata.Builder
builder()
String
contentCipher()
String
contentCipherTagLength()
byte[]
contentIv()
String
contentRange()
EncryptedDataKey
encryptedDataKey()
String
encryptedDataKeyAlgorithm()
Map<String,String>
encryptedDataKeyContext()
Note that the underlying implementation uses a Collections.unmodifiableMap which is immutable.
-
-
-
Method Detail
-
builder
public static ContentMetadata.Builder builder()
-
algorithmSuite
public AlgorithmSuite algorithmSuite()
-
encryptedDataKey
public EncryptedDataKey encryptedDataKey()
-
encryptedDataKeyAlgorithm
public String encryptedDataKeyAlgorithm()
-
encryptedDataKeyContext
public Map<String,String> encryptedDataKeyContext()
Note that the underlying implementation uses a Collections.unmodifiableMap which is immutable.
-
contentIv
public byte[] contentIv()
-
contentCipher
public String contentCipher()
-
contentCipherTagLength
public String contentCipherTagLength()
-
contentRange
public String contentRange()
-
-