This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Comment": "A description of my state machine", | |
| "StartAt": "Choice", | |
| "States": { | |
| "Choice": { | |
| "Type": "Choice", | |
| "Choices": [ | |
| { | |
| "Variable": "$.type", | |
| "StringEquals": "PURCHASE", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import boto3 | |
| import json | |
| bedrock = boto3.client( | |
| service_name='bedrock-runtime', | |
| region_name='us-east-1' | |
| ) | |
| input = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Records": [ | |
| { | |
| "eventVersion": "2.0", | |
| "eventSource": "aws:s3", | |
| "awsRegion": "us-east-1", | |
| "eventTime": "1970-01-01T00:00:00.000Z", | |
| "eventName": "ObjectCreated:Put", | |
| "userIdentity": { | |
| "principalId": "EXAMPLE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| skin rose | |
| autonumber | |
| title Customer Order Workflow on Website | |
| actor Customer | |
| participant Website | |
| participant OrderService | |
| participant CustomerService |
OlderNewer