gpt4 book ai didi

amazon-web-services - 您可以使用 Cloud Formation 创建使用计划吗?

转载 作者:行者123 更新时间:2023-12-04 08:11:17 27 4
gpt4 key购买 nike

就像标题一样。我可以仅使用 Cloud Formation 在 AWS 上部署内容。现在,我尝试使用 API key 来保护我的 API 网关,看起来我需要一个使用计划。这里的文档似乎没有涵盖它:http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html

你们中有人遇到过类似的问题吗?如果有,您是如何解决的?

最佳答案

AWS 有 today released创造的能力AWS::ApiGateway::UsagePlan使用云形成模板

现在AWS::ApiGateway::UsagePlanKey可以使用 CloudFormation 创建。

此代码片段演示了如何在 CloudFormation 模板中使用UsagePlan和UsagePlanKey以及APIKey

UsagePlan:
Type: 'AWS::ApiGateway::UsagePlan'
Properties:
ApiStages:
- ApiId: !Ref MyRestApi
Stage: !Ref Prod
Description: Customer ABCs usage plan
Quota:
Limit: 5000
Period: MONTH
Throttle:
BurstLimit: 200
RateLimit: 100
UsagePlanName: Plan_ABC

ApiKey:
Type: 'AWS::ApiGateway::ApiKey'
Properties:
Name: TestApiKey
Description: CloudFormation API Key V1
Enabled: 'true'

UsagePlanKey:
Type: 'AWS::ApiGateway::UsagePlanKey'
Properties:
KeyId: !Ref ApiKey
KeyType: API_KEY
UsagePlanId: !Ref UsagePlan

关于amazon-web-services - 您可以使用 Cloud Formation 创建使用计划吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39910734/

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