Seleziona le tue preferenze relative ai cookie

Utilizziamo cookie essenziali e strumenti simili necessari per fornire il nostro sito e i nostri servizi. Utilizziamo i cookie prestazionali per raccogliere statistiche anonime in modo da poter capire come i clienti utilizzano il nostro sito e apportare miglioramenti. I cookie essenziali non possono essere disattivati, ma puoi fare clic su \"Personalizza\" o \"Rifiuta\" per rifiutare i cookie prestazionali.

Se sei d'accordo, AWS e le terze parti approvate utilizzeranno i cookie anche per fornire utili funzionalità del sito, ricordare le tue preferenze e visualizzare contenuti pertinenti, inclusa la pubblicità pertinente. Per continuare senza accettare questi cookie, fai clic su \"Continua\" o \"Rifiuta\". Per effettuare scelte più dettagliate o saperne di più, fai clic su \"Personalizza\".

Example flow in Amazon Connect Flow language - Amazon Connect
Questa pagina non è tradotta nella tua lingua. Richiedi traduzione

Example flow in Amazon Connect Flow language

The following example shows a JSON string that represents the content of the flow. It shows a simple flow that plays a prompt using static text and disconnects.

To learn how to get block identifiers, we recommend creating a new flow in Amazon Connect console, and then calling the DescribeContactFlow API for it.

{ "Version": "2019-10-30", //A string representing the version of the Flow. Currently the only supported version is 2019-10-30. "StartAction": "12345678-1234-1234-1234-123456789012", //A string representing the first Action to run when the flow starts running. //In this case, it's the identifier of the Play prompt block. //The value of this field must match the Identifier of an Action in the Actions list. "Metadata": { //An object that may be filled in with data as desired. "EntryPointPosition": { "x": 88, "y": 100 }, "ActionMetadata": { "12345678-1234-1234-1234-123456789012": {//The identifier of the Play prompt block. "Position": { "x": 270, "y": 98 } }, "abcdef-abcd-abcd-abcd-abcdefghijkl": {//The identifier of the Disconnect/hang up block. "Position": { "x": 545, "y": 92 } } } }, "Actions": [ //A list of individual Action objects. These Actions are the definition of the Flow's behavior and are detailed below. //A single Flow may have no more than 250 Actions defined. { "Identifier": "12345678-1234-1234-1234-123456789012", //The identifier of the Play prompt block. "Type": "MessageParticipant", //This is the flow action. "Transitions": { "NextAction": "abcdef-abcd-abcd-abcd-abcdefghijkl", //The identifier of the Disconnect/hang up block. "Errors": [], "Conditions": [] }, "Parameters": { "Text": "Thanks for calling the sample flow!" } }, { "Identifier": "abcdef-abcd-abcd-abcd-abcdefghijkl", //The identifier of the Disconnect/hang up block. "Type": "DisconnectParticipant", //This is the flow action. "Transitions": {}, "Parameters": {} } ] }

Argomento successivo:

Actions

Argomento precedente:

Concepts
PrivacyCondizioni del sitoPreferenze cookie
© 2025, Amazon Web Services, Inc. o società affiliate. Tutti i diritti riservati.