libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodePipeline.Types.TransitionState

Description

 
Synopsis

Documentation

data TransitionState Source #

Represents information about the state of transitions between one stage and another stage.

See: newTransitionState smart constructor.

Constructors

TransitionState' 

Fields

Instances

Instances details
Eq TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

Read TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

Show TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

Generic TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

Associated Types

type Rep TransitionState :: Type -> Type #

NFData TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

Methods

rnf :: TransitionState -> () #

Hashable TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

FromJSON TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

type Rep TransitionState Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.TransitionState

type Rep TransitionState = D1 ('MetaData "TransitionState" "Amazonka.CodePipeline.Types.TransitionState" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "TransitionState'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "disabledReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "lastChangedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "lastChangedBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newTransitionState :: TransitionState Source #

Create a value of TransitionState with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:enabled:TransitionState', transitionState_enabled - Whether the transition between stages is enabled (true) or disabled (false).

$sel:disabledReason:TransitionState', transitionState_disabledReason - The user-specified reason why the transition between two stages of a pipeline was disabled.

$sel:lastChangedAt:TransitionState', transitionState_lastChangedAt - The timestamp when the transition state was last changed.

$sel:lastChangedBy:TransitionState', transitionState_lastChangedBy - The ID of the user who last changed the transition state.

transitionState_enabled :: Lens' TransitionState (Maybe Bool) Source #

Whether the transition between stages is enabled (true) or disabled (false).

transitionState_disabledReason :: Lens' TransitionState (Maybe Text) Source #

The user-specified reason why the transition between two stages of a pipeline was disabled.

transitionState_lastChangedAt :: Lens' TransitionState (Maybe UTCTime) Source #

The timestamp when the transition state was last changed.

transitionState_lastChangedBy :: Lens' TransitionState (Maybe Text) Source #

The ID of the user who last changed the transition state.