Class: Aws::ElasticBeanstalk::Types::Deployment
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::Deployment
- Defined in:
- gems/aws-sdk-elasticbeanstalk/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.
1596 1597 1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1596 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.
1596 1597 1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1596 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.
1596 1597 1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1596 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.
1596 1597 1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1596 class Deployment < Struct.new( :version_label, :deployment_id, :status, :deployment_time) SENSITIVE = [] include Aws::Structure end |