integration/resources/templates/combination/api_with_disable_execute_api_endpoint.yaml (39 lines of code) (raw):
Parameters:
DisableExecuteApiEndpointValue:
Description: Variable to define if client can access default API endpoint.
Type: String
AllowedValues: [true, false]
Resources:
RestApiGateway:
Type: AWS::Serverless::Api
Properties:
StageName: Prod
DisableExecuteApiEndpoint:
Ref: DisableExecuteApiEndpointValue
RestApiFunction:
Type: AWS::Serverless::Function
Properties:
InlineCode: |
exports.handler = async (event) => {
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
};
return response;
};
Handler: index.handler
Runtime: nodejs18.x
Events:
Iam:
Type: Api
Properties:
RestApiId: !Ref RestApiGateway
Method: GET
Path: /
Outputs:
ApiUrl:
Description: API endpoint URL for Prod environment
Value:
Fn::Sub: https://${RestApiGateway}.execute-api.${AWS::Region}.${AWS::URLSuffix}/Prod/
Metadata:
SamTransformTest: true