public static interface Deployment.Builder extends CopyableBuilder<Deployment.Builder,Deployment>
Modifier and Type | Method and Description |
---|---|
Deployment.Builder |
deploymentId(Long deploymentId)
The ID of the deployment.
|
Deployment.Builder |
deploymentTime(Instant deploymentTime)
For in-progress deployments, the time that the deployment started.
|
Deployment.Builder |
status(String status)
The status of the deployment:
|
Deployment.Builder |
versionLabel(String versionLabel)
The version label of the application version in the deployment.
|
copy
applyMutation, build
Deployment.Builder versionLabel(String versionLabel)
The version label of the application version in the deployment.
versionLabel
- The version label of the application version in the deployment.Deployment.Builder deploymentId(Long deploymentId)
The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.
deploymentId
- The ID of the deployment. This number increases by one each time that you deploy source code or change
instance configuration settings.Deployment.Builder status(String status)
The status of the deployment:
In Progress
: The deployment is in progress.
Deployed
: The deployment succeeded.
Failed
: The deployment failed.
status
- The status of the deployment:
In Progress
: The deployment is in progress.
Deployed
: The deployment succeeded.
Failed
: The deployment failed.
Deployment.Builder deploymentTime(Instant deploymentTime)
For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
deploymentTime
- For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.