Interface BlueGreenDeploymentTask.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BlueGreenDeploymentTask.Builder,BlueGreenDeploymentTask>,SdkBuilder<BlueGreenDeploymentTask.Builder,BlueGreenDeploymentTask>,SdkPojo
- Enclosing class:
- BlueGreenDeploymentTask
public static interface BlueGreenDeploymentTask.Builder extends SdkPojo, CopyableBuilder<BlueGreenDeploymentTask.Builder,BlueGreenDeploymentTask>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlueGreenDeploymentTask.Buildername(String name)The name of the blue/green deployment task.BlueGreenDeploymentTask.Builderstatus(String status)The status of the blue/green deployment task.-
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
-
name
BlueGreenDeploymentTask.Builder name(String name)
The name of the blue/green deployment task.
- Parameters:
name- The name of the blue/green deployment task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
BlueGreenDeploymentTask.Builder status(String status)
The status of the blue/green deployment task.
Valid Values:
-
PENDING- The resource is being prepared for deployment. -
IN_PROGRESS- The resource is being deployed. -
COMPLETED- The resource has been deployed. -
FAILED- Deployment of the resource failed.
- Parameters:
status- The status of the blue/green deployment task.Valid Values:
-
PENDING- The resource is being prepared for deployment. -
IN_PROGRESS- The resource is being deployed. -
COMPLETED- The resource has been deployed. -
FAILED- Deployment of the resource failed.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-