amazonka-lexv2-models-2.0: Amazon Lex Model Building V2 SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Description

 
Synopsis

Documentation

data FulfillmentUpdatesSpecification Source #

Provides information for updating the user on the progress of fulfilling an intent.

See: newFulfillmentUpdatesSpecification smart constructor.

Constructors

FulfillmentUpdatesSpecification' 

Fields

Instances

Instances details
FromJSON FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

ToJSON FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Generic FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Associated Types

type Rep FulfillmentUpdatesSpecification :: Type -> Type #

Read FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Show FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

NFData FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Eq FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

Hashable FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

type Rep FulfillmentUpdatesSpecification Source # 
Instance details

Defined in Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification

type Rep FulfillmentUpdatesSpecification = D1 ('MetaData "FulfillmentUpdatesSpecification" "Amazonka.LexV2Models.Types.FulfillmentUpdatesSpecification" "amazonka-lexv2-models-2.0-5mExjJXBfuO6j0ascNcayE" 'False) (C1 ('MetaCons "FulfillmentUpdatesSpecification'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "startResponse") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FulfillmentStartResponseSpecification)) :*: S1 ('MetaSel ('Just "timeoutInSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "updateResponse") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FulfillmentUpdateResponseSpecification)) :*: S1 ('MetaSel ('Just "active") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))))

newFulfillmentUpdatesSpecification Source #

Create a value of FulfillmentUpdatesSpecification 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:startResponse:FulfillmentUpdatesSpecification', fulfillmentUpdatesSpecification_startResponse - Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.

$sel:timeoutInSeconds:FulfillmentUpdatesSpecification', fulfillmentUpdatesSpecification_timeoutInSeconds - The length of time that the fulfillment Lambda function should run before it times out.

$sel:updateResponse:FulfillmentUpdatesSpecification', fulfillmentUpdatesSpecification_updateResponse - Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.

$sel:active:FulfillmentUpdatesSpecification', fulfillmentUpdatesSpecification_active - Determines whether fulfillment updates are sent to the user. When this field is true, updates are sent.

If the active field is set to true, the startResponse, updateResponse, and timeoutInSeconds fields are required.

fulfillmentUpdatesSpecification_startResponse :: Lens' FulfillmentUpdatesSpecification (Maybe FulfillmentStartResponseSpecification) Source #

Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.

fulfillmentUpdatesSpecification_timeoutInSeconds :: Lens' FulfillmentUpdatesSpecification (Maybe Natural) Source #

The length of time that the fulfillment Lambda function should run before it times out.

fulfillmentUpdatesSpecification_updateResponse :: Lens' FulfillmentUpdatesSpecification (Maybe FulfillmentUpdateResponseSpecification) Source #

Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.

fulfillmentUpdatesSpecification_active :: Lens' FulfillmentUpdatesSpecification Bool Source #

Determines whether fulfillment updates are sent to the user. When this field is true, updates are sent.

If the active field is set to true, the startResponse, updateResponse, and timeoutInSeconds fields are required.