Struct aws_sdk_lexmodelsv2::model::FulfillmentUpdatesSpecification [−][src]
#[non_exhaustive]pub struct FulfillmentUpdatesSpecification {
pub active: Option<bool>,
pub start_response: Option<FulfillmentStartResponseSpecification>,
pub update_response: Option<FulfillmentUpdateResponseSpecification>,
pub timeout_in_seconds: Option<i32>,
}Expand description
Provides information for updating the user on the progress of fulfilling an intent.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.active: Option<bool>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.
start_response: Option<FulfillmentStartResponseSpecification>Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.
update_response: Option<FulfillmentUpdateResponseSpecification>Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.
timeout_in_seconds: Option<i32>The length of time that the fulfillment Lambda function should run before it times out.
Implementations
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.
Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.
Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.
The length of time that the fulfillment Lambda function should run before it times out.
Creates a new builder-style object to manufacture FulfillmentUpdatesSpecification
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for FulfillmentUpdatesSpecification
impl Sync for FulfillmentUpdatesSpecification
impl Unpin for FulfillmentUpdatesSpecification
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
