Class: Aws::CodeDeploy::Types::DeploymentOverview
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeploymentOverview
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about the deployment status of the instances in the deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Integer
The number of instances in the deployment in a failed state.
-
#in_progress ⇒ Integer
The number of instances in which the deployment is in progress.
-
#pending ⇒ Integer
The number of instances in the deployment in a pending state.
-
#ready ⇒ Integer
The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.
-
#skipped ⇒ Integer
The number of instances in the deployment in a skipped state.
-
#succeeded ⇒ Integer
The number of instances in the deployment to which revisions have been successfully deployed.
Instance Attribute Details
#failed ⇒ Integer
The number of instances in the deployment in a failed state.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |
#in_progress ⇒ Integer
The number of instances in which the deployment is in progress.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Integer
The number of instances in the deployment in a pending state.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |
#ready ⇒ Integer
The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |
#skipped ⇒ Integer
The number of instances in the deployment in a skipped state.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Integer
The number of instances in the deployment to which revisions have been successfully deployed.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1843 class DeploymentOverview < Struct.new( :pending, :in_progress, :succeeded, :failed, :skipped, :ready) SENSITIVE = [] include Aws::Structure end |