-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapi-definition.yaml
More file actions
73 lines (72 loc) · 2.21 KB
/
api-definition.yaml
File metadata and controls
73 lines (72 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
openapi: "3.0.1"
info:
title: "Secretfree API"
version: "v0.1"
paths:
/new:
post:
responses:
200:
description: "OK"
content:
application/json:
schema:
type: array
500:
description: "Internal Server Error"
content: {}
x-amazon-apigateway-integration:
uri:
arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:secretfree-acmpca/invocations
responses:
default:
statusCode: "200"
passthroughBehavior: "when_no_match"
httpMethod: "POST"
contentHandling: "CONVERT_TO_TEXT"
type: "aws_proxy"
/proto:
post:
responses:
200:
description: "OK"
content:
application/json:
schema:
type: array
500:
description: "Internal Server Error"
content: {}
x-amazon-apigateway-integration:
uri:
arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:secretfree-iotcore/invocations
responses:
default:
statusCode: "200"
passthroughBehavior: "when_no_match"
httpMethod: "POST"
contentHandling: "CONVERT_TO_TEXT"
type: "aws_proxy"
components:
securitySchemes:
fingerprint-authorizer:
type: apiKey
name: Authorization
in: header
x-amazon-apigateway-authtype: custom
x-amazon-apigateway-authorizer:
type: token
authorizerUri: arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:${AWS::Partition}:lambda:${AWS::Region}:${AWS::AccountId}:function:authorizer/invocations
authorizerCredentials: arn:aws:iam::aws:policy/AmazonDynamoDBReadOnlyAccess
identityValidationExpression: ^x-[a-z]+
authorizerResultTtlInSeconds: 60
schemas:
Task:
type: object
properties:
id:
type: integer
name:
type: string
description:
type: string