gpt4 book ai didi

amazon-web-services - 使用 SAM 创建 API key 和使用计划

转载 作者:行者123 更新时间:2023-12-03 14:33:33 29 4
gpt4 key购买 nike

我正在学习 AWS SAM,但无法找到有关如何通过 SAM 模板创建 API key 和使用计划的信息。

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31

Resources:
GetFamilyByIdFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs8.10
Handler: get-family-by-id.handler
CodeUri: get-family-by-id/
Timeout: 300
Events:
GetFamilyByIdApi:
Type: Api
Properties:
Path: "/family/{id}"
Method: get

我想创建一个 API key 并将其与上面指定的“GetFamilyByIdApi”的使用计划相关联。任何帮助,将不胜感激。

最佳答案

经过一番挖掘,我想通了。此解决方案是当您想要自己定义 api key 的值而不是让 API Gateway 生成值时。我假设存在一个变化。请注意,“HvgnApi”指的是我的 Swagger 定义(类型:AWS::Serverless::Api)。享受!

  ApiKey: 
Type: AWS::ApiGateway::ApiKey
Properties:
Name: !Join ["", [{"Ref": "AWS::StackName"}, "-apikey"]]
Description: "CloudFormation API Key V1"
Enabled: true
GenerateDistinctId: false
Value: abcdefg123456
StageKeys:
- RestApiId: !Ref HvgnApi
StageName: prod

ApiUsagePlan:
Type: "AWS::ApiGateway::UsagePlan"
Properties:
ApiStages:
- ApiId: !Ref HvgnApi
Stage: prod
Description: !Join [" ", [{"Ref": "AWS::StackName"}, "usage plan"]]
Quota:
Limit: 1000
Period: MONTH
UsagePlanName: !Join ["", [{"Ref": "AWS::StackName"}, "-usage-plan"]]

ApiUsagePlanKey:
Type: "AWS::ApiGateway::UsagePlanKey"
DependsOn:
- HvgnApi
Properties:
KeyId: !Ref ApiKey
KeyType: API_KEY
UsagePlanId: !Ref ApiUsagePlan

关于amazon-web-services - 使用 SAM 创建 API key 和使用计划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54973513/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com