Class: Aws::CodePipeline::Types::TransitionState
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::TransitionState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents information about the state of transitions between one stage and another stage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disabled_reason ⇒ String
The user-specified reason why the transition between two stages of a pipeline was disabled.
-
#enabled ⇒ Boolean
Whether the transition between stages is enabled (true) or disabled (false).
-
#last_changed_at ⇒ Time
The timestamp when the transition state was last changed.
-
#last_changed_by ⇒ String
The ID of the user who last changed the transition state.
Instance Attribute Details
#disabled_reason ⇒ String
The user-specified reason why the transition between two stages of a pipeline was disabled.
5479 5480 5481 5482 5483 5484 5485 5486 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 5479 class TransitionState < Struct.new( :enabled, :last_changed_by, :last_changed_at, :disabled_reason) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Whether the transition between stages is enabled (true) or disabled (false).
5479 5480 5481 5482 5483 5484 5485 5486 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 5479 class TransitionState < Struct.new( :enabled, :last_changed_by, :last_changed_at, :disabled_reason) SENSITIVE = [] include Aws::Structure end |
#last_changed_at ⇒ Time
The timestamp when the transition state was last changed.
5479 5480 5481 5482 5483 5484 5485 5486 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 5479 class TransitionState < Struct.new( :enabled, :last_changed_by, :last_changed_at, :disabled_reason) SENSITIVE = [] include Aws::Structure end |
#last_changed_by ⇒ String
The ID of the user who last changed the transition state.
5479 5480 5481 5482 5483 5484 5485 5486 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 5479 class TransitionState < Struct.new( :enabled, :last_changed_by, :last_changed_at, :disabled_reason) SENSITIVE = [] include Aws::Structure end |