У нас вы можете посмотреть бесплатно Create a dynamic web application или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Task 1: Create an S3 bucket with any name. Upload two objects; index.html and error.html. Make both objects public. Enable Static website function from S3 properties by supplying both the file name. Copy the endpoints, and the properties of the Static website function and check the webpage display through the web browser Task 2: Go to AWS Lambda function and create the function as name hello world by choosing python runtime environment. Code import json import boto3 from time import gmtime, strftime define the handler function that the Lambda service will use as an entry point def lambda_handler(event, context): extract values from the event object we got from the Lambda service and store in a variable name = event['firstName'] +' '+ event['lastName'] return a properly formatted JSON object return { 'statusCode': 200, 'body': json.dumps('Hello from Lambda, ' + name) } Task 3: Go to Amazon API Gateway, Select REST API, and create a new API Task 4: Go to DynamoDB and Create a Table as HelloWorldDatabase and Primary Key as ID. Copy the ARN point of the DynamoDB table (The ARN point will be accessible by the lambda function as per the IAM policy) Task 5: Now go to the Created Lambda function and click on the permission Tab, attach the inline policy, and provide ARN of the table File URL: https://github.com/suchikumari31/Dyna... Task 6: Go back to the created Lambda function and click on configure the Lambda Editor will open then copy the python code File URL: https://github.com/suchikumari31/Dyna... Task 7: Go to created S3 bucket and upload the index.html file https://github.com/suchikumari31/Dyna...