ycliper

Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
Скачать

Call DynamoDB APIs with Step Functions (Insert , Get , Delete) | In-depth intuition

Call DynamoDB APIs with Step Functions

aws step functions

step functions

step function

how to

guide

tutorial

step by step

setup lambda function

setup step function

lamda

aws dynamodb

aws dynamo

dynamodb

dynamo

step function with dynamo

step function with dynamodb

aws step function with dynamo

aws step function with dynamodb

step functions with dynamodb

aws step functions with dynamodb

aws step functions dynamodb

aws step function dynamo tutorial

Автор: Knowledge Amplifier

Загружено: 2022-06-16

Просмотров: 2997

Описание: Step Functions can control certain AWS services directly from the Amazon States Language.
In this video one such direct integration is covered -- AWS' direct DynamoDB integration as part of a Step Function Task.

If you want to learn AWS Step Function in easiest way , you can refer this playlist --

Getting started with AWS Step Functions with AWS Lambda & Athena
   • Getting started with AWS Step Functions wi...  
AWS Step Function: Adding Retries and Error Notifications to a Lambda Function
   • AWS Step Function: Adding Retries and Erro...  
Call Your AWS Step Functions With API Gateway
   • Call Your AWS Step Functions With API Gateway  
Invoking State Machine with CloudWatch
   • Invoking State Machine with CloudWatch  
Build and orchestrate ETL pipelines using Amazon Athena and AWS Step Functions
   • Build and orchestrate ETL pipelines using ...  
Send message from Step Function to SQS directly | in-depth intuition
   • Send message from Step Function to SQS dir...  

Code:
-----------
{
"Comment": "A description of my state machine",
"StartAt": "Insert Data",
"States": {
"Insert Data": {
"Type": "Task",
"Resource": "arn:aws:states:::dynamodb:putItem",
"Parameters": {
"TableName": "studentinfo",
"Item.$": "$.item"
},
"ResultPath": "$.output",
"Next": "Pass"
},
"Pass": {
"Type": "Pass",
"InputPath": "$.item.roll_no.N",
"Next": "Get the data"
},
"Get the data": {
"Type": "Task",
"Resource": "arn:aws:states:::dynamodb:getItem",
"Parameters": {
"TableName": "studentinfo",
"Key": {
"roll_no": {
"N.$": "$"
}
}
},
"Next": "Wait"
},
"Wait": {
"Type": "Wait",
"Seconds": 60,
"Next": "DynamoDB DeleteItem"
},
"DynamoDB DeleteItem": {
"Type": "Task",
"Resource": "arn:aws:states:::dynamodb:deleteItem",
"Parameters": {
"TableName": "studentinfo",
"Key": {
"roll_no": {
"N.$": "$.Item.roll_no.N"
}
}
},
"End": true
}
}
}

Check this playlist for more AWS Projects in Big Data domain:
   • Demystifying Data Engineering with Cloud C...  

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Call DynamoDB APIs with Step Functions (Insert , Get , Delete) | In-depth intuition

Поделиться в:

Доступные форматы для скачивания:

Скачать видео

  • Информация по загрузке:

Скачать аудио

Похожие видео

© 2025 ycliper. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]