Created
December 4, 2020 21:08
-
-
Save sergueyarellano/e95f546645888dcc5aa9c855e9aa7da1 to your computer and use it in GitHub Desktop.
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
ApiGatewayMethodGetRoot: | |
Type: AWS::ApiGateway::Method | |
Description: Located at root resource to proxy to S3 bucket website | |
Properties: | |
HttpMethod: GET | |
ResourceId: | |
Fn::GetAtt: [ApiGatewayRestApi, RootResourceId] | |
RestApiId: !Ref ApiGatewayRestApi | |
ApiKeyRequired: false | |
AuthorizationType: NONE | |
Integration: | |
IntegrationHttpMethod: GET | |
Type: HTTP_PROXY | |
Uri: | |
Fn::GetAtt: [ SwaggerSite, WebsiteURL ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment