Interface InventoryEncryption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InventoryEncryption.Builder,InventoryEncryption>,SdkBuilder<InventoryEncryption.Builder,InventoryEncryption>,SdkPojo
- Enclosing class:
- InventoryEncryption
@Mutable @NotThreadSafe public static interface InventoryEncryption.Builder extends SdkPojo, CopyableBuilder<InventoryEncryption.Builder,InventoryEncryption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default InventoryEncryption.Builderssekms(Consumer<SSEKMS.Builder> ssekms)Specifies the use of SSE-KMS to encrypt delivered inventory reports.InventoryEncryption.Builderssekms(SSEKMS ssekms)Specifies the use of SSE-KMS to encrypt delivered inventory reports.default InventoryEncryption.Buildersses3(Consumer<SSES3.Builder> sses3)Specifies the use of SSE-S3 to encrypt delivered inventory reports.InventoryEncryption.Buildersses3(SSES3 sses3)Specifies the use of SSE-S3 to encrypt delivered inventory reports.-
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
-
sses3
InventoryEncryption.Builder sses3(SSES3 sses3)
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
- Parameters:
sses3- Specifies the use of SSE-S3 to encrypt delivered inventory reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sses3
default InventoryEncryption.Builder sses3(Consumer<SSES3.Builder> sses3)
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
This is a convenience method that creates an instance of theSSES3.Builderavoiding the need to create one manually viaSSES3.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosses3(SSES3).- Parameters:
sses3- a consumer that will call methods onSSES3.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sses3(SSES3)
-
ssekms
InventoryEncryption.Builder ssekms(SSEKMS ssekms)
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
- Parameters:
ssekms- Specifies the use of SSE-KMS to encrypt delivered inventory reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ssekms
default InventoryEncryption.Builder ssekms(Consumer<SSEKMS.Builder> ssekms)
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
This is a convenience method that creates an instance of theSSEKMS.Builderavoiding the need to create one manually viaSSEKMS.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tossekms(SSEKMS).- Parameters:
ssekms- a consumer that will call methods onSSEKMS.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ssekms(SSEKMS)
-
-