Class EncryptionEntity
- java.lang.Object
-
- software.amazon.awssdk.services.cloudfront.model.EncryptionEntity
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<EncryptionEntity.Builder,EncryptionEntity>
@Generated("software.amazon.awssdk:codegen") public final class EncryptionEntity extends Object implements SdkPojo, Serializable, ToCopyableBuilder<EncryptionEntity.Builder,EncryptionEntity>
Complex data type for field-level encryption profiles that includes the encryption key and field pattern specifications.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
EncryptionEntity.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EncryptionEntity.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
FieldPatterns
fieldPatterns()
Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
providerId()
The provider associated with the public key being used for encryption.String
publicKeyId()
The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.List<SdkField<?>>
sdkFields()
static Class<? extends EncryptionEntity.Builder>
serializableBuilderClass()
EncryptionEntity.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
publicKeyId
public final String publicKeyId()
The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
- Returns:
- The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
-
providerId
public final String providerId()
The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.
- Returns:
- The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.
-
fieldPatterns
public final FieldPatterns fieldPatterns()
Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
- Returns:
- Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
-
toBuilder
public EncryptionEntity.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<EncryptionEntity.Builder,EncryptionEntity>
-
builder
public static EncryptionEntity.Builder builder()
-
serializableBuilderClass
public static Class<? extends EncryptionEntity.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-