Interface FieldLevelEncryptionProfileSummary.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionProfileSummary.Builder,FieldLevelEncryptionProfileSummary>
,SdkBuilder<FieldLevelEncryptionProfileSummary.Builder,FieldLevelEncryptionProfileSummary>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionProfileSummary
public static interface FieldLevelEncryptionProfileSummary.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionProfileSummary.Builder,FieldLevelEncryptionProfileSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FieldLevelEncryptionProfileSummary.Builder
comment(String comment)
An optional comment for the field-level encryption profile summary.default FieldLevelEncryptionProfileSummary.Builder
encryptionEntities(Consumer<EncryptionEntities.Builder> encryptionEntities)
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.FieldLevelEncryptionProfileSummary.Builder
encryptionEntities(EncryptionEntities encryptionEntities)
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.FieldLevelEncryptionProfileSummary.Builder
id(String id)
ID for the field-level encryption profile summary.FieldLevelEncryptionProfileSummary.Builder
lastModifiedTime(Instant lastModifiedTime)
The time when the field-level encryption profile summary was last updated.FieldLevelEncryptionProfileSummary.Builder
name(String name)
Name for the field-level encryption profile summary.-
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
FieldLevelEncryptionProfileSummary.Builder id(String id)
ID for the field-level encryption profile summary.
- Parameters:
id
- ID for the field-level encryption profile summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
FieldLevelEncryptionProfileSummary.Builder lastModifiedTime(Instant lastModifiedTime)
The time when the field-level encryption profile summary was last updated.
- Parameters:
lastModifiedTime
- The time when the field-level encryption profile summary was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
FieldLevelEncryptionProfileSummary.Builder name(String name)
Name for the field-level encryption profile summary.
- Parameters:
name
- Name for the field-level encryption profile summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionEntities
FieldLevelEncryptionProfileSummary.Builder encryptionEntities(EncryptionEntities encryptionEntities)
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
- Parameters:
encryptionEntities
- A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionEntities
default FieldLevelEncryptionProfileSummary.Builder encryptionEntities(Consumer<EncryptionEntities.Builder> encryptionEntities)
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
This is a convenience method that creates an instance of theEncryptionEntities.Builder
avoiding the need to create one manually viaEncryptionEntities.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toencryptionEntities(EncryptionEntities)
.- Parameters:
encryptionEntities
- a consumer that will call methods onEncryptionEntities.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryptionEntities(EncryptionEntities)
-
comment
FieldLevelEncryptionProfileSummary.Builder comment(String comment)
An optional comment for the field-level encryption profile summary. The comment cannot be longer than 128 characters.
- Parameters:
comment
- An optional comment for the field-level encryption profile summary. The comment cannot be longer than 128 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-