Interface FieldLevelEncryptionProfile.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldLevelEncryptionProfile.Builder,FieldLevelEncryptionProfile>,SdkBuilder<FieldLevelEncryptionProfile.Builder,FieldLevelEncryptionProfile>,SdkPojo
- Enclosing class:
- FieldLevelEncryptionProfile
@Mutable @NotThreadSafe public static interface FieldLevelEncryptionProfile.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionProfile.Builder,FieldLevelEncryptionProfile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FieldLevelEncryptionProfile.BuilderfieldLevelEncryptionProfileConfig(Consumer<FieldLevelEncryptionProfileConfig.Builder> fieldLevelEncryptionProfileConfig)A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.FieldLevelEncryptionProfile.BuilderfieldLevelEncryptionProfileConfig(FieldLevelEncryptionProfileConfig fieldLevelEncryptionProfileConfig)A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.FieldLevelEncryptionProfile.Builderid(String id)The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.FieldLevelEncryptionProfile.BuilderlastModifiedTime(Instant lastModifiedTime)The last time the field-level encryption profile was updated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
FieldLevelEncryptionProfile.Builder id(String id)
The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.
- Parameters:
id- The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
FieldLevelEncryptionProfile.Builder lastModifiedTime(Instant lastModifiedTime)
The last time the field-level encryption profile was updated.
- Parameters:
lastModifiedTime- The last time the field-level encryption profile was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldLevelEncryptionProfileConfig
FieldLevelEncryptionProfile.Builder fieldLevelEncryptionProfileConfig(FieldLevelEncryptionProfileConfig fieldLevelEncryptionProfileConfig)
A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.
- Parameters:
fieldLevelEncryptionProfileConfig- A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldLevelEncryptionProfileConfig
default FieldLevelEncryptionProfile.Builder fieldLevelEncryptionProfileConfig(Consumer<FieldLevelEncryptionProfileConfig.Builder> fieldLevelEncryptionProfileConfig)
A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.
This is a convenience method that creates an instance of theFieldLevelEncryptionProfileConfig.Builderavoiding the need to create one manually viaFieldLevelEncryptionProfileConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofieldLevelEncryptionProfileConfig(FieldLevelEncryptionProfileConfig).- Parameters:
fieldLevelEncryptionProfileConfig- a consumer that will call methods onFieldLevelEncryptionProfileConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fieldLevelEncryptionProfileConfig(FieldLevelEncryptionProfileConfig)
-
-