Class: Aws::CodePipeline::Types::StageDeclaration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::StageDeclaration
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Represents information about a stage and its definition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<Types::ActionDeclaration>
The actions included in a stage.
-
#blockers ⇒ Array<Types::BlockerDeclaration>
Reserved for future use.
-
#name ⇒ String
The name of the stage.
Instance Attribute Details
#actions ⇒ Array<Types::ActionDeclaration>
The actions included in a stage.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3525 class StageDeclaration < Struct.new( :name, :blockers, :actions) SENSITIVE = [] include Aws::Structure end |
#blockers ⇒ Array<Types::BlockerDeclaration>
Reserved for future use.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3525 class StageDeclaration < Struct.new( :name, :blockers, :actions) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the stage.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3525 class StageDeclaration < Struct.new( :name, :blockers, :actions) SENSITIVE = [] include Aws::Structure end |