Interface AutoMLSecurityConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoMLSecurityConfig.Builder,AutoMLSecurityConfig>,SdkBuilder<AutoMLSecurityConfig.Builder,AutoMLSecurityConfig>,SdkPojo
- Enclosing class:
- AutoMLSecurityConfig
public static interface AutoMLSecurityConfig.Builder extends SdkPojo, CopyableBuilder<AutoMLSecurityConfig.Builder,AutoMLSecurityConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AutoMLSecurityConfig.BuilderenableInterContainerTrafficEncryption(Boolean enableInterContainerTrafficEncryption)Whether to use traffic encryption between the container layers.AutoMLSecurityConfig.BuildervolumeKmsKeyId(String volumeKmsKeyId)The key used to encrypt stored data.default AutoMLSecurityConfig.BuildervpcConfig(Consumer<VpcConfig.Builder> vpcConfig)The VPC configuration.AutoMLSecurityConfig.BuildervpcConfig(VpcConfig vpcConfig)The VPC configuration.-
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
-
volumeKmsKeyId
AutoMLSecurityConfig.Builder volumeKmsKeyId(String volumeKmsKeyId)
The key used to encrypt stored data.
- Parameters:
volumeKmsKeyId- The key used to encrypt stored data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enableInterContainerTrafficEncryption
AutoMLSecurityConfig.Builder enableInterContainerTrafficEncryption(Boolean enableInterContainerTrafficEncryption)
Whether to use traffic encryption between the container layers.
- Parameters:
enableInterContainerTrafficEncryption- Whether to use traffic encryption between the container layers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
AutoMLSecurityConfig.Builder vpcConfig(VpcConfig vpcConfig)
The VPC configuration.
- Parameters:
vpcConfig- The VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
default AutoMLSecurityConfig.Builder vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
The VPC configuration.
This is a convenience method that creates an instance of theVpcConfig.Builderavoiding the need to create one manually viaVpcConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovpcConfig(VpcConfig).- Parameters:
vpcConfig- a consumer that will call methods onVpcConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcConfig(VpcConfig)
-
-