Class: Aws::CodePipeline::Types::TransitionState
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::TransitionState
- Defined in:
- gems/aws-sdk-codepipeline/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.
5496 5497 5498 5499 5500 5501 5502 5503 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5496 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).
5496 5497 5498 5499 5500 5501 5502 5503 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5496 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.
5496 5497 5498 5499 5500 5501 5502 5503 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5496 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.
5496 5497 5498 5499 5500 5501 5502 5503 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5496 class TransitionState < Struct.new( :enabled, :last_changed_by, :last_changed_at, :disabled_reason) SENSITIVE = [] include Aws::Structure end |