Interface EdgeDeploymentConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EdgeDeploymentConfig.Builder,EdgeDeploymentConfig>
,SdkBuilder<EdgeDeploymentConfig.Builder,EdgeDeploymentConfig>
,SdkPojo
- Enclosing class:
- EdgeDeploymentConfig
public static interface EdgeDeploymentConfig.Builder extends SdkPojo, CopyableBuilder<EdgeDeploymentConfig.Builder,EdgeDeploymentConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdgeDeploymentConfig.Builder
failureHandlingPolicy(String failureHandlingPolicy)
Toggle that determines whether to rollback to previous configuration if the current deployment fails.EdgeDeploymentConfig.Builder
failureHandlingPolicy(FailureHandlingPolicy failureHandlingPolicy)
Toggle that determines whether to rollback to previous configuration if the current deployment fails.-
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
-
failureHandlingPolicy
EdgeDeploymentConfig.Builder failureHandlingPolicy(String failureHandlingPolicy)
Toggle that determines whether to rollback to previous configuration if the current deployment fails. By default this is turned on. You may turn this off if you want to investigate the errors yourself.
- Parameters:
failureHandlingPolicy
- Toggle that determines whether to rollback to previous configuration if the current deployment fails. By default this is turned on. You may turn this off if you want to investigate the errors yourself.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureHandlingPolicy
,FailureHandlingPolicy
-
failureHandlingPolicy
EdgeDeploymentConfig.Builder failureHandlingPolicy(FailureHandlingPolicy failureHandlingPolicy)
Toggle that determines whether to rollback to previous configuration if the current deployment fails. By default this is turned on. You may turn this off if you want to investigate the errors yourself.
- Parameters:
failureHandlingPolicy
- Toggle that determines whether to rollback to previous configuration if the current deployment fails. By default this is turned on. You may turn this off if you want to investigate the errors yourself.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureHandlingPolicy
,FailureHandlingPolicy
-
-