Interface SseConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SseConfig.Builder,SseConfig>,SdkBuilder<SseConfig.Builder,SseConfig>,SdkPojo
- Enclosing class:
- SseConfig
public static interface SseConfig.Builder extends SdkPojo, CopyableBuilder<SseConfig.Builder,SseConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SseConfig.BuilderkeyArn(String keyArn)An encryption key ARN.SseConfig.Buildertype(String type)The encryption type.SseConfig.Buildertype(EncryptionType type)The encryption type.-
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
-
type
SseConfig.Builder type(String type)
The encryption type.
- Parameters:
type- The encryption type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionType,EncryptionType
-
type
SseConfig.Builder type(EncryptionType type)
The encryption type.
- Parameters:
type- The encryption type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionType,EncryptionType
-
keyArn
SseConfig.Builder keyArn(String keyArn)
An encryption key ARN.
- Parameters:
keyArn- An encryption key ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-