Interface FieldLevelEncryptionConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionConfig.Builder,FieldLevelEncryptionConfig>
,SdkBuilder<FieldLevelEncryptionConfig.Builder,FieldLevelEncryptionConfig>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionConfig
public static interface FieldLevelEncryptionConfig.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionConfig.Builder,FieldLevelEncryptionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FieldLevelEncryptionConfig.Builder
callerReference(String callerReference)
A unique number that ensures the request can't be replayed.FieldLevelEncryptionConfig.Builder
comment(String comment)
An optional comment about the configuration.default FieldLevelEncryptionConfig.Builder
contentTypeProfileConfig(Consumer<ContentTypeProfileConfig.Builder> contentTypeProfileConfig)
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.FieldLevelEncryptionConfig.Builder
contentTypeProfileConfig(ContentTypeProfileConfig contentTypeProfileConfig)
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.default FieldLevelEncryptionConfig.Builder
queryArgProfileConfig(Consumer<QueryArgProfileConfig.Builder> queryArgProfileConfig)
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.FieldLevelEncryptionConfig.Builder
queryArgProfileConfig(QueryArgProfileConfig queryArgProfileConfig)
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.-
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
-
callerReference
FieldLevelEncryptionConfig.Builder callerReference(String callerReference)
A unique number that ensures the request can't be replayed.
- Parameters:
callerReference
- A unique number that ensures the request can't be replayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
FieldLevelEncryptionConfig.Builder comment(String comment)
An optional comment about the configuration. The comment cannot be longer than 128 characters.
- Parameters:
comment
- An optional comment about the configuration. The comment cannot be longer than 128 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryArgProfileConfig
FieldLevelEncryptionConfig.Builder queryArgProfileConfig(QueryArgProfileConfig queryArgProfileConfig)
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- Parameters:
queryArgProfileConfig
- A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryArgProfileConfig
default FieldLevelEncryptionConfig.Builder queryArgProfileConfig(Consumer<QueryArgProfileConfig.Builder> queryArgProfileConfig)
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
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
FieldLevelEncryptionConfig.Builder contentTypeProfileConfig(ContentTypeProfileConfig contentTypeProfileConfig)
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- Parameters:
contentTypeProfileConfig
- A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentTypeProfileConfig
default FieldLevelEncryptionConfig.Builder contentTypeProfileConfig(Consumer<ContentTypeProfileConfig.Builder> contentTypeProfileConfig)
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
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)
-
-