@aws-sdk/client-app-mesh 3.321.1 → 3.326.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.
Files changed (39) hide show
  1. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +182 -0
  2. package/dist-types/commands/CreateMeshCommand.d.ts +28 -0
  3. package/dist-types/commands/CreateRouteCommand.d.ts +224 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +141 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +246 -0
  6. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +31 -0
  7. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +31 -0
  8. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +182 -0
  9. package/dist-types/commands/DeleteMeshCommand.d.ts +28 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +224 -0
  11. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +141 -0
  12. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +246 -0
  13. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +31 -0
  14. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +31 -0
  15. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +182 -0
  16. package/dist-types/commands/DescribeMeshCommand.d.ts +28 -0
  17. package/dist-types/commands/DescribeRouteCommand.d.ts +224 -0
  18. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +141 -0
  19. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +246 -0
  20. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +31 -0
  21. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +31 -0
  22. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +19 -0
  23. package/dist-types/commands/ListMeshesCommand.d.ts +17 -0
  24. package/dist-types/commands/ListRoutesCommand.d.ts +19 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  26. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +18 -0
  27. package/dist-types/commands/ListVirtualNodesCommand.d.ts +18 -0
  28. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +18 -0
  29. package/dist-types/commands/ListVirtualServicesCommand.d.ts +18 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  32. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +182 -0
  33. package/dist-types/commands/UpdateMeshCommand.d.ts +28 -0
  34. package/dist-types/commands/UpdateRouteCommand.d.ts +224 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +141 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +246 -0
  37. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +31 -0
  38. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +31 -0
  39. package/package.json +16 -16
@@ -35,6 +35,35 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
35
35
  * };
36
36
  * const command = new DeleteVirtualRouterCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DeleteVirtualRouterOutput
39
+ * // virtualRouter: { // VirtualRouterData
40
+ * // meshName: "STRING_VALUE", // required
41
+ * // virtualRouterName: "STRING_VALUE", // required
42
+ * // spec: { // VirtualRouterSpec
43
+ * // listeners: [ // VirtualRouterListeners
44
+ * // { // VirtualRouterListener
45
+ * // portMapping: { // PortMapping
46
+ * // port: Number("int"), // required
47
+ * // protocol: "STRING_VALUE", // required
48
+ * // },
49
+ * // },
50
+ * // ],
51
+ * // },
52
+ * // metadata: { // ResourceMetadata
53
+ * // arn: "STRING_VALUE", // required
54
+ * // version: Number("long"), // required
55
+ * // uid: "STRING_VALUE", // required
56
+ * // createdAt: new Date("TIMESTAMP"), // required
57
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
58
+ * // meshOwner: "STRING_VALUE", // required
59
+ * // resourceOwner: "STRING_VALUE", // required
60
+ * // },
61
+ * // status: { // VirtualRouterStatus
62
+ * // status: "STRING_VALUE", // required
63
+ * // },
64
+ * // },
65
+ * // };
66
+ *
38
67
  * ```
39
68
  *
40
69
  * @param DeleteVirtualRouterCommandInput - {@link DeleteVirtualRouterCommandInput}
@@ -68,6 +97,8 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
68
97
  * your account. For best results, use an increasing or variable sleep interval between
69
98
  * requests.</p>
70
99
  *
100
+ * @throws {@link AppMeshServiceException}
101
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
71
102
  *
72
103
  */
73
104
  export declare class DeleteVirtualRouterCommand extends $Command<DeleteVirtualRouterCommandInput, DeleteVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,35 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
33
33
  * };
34
34
  * const command = new DeleteVirtualServiceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteVirtualServiceOutput
37
+ * // virtualService: { // VirtualServiceData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // virtualServiceName: "STRING_VALUE", // required
40
+ * // spec: { // VirtualServiceSpec
41
+ * // provider: { // VirtualServiceProvider Union: only one key present
42
+ * // virtualNode: { // VirtualNodeServiceProvider
43
+ * // virtualNodeName: "STRING_VALUE", // required
44
+ * // },
45
+ * // virtualRouter: { // VirtualRouterServiceProvider
46
+ * // virtualRouterName: "STRING_VALUE", // required
47
+ * // },
48
+ * // },
49
+ * // },
50
+ * // metadata: { // ResourceMetadata
51
+ * // arn: "STRING_VALUE", // required
52
+ * // version: Number("long"), // required
53
+ * // uid: "STRING_VALUE", // required
54
+ * // createdAt: new Date("TIMESTAMP"), // required
55
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
56
+ * // meshOwner: "STRING_VALUE", // required
57
+ * // resourceOwner: "STRING_VALUE", // required
58
+ * // },
59
+ * // status: { // VirtualServiceStatus
60
+ * // status: "STRING_VALUE", // required
61
+ * // },
62
+ * // },
63
+ * // };
64
+ *
36
65
  * ```
