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.TaskScheduledEventDetails

Description

 
Synopsis

Documentation

data TaskScheduledEventDetails Source #

Contains details about a task scheduled during an execution.

See: newTaskScheduledEventDetails smart constructor.

Constructors

TaskScheduledEventDetails' 

Fields

Instances

Instances details
Eq TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

Show TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

Generic TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

Associated Types

type Rep TaskScheduledEventDetails :: Type -> Type #

NFData TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

Hashable TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

FromJSON TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

type Rep TaskScheduledEventDetails Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.TaskScheduledEventDetails

type Rep TaskScheduledEventDetails = D1 ('MetaData "TaskScheduledEventDetails" "Amazonka.StepFunctions.Types.TaskScheduledEventDetails" "libZSservicesZSamazonka-stepfunctionsZSamazonka-stepfunctions" 'False) (C1 ('MetaCons "TaskScheduledEventDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "heartbeatInSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "timeoutInSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "resourceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "resource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "region") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "parameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text))))))

newTaskScheduledEventDetails Source #

Create a value of TaskScheduledEventDetails 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:heartbeatInSeconds:TaskScheduledEventDetails', taskScheduledEventDetails_heartbeatInSeconds - The maximum allowed duration between two heartbeats for the task.

$sel:timeoutInSeconds:TaskScheduledEventDetails', taskScheduledEventDetails_timeoutInSeconds - The maximum allowed duration of the task.

$sel:resourceType:TaskScheduledEventDetails', taskScheduledEventDetails_resourceType - The action of the resource called by a task state.

$sel:resource:TaskScheduledEventDetails', taskScheduledEventDetails_resource - The service name of the resource in a task state.

$sel:region:TaskScheduledEventDetails', taskScheduledEventDetails_region - The region of the scheduled task

$sel:parameters:TaskScheduledEventDetails', taskScheduledEventDetails_parameters - The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

taskScheduledEventDetails_heartbeatInSeconds :: Lens' TaskScheduledEventDetails (Maybe Integer) Source #

The maximum allowed duration between two heartbeats for the task.

taskScheduledEventDetails_resourceType :: Lens' TaskScheduledEventDetails Text Source #

The action of the resource called by a task state.

taskScheduledEventDetails_resource :: Lens' TaskScheduledEventDetails Text Source #

The service name of the resource in a task state.

taskScheduledEventDetails_parameters :: Lens' TaskScheduledEventDetails Text Source #

The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.