public static interface EncryptionEntity.Builder extends SdkPojo, CopyableBuilder<EncryptionEntity.Builder,EncryptionEntity>
Modifier and Type | Method and Description |
---|---|
default EncryptionEntity.Builder |
fieldPatterns(Consumer<FieldPatterns.Builder> fieldPatterns)
Field patterns in a field-level encryption content type profile specify the fields that you want to be
encrypted.
|
EncryptionEntity.Builder |
fieldPatterns(FieldPatterns fieldPatterns)
Field patterns in a field-level encryption content type profile specify the fields that you want to be
encrypted.
|
EncryptionEntity.Builder |
providerId(String providerId)
The provider associated with the public key being used for encryption.
|
EncryptionEntity.Builder |
publicKeyId(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.
|
copy
applyMutation, build
EncryptionEntity.Builder publicKeyId(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.
publicKeyId
- The public key associated with a set of field-level encryption patterns, to be used when encrypting
the fields that match the patterns.EncryptionEntity.Builder providerId(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.
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.EncryptionEntity.Builder fieldPatterns(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.
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.default EncryptionEntity.Builder fieldPatterns(Consumer<FieldPatterns.Builder> 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.
This is a convenience that creates an instance of theFieldPatterns.Builder
avoiding the need to
create one manually via FieldPatterns.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to fieldPatterns(FieldPatterns)
.fieldPatterns
- a consumer that will call methods on FieldPatterns.Builder
fieldPatterns(FieldPatterns)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.