37
66
  *
38
67
  * @param DeleteVirtualServiceCommandInput - {@link DeleteVirtualServiceCommandInput}
@@ -66,6 +95,8 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
66
95
  * your account. For best results, use an increasing or variable sleep interval between
67
96
  * requests.</p>
68
97
  *
98
+ * @throws {@link AppMeshServiceException}
99
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
69
100
  *
70
101
  */
71
102
  export declare class DeleteVirtualServiceCommand extends $Command<DeleteVirtualServiceCommandInput, DeleteVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
@@ -34,6 +34,186 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
34
34
  * };
35
35
  * const command = new DescribeGatewayRouteCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeGatewayRouteOutput
38
+ * // gatewayRoute: { // GatewayRouteData
39
+ * // meshName: "STRING_VALUE", // required
40
+ * // gatewayRouteName: "STRING_VALUE", // required
41
+ * // virtualGatewayName: "STRING_VALUE", // required
42
+ * // spec: { // GatewayRouteSpec
43
+ * // priority: Number("int"),
44
+ * // httpRoute: { // HttpGatewayRoute
45
+ * // match: { // HttpGatewayRouteMatch
46
+ * // prefix: "STRING_VALUE",
47
+ * // path: { // HttpPathMatch
48
+ * // exact: "STRING_VALUE",
49
+ * // regex: "STRING_VALUE",
50
+ * // },
51
+ * // queryParameters: [ // HttpQueryParameters
52
+ * // { // HttpQueryParameter
53
+ * // name: "STRING_VALUE", // required
54
+ * // match: { // QueryParameterMatch
55
+ * // exact: "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // ],
59
+ * // method: "STRING_VALUE",
60
+ * // hostname: { // GatewayRouteHostnameMatch
61
+ * // exact: "STRING_VALUE",
62
+ * // suffix: "STRING_VALUE",
63
+ * // },
64
+ * // headers: [ // HttpGatewayRouteHeaders
65
+ * // { // HttpGatewayRouteHeader
66
+ * // name: "STRING_VALUE", // required
67
+ * // invert: true || false,
68
+ * // match: { // HeaderMatchMethod Union: only one key present
69
+ * // exact: "STRING_VALUE",
70
+ * // regex: "STRING_VALUE",
71
+ * // range: { // MatchRange
72
+ * // start: Number("long"), // required
73
+ * // end: Number("long"), // required
74
+ * // },
75
+ * // prefix: "STRING_VALUE",
76
+ * // suffix: "STRING_VALUE",
77
+ * // },
78
+ * // },
79
+ * // ],
80
+ * // port: Number("int"),
81
+ * // },
82
+ * // action: { // HttpGatewayRouteAction
83
+ * // target: { // GatewayRouteTarget
84
+ * // virtualService: { // GatewayRouteVirtualService
85
+ * // virtualServiceName: "STRING_VALUE", // required
86
+ * // },
87
+ * // port: Number("int"),
88
+ * // },
89
+ * // rewrite: { // HttpGatewayRouteRewrite
90
+ * // prefix: { // HttpGatewayRoutePrefixRewrite
91
+ * // defaultPrefix: "STRING_VALUE",
92
+ * // value: "STRING_VALUE",
93
+ * // },
94
+ * // path: { // HttpGatewayRoutePathRewrite
95
+ * // exact: "STRING_VALUE",
96
+ * // },
97
+ * // hostname: { // GatewayRouteHostnameRewrite
98
+ * // defaultTargetHostname: "STRING_VALUE",
99
+ * // },
100
+ * // },
101
+ * // },
102
+ * // },
103
+ * // http2Route: {
104
+ * // match: {
105
+ * // prefix: "STRING_VALUE",
106
+ * // path: {
107
+ * // exact: "STRING_VALUE",
108
+ * // regex: "STRING_VALUE",
109
+ * // },
110
+ * // queryParameters: [
111
+ * // {
112
+ * // name: "STRING_VALUE", // required
113
+ * // match: {
114
+ * // exact: "STRING_VALUE",
115
+ * // },
116
+ * // },
117
+ * // ],
118
+ * // method: "STRING_VALUE",
119
+ * // hostname: {
120
+ * // exact: "STRING_VALUE",
121
+ * // suffix: "STRING_VALUE",
122
+ * // },
123
+ * // headers: [
124
+ * // {
125
+ * // name: "STRING_VALUE", // required
126
+ * // invert: true || false,
127
+ * // match: {// Union: only one key present
128
+ * // exact: "STRING_VALUE",
129
+ * // regex: "STRING_VALUE",
130
+ * // range: {
131
+ * // start: Number("long"), // required
132
+ * // end: Number("long"), // required
133
+ * // },
134
+ * // prefix: "STRING_VALUE",
135
+ * // suffix: "STRING_VALUE",
136
+ * // },
137
+ * // },
138
+ * // ],
139
+ * // port: Number("int"),
140
+ * // },
141
+ * // action: {
142
+ * // target: {
143
+ * // virtualService: {
144
+ * // virtualServiceName: "STRING_VALUE", // required
145
+ * // },
146
+ * // port: Number("int"),
147
+ * // },
148
+ * // rewrite: {
149
+ * // prefix: {
150
+ * // defaultPrefix: "STRING_VALUE",
151
+ * // value: "STRING_VALUE",
152
+ * // },
153
+ * // path: {
154
+ * // exact: "STRING_VALUE",
155
+ * // },
156
+ * // hostname: {
157
+ * // defaultTargetHostname: "STRING_VALUE",
158
+ * // },
159
+ * // },
160
+ * // },
161
+ * // },
162
+ * // grpcRoute: { // GrpcGatewayRoute
163
+ * // match: { // GrpcGatewayRouteMatch
164
+ * // serviceName: "STRING_VALUE",
165
+ * // hostname: {
166
+ * // exact: "STRING_VALUE",
167
+ * // suffix: "STRING_VALUE",
168
+ * // },
169
+ * // metadata: [ // GrpcGatewayRouteMetadataList
170
+ * // { // GrpcGatewayRouteMetadata
171
+ * // name: "STRING_VALUE", // required
172
+ * // invert: true || false,
173
+ * // match: { // GrpcMetadataMatchMethod Union: only one key present
174
+ * // exact: "STRING_VALUE",
175
+ * // regex: "STRING_VALUE",
176
+ * // range: {
177
+ * // start: Number("long"), // required
178
+ * // end: Number("long"), // required
179
+ * // },
180
+ * // prefix: "STRING_VALUE",
181
+ * // suffix: "STRING_VALUE",
182
+ * // },
183
+ * // },
184
+ * // ],
185
+ * // port: Number("int"),
186
+ * // },
187
+ * // action: { // GrpcGatewayRouteAction
188
+ * // target: {
189
+ * // virtualService: {
190
+ * // virtualServiceName: "STRING_VALUE", // required
191
+ * // },
192
+ * // port: Number("int"),
193
+ * // },
194
+ * // rewrite: { // GrpcGatewayRouteRewrite
195
+ * // hostname: {
196
+ * // defaultTargetHostname: "STRING_VALUE",
197
+ * // },
198
+ * // },
199
+ * // },
200
+ * // },
201
+ * // },
202
+ * // metadata: { // ResourceMetadata
203
+ * // arn: "STRING_VALUE", // required
204
+ * // version: Number("long"), // required
205
+ * // uid: "STRING_VALUE", // required
206
+ * // createdAt: new Date("TIMESTAMP"), // required
207
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
208
+ * // meshOwner: "STRING_VALUE", // required
209
+ * // resourceOwner: "STRING_VALUE", // required
210
+ * // },
211
+ * // status: { // GatewayRouteStatus
212
+ * // status: "STRING_VALUE", // required
213
+ * // },
214
+ * // },
215
+ * // };
216
+ *
37
217
  * ```
38
218
  *
39
219
  * @param DescribeGatewayRouteCommandInput - {@link DescribeGatewayRouteCommandInput}
@@ -63,6 +243,8 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
63
243
  * your account. For best results, use an increasing or variable sleep interval between
64
244
  * requests.</p>
65
245
  *
246
+ * @throws {@link AppMeshServiceException}
247
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
66
248
  *
67
249
  */
68
250
  export declare class DescribeGatewayRouteCommand extends $Command<DescribeGatewayRouteCommandInput, DescribeGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
@@ -32,6 +32,32 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
32
32
  * };
33
33
  * const command = new DescribeMeshCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeMeshOutput
36
+ * // mesh: { // MeshData
37
+ * // meshName: "STRING_VALUE", // required
38
+ * // spec: { // MeshSpec
39
+ * // egressFilter: { // EgressFilter
40
+ * // type: "STRING_VALUE", // required
41
+ * // },
42
+ * // serviceDiscovery: { // MeshServiceDiscovery
43
+ * // ipPreference: "STRING_VALUE",
44
+ * // },
45
+ * // },
46
+ * // metadata: { // ResourceMetadata
47
+ * // arn: "STRING_VALUE", // required
48
+ * // version: Number("long"), // required
49
+ * // uid: "STRING_VALUE", // required
50
+ * // createdAt: new Date("TIMESTAMP"), // required
51
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
52
+ * // meshOwner: "STRING_VALUE", // required
53
+ * // resourceOwner: "STRING_VALUE", // required
54
+ * // },
55
+ * // status: { // MeshStatus
56
+ * // status: "STRING_VALUE",
57
+ * // },
58
+ * // },
59
+ * // };
60
+ *
35
61
  * ```
