Interface FieldLevelEncryptionProfile.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionProfile.Builder,FieldLevelEncryptionProfile>
,SdkBuilder<FieldLevelEncryptionProfile.Builder,FieldLevelEncryptionProfile>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionProfile
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.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.FieldLevelEncryptionProfile.Builder
fieldLevelEncryptionProfileConfig(FieldLevelEncryptionProfileConfig fieldLevelEncryptionProfileConfig)
A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.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.FieldLevelEncryptionProfile.Builder
lastModifiedTime(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, 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.Builder
avoiding the need to create one manually viaFieldLevelEncryptionProfileConfig.builder()
.When the
Consumer
completes,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)
-
-