Interface DeploymentOverview.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeploymentOverview.Builder,DeploymentOverview>,SdkBuilder<DeploymentOverview.Builder,DeploymentOverview>,SdkPojo
- Enclosing class:
- DeploymentOverview
public static interface DeploymentOverview.Builder extends SdkPojo, CopyableBuilder<DeploymentOverview.Builder,DeploymentOverview>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentOverview.Builderfailed(Long failed)The number of instances in the deployment in a failed state.DeploymentOverview.BuilderinProgress(Long inProgress)The number of instances in which the deployment is in progress.DeploymentOverview.Builderpending(Long pending)The number of instances in the deployment in a pending state.DeploymentOverview.Builderready(Long ready)The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.DeploymentOverview.Builderskipped(Long skipped)The number of instances in the deployment in a skipped state.DeploymentOverview.Buildersucceeded(Long succeeded)The number of instances in the deployment to which revisions have been successfully deployed.-
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
-
pending
DeploymentOverview.Builder pending(Long pending)
The number of instances in the deployment in a pending state.
- Parameters:
pending- The number of instances in the deployment in a pending state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inProgress
DeploymentOverview.Builder inProgress(Long inProgress)
The number of instances in which the deployment is in progress.
- Parameters:
inProgress- The number of instances in which the deployment is in progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeeded
DeploymentOverview.Builder succeeded(Long succeeded)
The number of instances in the deployment to which revisions have been successfully deployed.
- Parameters:
succeeded- The number of instances in the deployment to which revisions have been successfully deployed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failed
DeploymentOverview.Builder failed(Long failed)
The number of instances in the deployment in a failed state.
- Parameters:
failed- The number of instances in the deployment in a failed state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skipped
DeploymentOverview.Builder skipped(Long skipped)
The number of instances in the deployment in a skipped state.
- Parameters:
skipped- The number of instances in the deployment in a skipped state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ready
DeploymentOverview.Builder ready(Long ready)
The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.
- Parameters:
ready- The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-