Interface TlsEncryption.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<TlsEncryption.Builder,,TlsEncryption> SdkBuilder<TlsEncryption.Builder,,TlsEncryption> SdkPojo
- Enclosing class:
TlsEncryption
@Mutable
@NotThreadSafe
public static interface TlsEncryption.Builder
extends SdkPojo, CopyableBuilder<TlsEncryption.Builder,TlsEncryption>
-
Method Summary
Modifier and TypeMethodDescriptiondefault TlsEncryption.BuilderencryptionConfiguration(Consumer<TlsEncryptionConfiguration.Builder> encryptionConfiguration) The configuration settings for the specified TLS encryption type.encryptionConfiguration(TlsEncryptionConfiguration encryptionConfiguration) The configuration settings for the specified TLS encryption type.encryptionType(String encryptionType) The type of TLS encryption to use for the connection.encryptionType(TlsEncryptionType encryptionType) The type of TLS encryption to use for the connection.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
encryptionType
The type of TLS encryption to use for the connection.
- Parameters:
encryptionType- The type of TLS encryption to use for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
encryptionType
The type of TLS encryption to use for the connection.
- Parameters:
encryptionType- The type of TLS encryption to use for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
encryptionConfiguration
The configuration settings for the specified TLS encryption type.
- Parameters:
encryptionConfiguration- The configuration settings for the specified TLS encryption type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default TlsEncryption.Builder encryptionConfiguration(Consumer<TlsEncryptionConfiguration.Builder> encryptionConfiguration) The configuration settings for the specified TLS encryption type.
This is a convenience method that creates an instance of theTlsEncryptionConfiguration.Builderavoiding the need to create one manually viaTlsEncryptionConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionConfiguration(TlsEncryptionConfiguration).- Parameters:
encryptionConfiguration- a consumer that will call methods onTlsEncryptionConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-