cdk-lambda-subminute 2.0.313 → 2.0.314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/arc-zonal-shift-2022-10-30.min.json +319 -17
  5. package/node_modules/aws-sdk/apis/arc-zonal-shift-2022-10-30.paginators.json +6 -0
  6. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +654 -589
  7. package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.min.json +397 -0
  9. package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.paginators.json +14 -0
  10. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +542 -7
  11. package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.min.json +178 -0
  13. package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.paginators.json +4 -0
  14. package/node_modules/aws-sdk/apis/metadata.json +8 -0
  15. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +436 -74
  16. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +12 -0
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1227 -992
  18. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  19. package/node_modules/aws-sdk/clients/all.js +3 -1
  20. package/node_modules/aws-sdk/clients/arczonalshift.d.ts +330 -30
  21. package/node_modules/aws-sdk/clients/glue.d.ts +83 -2
  22. package/node_modules/aws-sdk/clients/marketplaceagreement.d.ts +602 -0
  23. package/node_modules/aws-sdk/clients/marketplaceagreement.js +18 -0
  24. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +883 -2
  25. package/node_modules/aws-sdk/clients/marketplacedeployment.d.ts +172 -0
  26. package/node_modules/aws-sdk/clients/marketplacedeployment.js +18 -0
  27. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +463 -6
  28. package/node_modules/aws-sdk/clients/sagemaker.d.ts +264 -2
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +85 -11
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +553 -10
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +40 -40
  33. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. package/package.json +2 -2
@@ -0,0 +1,178 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2023-01-25",
5
+ "endpointPrefix": "deployment-marketplace",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "AWS Marketplace Deployment Service",
9
+ "serviceId": "Marketplace Deployment",
10
+ "signatureVersion": "v4",
11
+ "signingName": "aws-marketplace",
12
+ "uid": "marketplace-deployment-2023-01-25"
13
+ },
14
+ "operations": {
15
+ "ListTagsForResource": {
16
+ "http": {
17
+ "method": "GET",
18
+ "requestUri": "/tags/{resourceArn}",
19
+ "responseCode": 200
20
+ },
21
+ "input": {
22
+ "type": "structure",
23
+ "required": [
24
+ "resourceArn"
25
+ ],
26
+ "members": {
27
+ "resourceArn": {
28
+ "location": "uri",
29
+ "locationName": "resourceArn"
30
+ }
31
+ }
32
+ },
33
+ "output": {
34
+ "type": "structure",
35
+ "members": {
36
+ "tags": {
37
+ "shape": "S4"
38
+ }
39
+ }
40
+ }
41
+ },
42
+ "PutDeploymentParameter": {
43
+ "http": {
44
+ "requestUri": "/catalogs/{catalog}/products/{productId}/deployment-parameters",
45
+ "responseCode": 200
46
+ },
47
+ "input": {
48
+ "type": "structure",
49
+ "required": [
50
+ "agreementId",
51
+ "catalog",
52
+ "deploymentParameter",
53
+ "productId"
54
+ ],
55
+ "members": {
56
+ "agreementId": {},
57
+ "catalog": {
58
+ "location": "uri",
59
+ "locationName": "catalog"
60
+ },
61
+ "clientToken": {
62
+ "idempotencyToken": true
63
+ },
64
+ "deploymentParameter": {
65
+ "type": "structure",
66
+ "required": [
67
+ "name",
68
+ "secretString"
69
+ ],
70
+ "members": {
71
+ "name": {},
72
+ "secretString": {
73
+ "type": "string",
74
+ "sensitive": true
75
+ }
76
+ }
77
+ },
78
+ "expirationDate": {
79
+ "type": "timestamp",
80
+ "timestampFormat": "iso8601"
81
+ },
82
+ "productId": {
83
+ "location": "uri",
84
+ "locationName": "productId"
85
+ },
86
+ "tags": {
87
+ "shape": "Sd"
88
+ }
89
+ }
90
+ },
91
+ "output": {
92
+ "type": "structure",
93
+ "required": [
94
+ "agreementId",
95
+ "deploymentParameterId",
96
+ "resourceArn"
97
+ ],
98
+ "members": {
99
+ "agreementId": {},
100
+ "deploymentParameterId": {},
101
+ "resourceArn": {},
102
+ "tags": {
103
+ "shape": "Sd"
104
+ }
105
+ }
106
+ },
107
+ "idempotent": true
108
+ },
109
+ "TagResource": {
110
+ "http": {
111
+ "requestUri": "/tags/{resourceArn}",
112
+ "responseCode": 204
113
+ },
114
+ "input": {
115
+ "type": "structure",
116
+ "required": [
117
+ "resourceArn"
118
+ ],
119
+ "members": {
120
+ "resourceArn": {
121
+ "location": "uri",
122
+ "locationName": "resourceArn"
123
+ },
124
+ "tags": {
125
+ "shape": "S4"
126
+ }
127
+ }
128
+ },
129
+ "output": {
130
+ "type": "structure",
131
+ "members": {}
132
+ }
133
+ },
134
+ "UntagResource": {
135
+ "http": {
136
+ "method": "DELETE",
137
+ "requestUri": "/tags/{resourceArn}",
138
+ "responseCode": 204
139
+ },
140
+ "input": {
141
+ "type": "structure",
142
+ "required": [
143
+ "resourceArn",
144
+ "tagKeys"
145
+ ],
146
+ "members": {
147
+ "resourceArn": {
148
+ "location": "uri",
149
+ "locationName": "resourceArn"
150
+ },
151
+ "tagKeys": {
152
+ "location": "querystring",
153
+ "locationName": "tagKeys",
154
+ "type": "list",
155
+ "member": {}
156
+ }
157
+ }
158
+ },
159
+ "output": {
160
+ "type": "structure",
161
+ "members": {}
162
+ },
163
+ "idempotent": true
164
+ }
165
+ },
166
+ "shapes": {
167
+ "S4": {
168
+ "type": "map",
169
+ "key": {},
170
+ "value": {}
171
+ },
172
+ "Sd": {
173
+ "type": "map",
174
+ "key": {},
175
+ "value": {}
176
+ }
177
+ }
178
+ }
@@ -1396,5 +1396,13 @@
1396
1396
  },
1397
1397
  "cleanroomsml": {
1398
1398
  "name": "CleanRoomsML"
1399
+ },
1400
+ "marketplaceagreement": {
1401
+ "prefix": "marketplace-agreement",
1402
+ "name": "MarketplaceAgreement"
1403
+ },
1404
+ "marketplacedeployment": {
1405
+ "prefix": "marketplace-deployment",
1406
+ "name": "MarketplaceDeployment"
1399
1407
  }
1400
1408
  }