Interface LastDeploymentInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LastDeploymentInfo.Builder,LastDeploymentInfo>,SdkBuilder<LastDeploymentInfo.Builder,LastDeploymentInfo>,SdkPojo
- Enclosing class:
- LastDeploymentInfo
public static interface LastDeploymentInfo.Builder extends SdkPojo, CopyableBuilder<LastDeploymentInfo.Builder,LastDeploymentInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastDeploymentInfo.BuildercreateTime(Instant createTime)A timestamp that indicates when the most recent deployment to the deployment group started.LastDeploymentInfo.BuilderdeploymentId(String deploymentId)The unique ID of a deployment.LastDeploymentInfo.BuilderendTime(Instant endTime)A timestamp that indicates when the most recent deployment to the deployment group was complete.LastDeploymentInfo.Builderstatus(String status)The status of the most recent deployment.LastDeploymentInfo.Builderstatus(DeploymentStatus status)The status of the most recent deployment.-
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
-
deploymentId
LastDeploymentInfo.Builder deploymentId(String deploymentId)
The unique ID of a deployment.
- Parameters:
deploymentId- The unique ID of a deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
LastDeploymentInfo.Builder status(String status)
The status of the most recent deployment.
- Parameters:
status- The status of the most recent deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
status
LastDeploymentInfo.Builder status(DeploymentStatus status)
The status of the most recent deployment.
- Parameters:
status- The status of the most recent deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
endTime
LastDeploymentInfo.Builder endTime(Instant endTime)
A timestamp that indicates when the most recent deployment to the deployment group was complete.
- Parameters:
endTime- A timestamp that indicates when the most recent deployment to the deployment group was complete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTime
LastDeploymentInfo.Builder createTime(Instant createTime)
A timestamp that indicates when the most recent deployment to the deployment group started.
- Parameters:
createTime- A timestamp that indicates when the most recent deployment to the deployment group started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-