Interface DryRunResults.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DryRunResults.Builder,DryRunResults>
,SdkBuilder<DryRunResults.Builder,DryRunResults>
,SdkPojo
- Enclosing class:
- DryRunResults
public static interface DryRunResults.Builder extends SdkPojo, CopyableBuilder<DryRunResults.Builder,DryRunResults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DryRunResults.Builder
deploymentType(String deploymentType)
Specifies the deployment mechanism through which the update shall be applied on the domain.DryRunResults.Builder
message(String message)
Contains an optional message associated with the DryRunResults.-
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
-
deploymentType
DryRunResults.Builder deploymentType(String deploymentType)
Specifies the deployment mechanism through which the update shall be applied on the domain. Possible responses are
Blue/Green
(The update will require a blue/green deployment.)DynamicUpdate
(The update can be applied in-place without a Blue/Green deployment required.)Undetermined
(The domain is undergoing an update which needs to complete before the deployment type can be predicted.)None
(The configuration change matches the current configuration and will not result in any update.)- Parameters:
deploymentType
- Specifies the deployment mechanism through which the update shall be applied on the domain. Possible responses areBlue/Green
(The update will require a blue/green deployment.)DynamicUpdate
(The update can be applied in-place without a Blue/Green deployment required.)Undetermined
(The domain is undergoing an update which needs to complete before the deployment type can be predicted.)None
(The configuration change matches the current configuration and will not result in any update.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
DryRunResults.Builder message(String message)
Contains an optional message associated with the DryRunResults.
- Parameters:
message
- Contains an optional message associated with the DryRunResults.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-