libZSservicesZSamazonka-stepfunctionsZSamazonka-stepfunctions
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.StepFunctions.Types.StateExitedEventDetails

Description

 
Synopsis

Documentation

data StateExitedEventDetails Source #

Contains details about an exit from a state during an execution.

See: newStateExitedEventDetails smart constructor.

Constructors

StateExitedEventDetails' 

Fields

  • output :: Maybe (Sensitive Text)

    The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

  • outputDetails :: Maybe HistoryEventExecutionDataDetails

    Contains details about the output of an execution history event.

  • name :: Text

    The name of the state.

    A name must not contain:

    • white space
    • brackets < > { } [ ]
    • wildcard characters ? *
    • special characters " # % \ ^ | ~ ` $ & , ; : /
    • control characters (U+0000-001F, U+007F-009F)

    To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

Instances

Instances details
Eq StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

Show StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

Generic StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

Associated Types

type Rep StateExitedEventDetails :: Type -> Type #

NFData StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

Methods

rnf :: StateExitedEventDetails -> () #

Hashable StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

FromJSON StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

type Rep StateExitedEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.StateExitedEventDetails

type Rep StateExitedEventDetails = D1 ('MetaData "StateExitedEventDetails" "Amazonka.StepFunctions.Types.StateExitedEventDetails" "libZSservicesZSamazonka-stepfunctionsZSamazonka-stepfunctions" 'False) (C1 ('MetaCons "StateExitedEventDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "output") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "outputDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe HistoryEventExecutionDataDetails)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newStateExitedEventDetails Source #

Create a value of StateExitedEventDetails 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:output:StateExitedEventDetails', stateExitedEventDetails_output - The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

$sel:outputDetails:StateExitedEventDetails', stateExitedEventDetails_outputDetails - Contains details about the output of an execution history event.

$sel:name:StateExitedEventDetails', stateExitedEventDetails_name - The name of the state.

A name must not contain:

  • white space
  • brackets < > { } [ ]
  • wildcard characters ? *
  • special characters " # % \ ^ | ~ ` $ & , ; : /
  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

stateExitedEventDetails_output :: Lens' StateExitedEventDetails (Maybe Text) Source #

The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

stateExitedEventDetails_outputDetails :: Lens' StateExitedEventDetails (Maybe HistoryEventExecutionDataDetails) Source #

Contains details about the output of an execution history event.

stateExitedEventDetails_name :: Lens' StateExitedEventDetails Text Source #

The name of the state.

A name must not contain:

  • white space
  • brackets < > { } [ ]
  • wildcard characters ? *
  • special characters " # % \ ^ | ~ ` $ & , ; : /
  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.