Class: Aws::ElasticBeanstalk::Types::Deployment
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::Deployment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Information about an application version deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ Integer
The ID of the deployment.
-
#deployment_time ⇒ Time
For in-progress deployments, the time that the deployment started.
-
#status ⇒ String
The status of the deployment:.
-
#version_label ⇒ String
The version label of the application version in the deployment.
Instance Attribute Details
#deployment_id ⇒ Integer
The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.
1538 1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1538 class Deployment < Struct.new( :version_label, :deployment_id, :status, :deployment_time) SENSITIVE = [] include Aws::Structure end |
#deployment_time ⇒ Time
For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
1538 1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1538 class Deployment < Struct.new( :version_label, :deployment_id, :status, :deployment_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the deployment:
-
‘In Progress` : The deployment is in progress.
-
‘Deployed` : The deployment succeeded.
-
‘Failed` : The deployment failed.
1538 1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1538 class Deployment < Struct.new( :version_label, :deployment_id, :status, :deployment_time) SENSITIVE = [] include Aws::Structure end |
#version_label ⇒ String
The version label of the application version in the deployment.
1538 1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1538 class Deployment < Struct.new( :version_label, :deployment_id, :status, :deployment_time) SENSITIVE = [] include Aws::Structure end |