36
62
  *
37
63
  * @param DescribeMeshCommandInput - {@link DescribeMeshCommandInput}
@@ -61,6 +87,8 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
61
87
  * your account. For best results, use an increasing or variable sleep interval between
62
88
  * requests.</p>
63
89
  *
90
+ * @throws {@link AppMeshServiceException}
91
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
64
92
  *
65
93
  */
66
94
  export declare class DescribeMeshCommand extends $Command<DescribeMeshCommandInput, DescribeMeshCommandOutput, AppMeshClientResolvedConfig> {
@@ -34,6 +34,228 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
34
34
  * };
35
35
  * const command = new DescribeRouteCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeRouteOutput
38
+ * // route: { // RouteData
39
+ * // meshName: "STRING_VALUE", // required
40
+ * // virtualRouterName: "STRING_VALUE", // required
41
+ * // routeName: "STRING_VALUE", // required
42
+ * // spec: { // RouteSpec
43
+ * // priority: Number("int"),
44
+ * // httpRoute: { // HttpRoute
45
+ * // match: { // HttpRouteMatch
46
+ * // prefix: "STRING_VALUE",
47
+ * // path: { // HttpPathMatch
48
+ * // exact: "STRING_VALUE",
49
+ * // regex: "STRING_VALUE",
50
+ * // },
51
+ * // queryParameters: [ // HttpQueryParameters
52
+ * // { // HttpQueryParameter
53
+ * // name: "STRING_VALUE", // required
54
+ * // match: { // QueryParameterMatch
55
+ * // exact: "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // ],
59
+ * // method: "STRING_VALUE",
60
+ * // scheme: "STRING_VALUE",
61
+ * // headers: [ // HttpRouteHeaders
62
+ * // { // HttpRouteHeader
63
+ * // name: "STRING_VALUE", // required
64
+ * // invert: true || false,
65
+ * // match: { // HeaderMatchMethod Union: only one key present
66
+ * // exact: "STRING_VALUE",
67
+ * // regex: "STRING_VALUE",
68
+ * // range: { // MatchRange
69
+ * // start: Number("long"), // required
70
+ * // end: Number("long"), // required
71
+ * // },
72
+ * // prefix: "STRING_VALUE",
73
+ * // suffix: "STRING_VALUE",
74
+ * // },
75
+ * // },
76
+ * // ],
77
+ * // port: Number("int"),
78
+ * // },
79
+ * // action: { // HttpRouteAction
80
+ * // weightedTargets: [ // WeightedTargets // required
81
+ * // { // WeightedTarget
82
+ * // virtualNode: "STRING_VALUE", // required
83
+ * // weight: Number("int"), // required
84
+ * // port: Number("int"),
85
+ * // },
86
+ * // ],
87
+ * // },
88
+ * // retryPolicy: { // HttpRetryPolicy
89
+ * // perRetryTimeout: { // Duration
90
+ * // value: Number("long"),
91
+ * // unit: "STRING_VALUE",
92
+ * // },
93
+ * // maxRetries: Number("long"), // required
94
+ * // httpRetryEvents: [ // HttpRetryPolicyEvents
95
+ * // "STRING_VALUE",
96
+ * // ],
97
+ * // tcpRetryEvents: [ // TcpRetryPolicyEvents
98
+ * // "STRING_VALUE",
99
+ * // ],
100
+ * // },
101
+ * // timeout: { // HttpTimeout
102
+ * // perRequest: {
103
+ * // value: Number("long"),
104
+ * // unit: "STRING_VALUE",
105
+ * // },
106
+ * // idle: {
107
+ * // value: Number("long"),
108
+ * // unit: "STRING_VALUE",
109
+ * // },
110
+ * // },
111
+ * // },
112
+ * // tcpRoute: { // TcpRoute
113
+ * // action: { // TcpRouteAction
114
+ * // weightedTargets: [ // required
115
+ * // {
116
+ * // virtualNode: "STRING_VALUE", // required
117
+ * // weight: Number("int"), // required
118
+ * // port: Number("int"),
119
+ * // },
120
+ * // ],
121
+ * // },
122
+ * // timeout: { // TcpTimeout
123
+ * // idle: {
124
+ * // value: Number("long"),
125
+ * // unit: "STRING_VALUE",
126
+ * // },
127
+ * // },
128
+ * // match: { // TcpRouteMatch
129
+ * // port: Number("int"),
130
+ * // },
131
+ * // },
132
+ * // http2Route: {
133
+ * // match: {
134
+ * // prefix: "STRING_VALUE",
135
+ * // path: {
136
+ * // exact: "STRING_VALUE",
137
+ * // regex: "STRING_VALUE",
138
+ * // },
139
+ * // queryParameters: [
140
+ * // {
141
+ * // name: "STRING_VALUE", // required
142
+ * // match: {
143
+ * // exact: "STRING_VALUE",
144
+ * // },
145
+ * // },
146
+ * // ],
147
+ * // method: "STRING_VALUE",
148
+ * // scheme: "STRING_VALUE",
149
+ * // headers: [
150
+ * // {
151
+ * // name: "STRING_VALUE", // required
152
+ * // invert: true || false,
153
+ * // match: {// Union: only one key present
154
+ * // exact: "STRING_VALUE",
155
+ * // regex: "STRING_VALUE",
156
+ * // range: {
157
+ * // start: Number("long"), // required
158
+ * // end: Number("long"), // required
159
+ * // },
160
+ * // prefix: "STRING_VALUE",
161
+ * // suffix: "STRING_VALUE",
162
+ * // },
163
+ * // },
164
+ * // ],
165
+ * // port: Number("int"),
166
+ * // },
167
+ * // action: {
168
+ * // weightedTargets: [ // required
169
+ * // {
170
+ * // virtualNode: "STRING_VALUE", // required
171
+ * // weight: Number("int"), // required
172
+ * // port: Number("int"),
173
+ * // },
174
+ * // ],
175
+ * // },
176
+ * // retryPolicy: {
177
+ * // perRetryTimeout: {
178
+ * // value: Number("long"),
179
+ * // unit: "STRING_VALUE",
180
+ * // },
181
+ * // maxRetries: Number("long"), // required
182
+ * // httpRetryEvents: [
183
+ * // "STRING_VALUE",
184
+ * // ],
185
+ * // tcpRetryEvents: [
186
+ * // "STRING_VALUE",
187
+ * // ],
188
+ * // },
189
+ * // timeout: {
190
+ * // perRequest: "<Duration>",
191
+ * // idle: "<Duration>",
192
+ * // },
193
+ * // },
194
+ * // grpcRoute: { // GrpcRoute
195
+ * // action: { // GrpcRouteAction
196
+ * // weightedTargets: [ // required
197
+ * // {
198
+ * // virtualNode: "STRING_VALUE", // required
199
+ * // weight: Number("int"), // required
200
+ * // port: Number("int"),
201
+ * // },
202
+ * // ],
203
+ * // },
204
+ * // match: { // GrpcRouteMatch
205
+ * // serviceName: "STRING_VALUE",
206
+ * // methodName: "STRING_VALUE",
207
+ * // metadata: [ // GrpcRouteMetadataList
208
+ * // { // GrpcRouteMetadata
209
+ * // name: "STRING_VALUE", // required
210
+ * // invert: true || false,
211
+ * // match: { // GrpcRouteMetadataMatchMethod Union: only one key present
212
+ * // exact: "STRING_VALUE",
213
+ * // regex: "STRING_VALUE",
214
+ * // range: {
215
+ * // start: Number("long"), // required
216
+ * // end: Number("long"), // required
217
+ * // },
218
+ * // prefix: "STRING_VALUE",
219
+ * // suffix: "STRING_VALUE",
220
+ * // },
221
+ * // },
222
+ * // ],
223
+ * // port: Number("int"),
224
+ * // },
225
+ * // retryPolicy: { // GrpcRetryPolicy
226
+ * // perRetryTimeout: "<Duration>", // required
227
+ * // maxRetries: Number("long"), // required
228
+ * // httpRetryEvents: [
229
+ * // "STRING_VALUE",
230
+ * // ],
231
+ * // tcpRetryEvents: [
232
+ * // "STRING_VALUE",
233
+ * // ],
234
+ * // grpcRetryEvents: [ // GrpcRetryPolicyEvents
235
+ * // "STRING_VALUE",
236
+ * // ],
237
+ * // },
238
+ * // timeout: { // GrpcTimeout
239
+ * // perRequest: "<Duration>",
240
+ * // idle: "<Duration>",
241
+ * // },
242
+ * // },
243
+ * // },
244
+ * // metadata: { // ResourceMetadata
245
+ * // arn: "STRING_VALUE", // required
246
+ * // version: Number("long"), // required
247
+ * // uid: "STRING_VALUE", // required
248
+ * // createdAt: new Date("TIMESTAMP"), // required
249
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
250
+ * // meshOwner: "STRING_VALUE", // required
251
+ * // resourceOwner: "STRING_VALUE", // required
252
+ * // },
253
+ * // status: { // RouteStatus
254
+ * // status: "STRING_VALUE", // required
255
+ * // },
256
+ * // },
257
+ * // };
258
+ *
37
259
  * ```
38
260
  *
39
261
  * @param DescribeRouteCommandInput - {@link DescribeRouteCommandInput}
@@ -63,6 +285,8 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
63
285
  * your account. For best results, use an increasing or variable sleep interval between
64
286
  * requests.</p>
65
287
  *
288
+ * @throws {@link AppMeshServiceException}
289
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
66
290
  *
67
291
  */
68
292
  export declare class DescribeRouteCommand extends $Command<DescribeRouteCommandInput, DescribeRouteCommandOutput, AppMeshClientResolvedConfig> {