@aws-sdk/client-app-mesh 3.300.0 → 3.301.0
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.
- package/dist-types/commands/CreateGatewayRouteCommand.d.ts +30 -30
- package/dist-types/commands/CreateMeshCommand.d.ts +6 -6
- package/dist-types/commands/CreateRouteCommand.d.ts +41 -56
- package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +39 -39
- package/dist-types/commands/CreateVirtualNodeCommand.d.ts +60 -72
- package/dist-types/commands/CreateVirtualRouterCommand.d.ts +7 -7
- package/dist-types/commands/CreateVirtualServiceCommand.d.ts +7 -7
- package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMeshCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRouteCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMeshCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRouteCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewayRoutesCommand.d.ts +1 -1
- package/dist-types/commands/ListMeshesCommand.d.ts +1 -1
- package/dist-types/commands/ListRoutesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualRoutersCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualServicesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +28 -28
- package/dist-types/commands/UpdateMeshCommand.d.ts +4 -4
- package/dist-types/commands/UpdateRouteCommand.d.ts +39 -54
- package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +37 -37
- package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +58 -70
- package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +5 -5
- package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +5 -5
- package/package.json +3 -3
|
@@ -27,40 +27,40 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
|
|
|
27
27
|
* import { AppMeshClient, UpdateGatewayRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
|
|
28
28
|
* // const { AppMeshClient, UpdateGatewayRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
|
|
29
29
|
* const client = new AppMeshClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateGatewayRouteInput
|
|
31
31
|
* gatewayRouteName: "STRING_VALUE", // required
|
|
32
32
|
* meshName: "STRING_VALUE", // required
|
|
33
33
|
* virtualGatewayName: "STRING_VALUE", // required
|
|
34
|
-
* spec: {
|
|
34
|
+
* spec: { // GatewayRouteSpec
|
|
35
35
|
* priority: Number("int"),
|
|
36
|
-
* httpRoute: {
|
|
37
|
-
* match: {
|
|
36
|
+
* httpRoute: { // HttpGatewayRoute
|
|
37
|
+
* match: { // HttpGatewayRouteMatch
|
|
38
38
|
* prefix: "STRING_VALUE",
|
|
39
|
-
* path: {
|
|
39
|
+
* path: { // HttpPathMatch
|
|
40
40
|
* exact: "STRING_VALUE",
|
|
41
41
|
* regex: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
|
-
* queryParameters: [
|
|
44
|
-
* {
|
|
43
|
+
* queryParameters: [ // HttpQueryParameters
|
|
44
|
+
* { // HttpQueryParameter
|
|
45
45
|
* name: "STRING_VALUE", // required
|
|
46
|
-
* match: {
|
|
46
|
+
* match: { // QueryParameterMatch
|
|
47
47
|
* exact: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
50
|
* ],
|
|
51
51
|
* method: "STRING_VALUE",
|
|
52
|
-
* hostname: {
|
|
52
|
+
* hostname: { // GatewayRouteHostnameMatch
|
|
53
53
|
* exact: "STRING_VALUE",
|
|
54
54
|
* suffix: "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
|
-
* headers: [
|
|
57
|
-
* {
|
|
56
|
+
* headers: [ // HttpGatewayRouteHeaders
|
|
57
|
+
* { // HttpGatewayRouteHeader
|
|
58
58
|
* name: "STRING_VALUE", // required
|
|
59
59
|
* invert: true || false,
|
|
60
|
-
* match: { // Union: only one key present
|
|
60
|
+
* match: { // HeaderMatchMethod Union: only one key present
|
|
61
61
|
* exact: "STRING_VALUE",
|
|
62
62
|
* regex: "STRING_VALUE",
|
|
63
|
-
* range: {
|
|
63
|
+
* range: { // MatchRange
|
|
64
64
|
* start: Number("long"), // required
|
|
65
65
|
* end: Number("long"), // required
|
|
66
66
|
* },
|
|
@@ -71,22 +71,22 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
|
|
|
71
71
|
* ],
|
|
72
72
|
* port: Number("int"),
|
|
73
73
|
* },
|
|
74
|
-
* action: {
|
|
75
|
-
* target: {
|
|
76
|
-
* virtualService: {
|
|
74
|
+
* action: { // HttpGatewayRouteAction
|
|
75
|
+
* target: { // GatewayRouteTarget
|
|
76
|
+
* virtualService: { // GatewayRouteVirtualService
|
|
77
77
|
* virtualServiceName: "STRING_VALUE", // required
|
|
78
78
|
* },
|
|
79
79
|
* port: Number("int"),
|
|
80
80
|
* },
|
|
81
|
-
* rewrite: {
|
|
82
|
-
* prefix: {
|
|
81
|
+
* rewrite: { // HttpGatewayRouteRewrite
|
|
82
|
+
* prefix: { // HttpGatewayRoutePrefixRewrite
|
|
83
83
|
* defaultPrefix: "STRING_VALUE",
|
|
84
84
|
* value: "STRING_VALUE",
|
|
85
85
|
* },
|
|
86
|
-
* path: {
|
|
86
|
+
* path: { // HttpGatewayRoutePathRewrite
|
|
87
87
|
* exact: "STRING_VALUE",
|
|
88
88
|
* },
|
|
89
|
-
* hostname: {
|
|
89
|
+
* hostname: { // GatewayRouteHostnameRewrite
|
|
90
90
|
* defaultTargetHostname: "STRING_VALUE",
|
|
91
91
|
* },
|
|
92
92
|
* },
|
|
@@ -116,7 +116,7 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
|
|
|
116
116
|
* {
|
|
117
117
|
* name: "STRING_VALUE", // required
|
|
118
118
|
* invert: true || false,
|
|
119
|
-
* match: {
|
|
119
|
+
* match: {// Union: only one key present
|
|
120
120
|
* exact: "STRING_VALUE",
|
|
121
121
|
* regex: "STRING_VALUE",
|
|
122
122
|
* range: {
|
|
@@ -151,18 +151,18 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
|
|
|
151
151
|
* },
|
|
152
152
|
* },
|
|
153
153
|
* },
|
|
154
|
-
* grpcRoute: {
|
|
155
|
-
* match: {
|
|
154
|
+
* grpcRoute: { // GrpcGatewayRoute
|
|
155
|
+
* match: { // GrpcGatewayRouteMatch
|
|
156
156
|
* serviceName: "STRING_VALUE",
|
|
157
157
|
* hostname: {
|
|
158
158
|
* exact: "STRING_VALUE",
|
|
159
159
|
* suffix: "STRING_VALUE",
|
|
160
160
|
* },
|
|
161
|
-
* metadata: [
|
|
162
|
-
* {
|
|
161
|
+
* metadata: [ // GrpcGatewayRouteMetadataList
|
|
162
|
+
* { // GrpcGatewayRouteMetadata
|
|
163
163
|
* name: "STRING_VALUE", // required
|
|
164
164
|
* invert: true || false,
|
|
165
|
-
* match: { // Union: only one key present
|
|
165
|
+
* match: { // GrpcMetadataMatchMethod Union: only one key present
|
|
166
166
|
* exact: "STRING_VALUE",
|
|
167
167
|
* regex: "STRING_VALUE",
|
|
168
168
|
* range: {
|
|
@@ -176,14 +176,14 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
|
|
|
176
176
|
* ],
|
|
177
177
|
* port: Number("int"),
|
|
178
178
|
* },
|
|
179
|
-
* action: {
|
|
179
|
+
* action: { // GrpcGatewayRouteAction
|
|
180
180
|
* target: {
|
|
181
181
|
* virtualService: {
|
|
182
182
|
* virtualServiceName: "STRING_VALUE", // required
|
|
183
183
|
* },
|
|
184
184
|
* port: Number("int"),
|
|
185
185
|
* },
|
|
186
|
-
* rewrite: {
|
|
186
|
+
* rewrite: { // GrpcGatewayRouteRewrite
|
|
187
187
|
* hostname: {
|
|
188
188
|
* defaultTargetHostname: "STRING_VALUE",
|
|
189
189
|
* },
|
|
@@ -26,13 +26,13 @@ export interface UpdateMeshCommandOutput extends UpdateMeshOutput, __MetadataBea
|
|
|
26
26
|
* import { AppMeshClient, UpdateMeshCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
|
|
27
27
|
* // const { AppMeshClient, UpdateMeshCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
|
|
28
28
|
* const client = new AppMeshClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateMeshInput
|
|
30
30
|
* meshName: "STRING_VALUE", // required
|
|
31
|
-
* spec: {
|
|
32
|
-
* egressFilter: {
|
|
31
|
+
* spec: { // MeshSpec
|
|
32
|
+
* egressFilter: { // EgressFilter
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* },
|
|
35
|
-
* serviceDiscovery: {
|
|
35
|
+
* serviceDiscovery: { // MeshServiceDiscovery
|
|
36
36
|
* ipPreference: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* },
|
|
@@ -26,37 +26,37 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
26
26
|
* import { AppMeshClient, UpdateRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
|
|
27
27
|
* // const { AppMeshClient, UpdateRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
|
|
28
28
|
* const client = new AppMeshClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateRouteInput
|
|
30
30
|
* routeName: "STRING_VALUE", // required
|
|
31
31
|
* meshName: "STRING_VALUE", // required
|
|
32
32
|
* virtualRouterName: "STRING_VALUE", // required
|
|
33
|
-
* spec: {
|
|
33
|
+
* spec: { // RouteSpec
|
|
34
34
|
* priority: Number("int"),
|
|
35
|
-
* httpRoute: {
|
|
36
|
-
* match: {
|
|
35
|
+
* httpRoute: { // HttpRoute
|
|
36
|
+
* match: { // HttpRouteMatch
|
|
37
37
|
* prefix: "STRING_VALUE",
|
|
38
|
-
* path: {
|
|
38
|
+
* path: { // HttpPathMatch
|
|
39
39
|
* exact: "STRING_VALUE",
|
|
40
40
|
* regex: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
|
-
* queryParameters: [
|
|
43
|
-
* {
|
|
42
|
+
* queryParameters: [ // HttpQueryParameters
|
|
43
|
+
* { // HttpQueryParameter
|
|
44
44
|
* name: "STRING_VALUE", // required
|
|
45
|
-
* match: {
|
|
45
|
+
* match: { // QueryParameterMatch
|
|
46
46
|
* exact: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* method: "STRING_VALUE",
|
|
51
51
|
* scheme: "STRING_VALUE",
|
|
52
|
-
* headers: [
|
|
53
|
-
* {
|
|
52
|
+
* headers: [ // HttpRouteHeaders
|
|
53
|
+
* { // HttpRouteHeader
|
|
54
54
|
* name: "STRING_VALUE", // required
|
|
55
55
|
* invert: true || false,
|
|
56
|
-
* match: { // Union: only one key present
|
|
56
|
+
* match: { // HeaderMatchMethod Union: only one key present
|
|
57
57
|
* exact: "STRING_VALUE",
|
|
58
58
|
* regex: "STRING_VALUE",
|
|
59
|
-
* range: {
|
|
59
|
+
* range: { // MatchRange
|
|
60
60
|
* start: Number("long"), // required
|
|
61
61
|
* end: Number("long"), // required
|
|
62
62
|
* },
|
|
@@ -67,29 +67,29 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
67
67
|
* ],
|
|
68
68
|
* port: Number("int"),
|
|
69
69
|
* },
|
|
70
|
-
* action: {
|
|
71
|
-
* weightedTargets: [ // required
|
|
72
|
-
* {
|
|
70
|
+
* action: { // HttpRouteAction
|
|
71
|
+
* weightedTargets: [ // WeightedTargets // required
|
|
72
|
+
* { // WeightedTarget
|
|
73
73
|
* virtualNode: "STRING_VALUE", // required
|
|
74
74
|
* weight: Number("int"), // required
|
|
75
75
|
* port: Number("int"),
|
|
76
76
|
* },
|
|
77
77
|
* ],
|
|
78
78
|
* },
|
|
79
|
-
* retryPolicy: {
|
|
80
|
-
* perRetryTimeout: {
|
|
79
|
+
* retryPolicy: { // HttpRetryPolicy
|
|
80
|
+
* perRetryTimeout: { // Duration
|
|
81
81
|
* value: Number("long"),
|
|
82
82
|
* unit: "STRING_VALUE",
|
|
83
83
|
* },
|
|
84
84
|
* maxRetries: Number("long"), // required
|
|
85
|
-
* httpRetryEvents: [
|
|
85
|
+
* httpRetryEvents: [ // HttpRetryPolicyEvents
|
|
86
86
|
* "STRING_VALUE",
|
|
87
87
|
* ],
|
|
88
|
-
* tcpRetryEvents: [
|
|
88
|
+
* tcpRetryEvents: [ // TcpRetryPolicyEvents
|
|
89
89
|
* "STRING_VALUE",
|
|
90
90
|
* ],
|
|
91
91
|
* },
|
|
92
|
-
* timeout: {
|
|
92
|
+
* timeout: { // HttpTimeout
|
|
93
93
|
* perRequest: {
|
|
94
94
|
* value: Number("long"),
|
|
95
95
|
* unit: "STRING_VALUE",
|
|
@@ -100,8 +100,8 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
100
100
|
* },
|
|
101
101
|
* },
|
|
102
102
|
* },
|
|
103
|
-
* tcpRoute: {
|
|
104
|
-
* action: {
|
|
103
|
+
* tcpRoute: { // TcpRoute
|
|
104
|
+
* action: { // TcpRouteAction
|
|
105
105
|
* weightedTargets: [ // required
|
|
106
106
|
* {
|
|
107
107
|
* virtualNode: "STRING_VALUE", // required
|
|
@@ -110,13 +110,13 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
110
110
|
* },
|
|
111
111
|
* ],
|
|
112
112
|
* },
|
|
113
|
-
* timeout: {
|
|
113
|
+
* timeout: { // TcpTimeout
|
|
114
114
|
* idle: {
|
|
115
115
|
* value: Number("long"),
|
|
116
116
|
* unit: "STRING_VALUE",
|
|
117
117
|
* },
|
|
118
118
|
* },
|
|
119
|
-
* match: {
|
|
119
|
+
* match: { // TcpRouteMatch
|
|
120
120
|
* port: Number("int"),
|
|
121
121
|
* },
|
|
122
122
|
* },
|
|
@@ -141,7 +141,7 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
141
141
|
* {
|
|
142
142
|
* name: "STRING_VALUE", // required
|
|
143
143
|
* invert: true || false,
|
|
144
|
-
* match: {
|
|
144
|
+
* match: {// Union: only one key present
|
|
145
145
|
* exact: "STRING_VALUE",
|
|
146
146
|
* regex: "STRING_VALUE",
|
|
147
147
|
* range: {
|
|
@@ -178,18 +178,12 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
178
178
|
* ],
|
|
179
179
|
* },
|
|
180
180
|
* timeout: {
|
|
181
|
-
* perRequest:
|
|
182
|
-
*
|
|
183
|
-
* unit: "STRING_VALUE",
|
|
184
|
-
* },
|
|
185
|
-
* idle: {
|
|
186
|
-
* value: Number("long"),
|
|
187
|
-
* unit: "STRING_VALUE",
|
|
188
|
-
* },
|
|
181
|
+
* perRequest: "<Duration>",
|
|
182
|
+
* idle: "<Duration>",
|
|
189
183
|
* },
|
|
190
184
|
* },
|
|
191
|
-
* grpcRoute: {
|
|
192
|
-
* action: {
|
|
185
|
+
* grpcRoute: { // GrpcRoute
|
|
186
|
+
* action: { // GrpcRouteAction
|
|
193
187
|
* weightedTargets: [ // required
|
|
194
188
|
* {
|
|
195
189
|
* virtualNode: "STRING_VALUE", // required
|
|
@@ -198,14 +192,14 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
198
192
|
* },
|
|
199
193
|
* ],
|
|
200
194
|
* },
|
|
201
|
-
* match: {
|
|
195
|
+
* match: { // GrpcRouteMatch
|
|
202
196
|
* serviceName: "STRING_VALUE",
|
|
203
197
|
* methodName: "STRING_VALUE",
|
|
204
|
-
* metadata: [
|
|
205
|
-
* {
|
|
198
|
+
* metadata: [ // GrpcRouteMetadataList
|
|
199
|
+
* { // GrpcRouteMetadata
|
|
206
200
|
* name: "STRING_VALUE", // required
|
|
207
201
|
* invert: true || false,
|
|
208
|
-
* match: { // Union: only one key present
|
|
202
|
+
* match: { // GrpcRouteMetadataMatchMethod Union: only one key present
|
|
209
203
|
* exact: "STRING_VALUE",
|
|
210
204
|
* regex: "STRING_VALUE",
|
|
211
205
|
* range: {
|
|
@@ -219,11 +213,8 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
219
213
|
* ],
|
|
220
214
|
* port: Number("int"),
|
|
221
215
|
* },
|
|
222
|
-
* retryPolicy: {
|
|
223
|
-
* perRetryTimeout:
|
|
224
|
-
* value: Number("long"),
|
|
225
|
-
* unit: "STRING_VALUE",
|
|
226
|
-
* },
|
|
216
|
+
* retryPolicy: { // GrpcRetryPolicy
|
|
217
|
+
* perRetryTimeout: "<Duration>", // required
|
|
227
218
|
* maxRetries: Number("long"), // required
|
|
228
219
|
* httpRetryEvents: [
|
|
229
220
|
* "STRING_VALUE",
|
|
@@ -231,19 +222,13 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
|
|
|
231
222
|
* tcpRetryEvents: [
|
|
232
223
|
* "STRING_VALUE",
|
|
233
224
|
* ],
|
|
234
|
-
* grpcRetryEvents: [
|
|
225
|
+
* grpcRetryEvents: [ // GrpcRetryPolicyEvents
|
|
235
226
|
* "STRING_VALUE",
|
|
236
227
|
* ],
|
|
237
228
|
* },
|
|
238
|
-
* timeout: {
|
|
239
|
-
* perRequest:
|
|
240
|
-
*
|
|
241
|
-
* unit: "STRING_VALUE",
|
|
242
|
-
* },
|
|
243
|
-
* idle: {
|
|
244
|
-
* value: Number("long"),
|
|
245
|
-
* unit: "STRING_VALUE",
|
|
246
|
-
* },
|
|
229
|
+
* timeout: { // GrpcTimeout
|
|
230
|
+
* perRequest: "<Duration>",
|
|
231
|
+
* idle: "<Duration>",
|
|
247
232
|
* },
|
|
248
233
|
* },
|
|
249
234
|
* },
|
|
@@ -26,43 +26,43 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
|
|
|
26
26
|
* import { AppMeshClient, UpdateVirtualGatewayCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
|
|
27
27
|
* // const { AppMeshClient, UpdateVirtualGatewayCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
|
|
28
28
|
* const client = new AppMeshClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateVirtualGatewayInput
|
|
30
30
|
* virtualGatewayName: "STRING_VALUE", // required
|
|
31
31
|
* meshName: "STRING_VALUE", // required
|
|
32
|
-
* spec: {
|
|
33
|
-
* backendDefaults: {
|
|
34
|
-
* clientPolicy: {
|
|
35
|
-
* tls: {
|
|
32
|
+
* spec: { // VirtualGatewaySpec
|
|
33
|
+
* backendDefaults: { // VirtualGatewayBackendDefaults
|
|
34
|
+
* clientPolicy: { // VirtualGatewayClientPolicy
|
|
35
|
+
* tls: { // VirtualGatewayClientPolicyTls
|
|
36
36
|
* enforce: true || false,
|
|
37
|
-
* ports: [
|
|
37
|
+
* ports: [ // PortSet
|
|
38
38
|
* Number("int"),
|
|
39
39
|
* ],
|
|
40
|
-
* certificate: { // Union: only one key present
|
|
41
|
-
* file: {
|
|
40
|
+
* certificate: { // VirtualGatewayClientTlsCertificate Union: only one key present
|
|
41
|
+
* file: { // VirtualGatewayListenerTlsFileCertificate
|
|
42
42
|
* certificateChain: "STRING_VALUE", // required
|
|
43
43
|
* privateKey: "STRING_VALUE", // required
|
|
44
44
|
* },
|
|
45
|
-
* sds: {
|
|
45
|
+
* sds: { // VirtualGatewayListenerTlsSdsCertificate
|
|
46
46
|
* secretName: "STRING_VALUE", // required
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
|
-
* validation: {
|
|
50
|
-
* trust: { // Union: only one key present
|
|
51
|
-
* acm: {
|
|
52
|
-
* certificateAuthorityArns: [ // required
|
|
49
|
+
* validation: { // VirtualGatewayTlsValidationContext
|
|
50
|
+
* trust: { // VirtualGatewayTlsValidationContextTrust Union: only one key present
|
|
51
|
+
* acm: { // VirtualGatewayTlsValidationContextAcmTrust
|
|
52
|
+
* certificateAuthorityArns: [ // VirtualGatewayCertificateAuthorityArns // required
|
|
53
53
|
* "STRING_VALUE",
|
|
54
54
|
* ],
|
|
55
55
|
* },
|
|
56
|
-
* file: {
|
|
56
|
+
* file: { // VirtualGatewayTlsValidationContextFileTrust
|
|
57
57
|
* certificateChain: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
59
|
-
* sds: {
|
|
59
|
+
* sds: { // VirtualGatewayTlsValidationContextSdsTrust
|
|
60
60
|
* secretName: "STRING_VALUE", // required
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
63
|
-
* subjectAlternativeNames: {
|
|
64
|
-
* match: {
|
|
65
|
-
* exact: [ // required
|
|
63
|
+
* subjectAlternativeNames: { // SubjectAlternativeNames
|
|
64
|
+
* match: { // SubjectAlternativeNameMatchers
|
|
65
|
+
* exact: [ // SubjectAlternativeNameList // required
|
|
66
66
|
* "STRING_VALUE",
|
|
67
67
|
* ],
|
|
68
68
|
* },
|
|
@@ -71,9 +71,9 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
|
|
|
71
71
|
* },
|
|
72
72
|
* },
|
|
73
73
|
* },
|
|
74
|
-
* listeners: [ // required
|
|
75
|
-
* {
|
|
76
|
-
* healthCheck: {
|
|
74
|
+
* listeners: [ // VirtualGatewayListeners // required
|
|
75
|
+
* { // VirtualGatewayListener
|
|
76
|
+
* healthCheck: { // VirtualGatewayHealthCheckPolicy
|
|
77
77
|
* timeoutMillis: Number("long"), // required
|
|
78
78
|
* intervalMillis: Number("long"), // required
|
|
79
79
|
* protocol: "STRING_VALUE", // required
|
|
@@ -82,14 +82,14 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
|
|
|
82
82
|
* healthyThreshold: Number("int"), // required
|
|
83
83
|
* unhealthyThreshold: Number("int"), // required
|
|
84
84
|
* },
|
|
85
|
-
* portMapping: {
|
|
85
|
+
* portMapping: { // VirtualGatewayPortMapping
|
|
86
86
|
* port: Number("int"), // required
|
|
87
87
|
* protocol: "STRING_VALUE", // required
|
|
88
88
|
* },
|
|
89
|
-
* tls: {
|
|
89
|
+
* tls: { // VirtualGatewayListenerTls
|
|
90
90
|
* mode: "STRING_VALUE", // required
|
|
91
|
-
* validation: {
|
|
92
|
-
* trust: { // Union: only one key present
|
|
91
|
+
* validation: { // VirtualGatewayListenerTlsValidationContext
|
|
92
|
+
* trust: { // VirtualGatewayListenerTlsValidationContextTrust Union: only one key present
|
|
93
93
|
* file: {
|
|
94
94
|
* certificateChain: "STRING_VALUE", // required
|
|
95
95
|
* },
|
|
@@ -105,8 +105,8 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
|
|
|
105
105
|
* },
|
|
106
106
|
* },
|
|
107
107
|
* },
|
|
108
|
-
* certificate: { // Union: only one key present
|
|
109
|
-
* acm: {
|
|
108
|
+
* certificate: { // VirtualGatewayListenerTlsCertificate Union: only one key present
|
|
109
|
+
* acm: { // VirtualGatewayListenerTlsAcmCertificate
|
|
110
110
|
* certificateArn: "STRING_VALUE", // required
|
|
111
111
|
* },
|
|
112
112
|
* file: {
|
|
@@ -118,28 +118,28 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
|
|
|
118
118
|
* },
|
|
119
119
|
* },
|
|
120
120
|
* },
|
|
121
|
-
* connectionPool: { // Union: only one key present
|
|
122
|
-
* http: {
|
|
121
|
+
* connectionPool: { // VirtualGatewayConnectionPool Union: only one key present
|
|
122
|
+
* http: { // VirtualGatewayHttpConnectionPool
|
|
123
123
|
* maxConnections: Number("int"), // required
|
|
124
124
|
* maxPendingRequests: Number("int"),
|
|
125
125
|
* },
|
|
126
|
-
* http2: {
|
|
126
|
+
* http2: { // VirtualGatewayHttp2ConnectionPool
|
|
127
127
|
* maxRequests: Number("int"), // required
|
|
128
128
|
* },
|
|
129
|
-
* grpc: {
|
|
129
|
+
* grpc: { // VirtualGatewayGrpcConnectionPool
|
|
130
130
|
* maxRequests: Number("int"), // required
|
|
131
131
|
* },
|
|
132
132
|
* },
|
|
133
133
|
* },
|
|
134
134
|
* ],
|
|
135
|
-
* logging: {
|
|
136
|
-
* accessLog: { // Union: only one key present
|
|
137
|
-
* file: {
|
|
135
|
+
* logging: { // VirtualGatewayLogging
|
|
136
|
+
* accessLog: { // VirtualGatewayAccessLog Union: only one key present
|
|
137
|
+
* file: { // VirtualGatewayFileAccessLog
|
|
138
138
|
* path: "STRING_VALUE", // required
|
|
139
|
-
* format: { // Union: only one key present
|
|
139
|
+
* format: { // LoggingFormat Union: only one key present
|
|
140
140
|
* text: "STRING_VALUE",
|
|
141
|
-
* json: [
|
|
142
|
-
* {
|
|
141
|
+
* json: [ // JsonFormat
|
|
142
|
+
* { // JsonFormatRef
|
|
143
143
|
* key: "STRING_VALUE", // required
|
|
144
144
|
* value: "STRING_VALUE", // required
|
|
145
145
|
* },
|