Interface FieldLevelEncryptionSummary.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionSummary.Builder,FieldLevelEncryptionSummary>
,SdkBuilder<FieldLevelEncryptionSummary.Builder,FieldLevelEncryptionSummary>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionSummary
public static interface FieldLevelEncryptionSummary.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionSummary.Builder,FieldLevelEncryptionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FieldLevelEncryptionSummary.Builder
comment(String comment)
An optional comment about the field-level encryption item.default FieldLevelEncryptionSummary.Builder
contentTypeProfileConfig(Consumer<ContentTypeProfileConfig.Builder> contentTypeProfileConfig)
A summary of a content type-profile mapping.FieldLevelEncryptionSummary.Builder
contentTypeProfileConfig(ContentTypeProfileConfig contentTypeProfileConfig)
A summary of a content type-profile mapping.FieldLevelEncryptionSummary.Builder
id(String id)
The unique ID of a field-level encryption item.FieldLevelEncryptionSummary.Builder
lastModifiedTime(Instant lastModifiedTime)
The last time that the summary of field-level encryption items was modified.default FieldLevelEncryptionSummary.Builder
queryArgProfileConfig(Consumer<QueryArgProfileConfig.Builder> queryArgProfileConfig)
A summary of a query argument-profile mapping.FieldLevelEncryptionSummary.Builder
queryArgProfileConfig(QueryArgProfileConfig queryArgProfileConfig)
A summary of a query argument-profile mapping.-
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
FieldLevelEncryptionSummary.Builder id(String id)
The unique ID of a field-level encryption item.
- Parameters:
id
- The unique ID of a field-level encryption item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
FieldLevelEncryptionSummary.Builder lastModifiedTime(Instant lastModifiedTime)
The last time that the summary of field-level encryption items was modified.
- Parameters:
lastModifiedTime
- The last time that the summary of field-level encryption items was modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
FieldLevelEncryptionSummary.Builder comment(String comment)
An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.
- Parameters:
comment
- An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryArgProfileConfig
FieldLevelEncryptionSummary.Builder queryArgProfileConfig(QueryArgProfileConfig queryArgProfileConfig)
A summary of a query argument-profile mapping.
- Parameters:
queryArgProfileConfig
- A summary of a query argument-profile mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryArgProfileConfig
default FieldLevelEncryptionSummary.Builder queryArgProfileConfig(Consumer<QueryArgProfileConfig.Builder> queryArgProfileConfig)
A summary of a query argument-profile mapping.
This is a convenience method that creates an instance of theQueryArgProfileConfig.Builder
avoiding the need to create one manually viaQueryArgProfileConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toqueryArgProfileConfig(QueryArgProfileConfig)
.- Parameters:
queryArgProfileConfig
- a consumer that will call methods onQueryArgProfileConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
queryArgProfileConfig(QueryArgProfileConfig)
-
contentTypeProfileConfig
FieldLevelEncryptionSummary.Builder contentTypeProfileConfig(ContentTypeProfileConfig contentTypeProfileConfig)
A summary of a content type-profile mapping.
- Parameters:
contentTypeProfileConfig
- A summary of a content type-profile mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentTypeProfileConfig
default FieldLevelEncryptionSummary.Builder contentTypeProfileConfig(Consumer<ContentTypeProfileConfig.Builder> contentTypeProfileConfig)
A summary of a content type-profile mapping.
This is a convenience method that creates an instance of theContentTypeProfileConfig.Builder
avoiding the need to create one manually viaContentTypeProfileConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocontentTypeProfileConfig(ContentTypeProfileConfig)
.- Parameters:
contentTypeProfileConfig
- a consumer that will call methods onContentTypeProfileConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
contentTypeProfileConfig(ContentTypeProfileConfig)
-
-