@aws-sdk/client-app-mesh 3.296.0 → 3.297.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 (52) hide show
  1. package/dist-types/AppMesh.d.ts +39 -0
  2. package/dist-types/AppMeshClient.d.ts +24 -4
  3. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateMeshCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMeshCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeMeshCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeRouteCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +16 -0
  24. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMeshesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +16 -0
  29. package/dist-types/commands/ListVirtualNodesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +16 -0
  31. package/dist-types/commands/ListVirtualServicesCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateMeshCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +16 -0
  41. package/dist-types/models/AppMeshServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +388 -0
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListGatewayRoutesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMeshesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListVirtualGatewaysPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListVirtualNodesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListVirtualRoutersPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListVirtualServicesPaginator.d.ts +3 -0
  52. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateGatewayRouteInput, UpdateGatewayRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateGatewayRouteCommand}.
8
10
  */
9
11
  export interface UpdateGatewayRouteCommandInput extends UpdateGatewayRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateGatewayRouteCommand}.
13
17
  */
14
18
  export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing gateway route that is associated to a specified virtual gateway in a
18
23
  * service mesh.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateGatewayRouteCommandInput - {@link UpdateGatewayRouteCommandInput}
35
+ * @returns {@link UpdateGatewayRouteCommandOutput}
29
36
  * @see {@link UpdateGatewayRouteCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateGatewayRouteCommandOutput} for command's `response` shape.
31
38
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -64,11 +71,20 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu
64
71
  export declare class UpdateGatewayRouteCommand extends $Command<UpdateGatewayRouteCommandInput, UpdateGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
65
72
  readonly input: UpdateGatewayRouteCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: UpdateGatewayRouteCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGatewayRouteCommandInput, UpdateGatewayRouteCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateMeshInput, UpdateMeshOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateMeshCommand}.
8
10
  */
9
11
  export interface UpdateMeshCommandInput extends UpdateMeshInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateMeshCommand}.
13
17
  */
14
18
  export interface UpdateMeshCommandOutput extends UpdateMeshOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateMeshCommandOutput extends UpdateMeshOutput, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateMeshCommandInput - {@link UpdateMeshCommandInput}
34
+ * @returns {@link UpdateMeshCommandOutput}
28
35
  * @see {@link UpdateMeshCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateMeshCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -59,11 +66,20 @@ export interface UpdateMeshCommandOutput extends UpdateMeshOutput, __MetadataBea
59
66
  export declare class UpdateMeshCommand extends $Command<UpdateMeshCommandInput, UpdateMeshCommandOutput, AppMeshClientResolvedConfig> {
60
67
  readonly input: UpdateMeshCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: UpdateMeshCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMeshCommandInput, UpdateMeshCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateRouteInput, UpdateRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateRouteCommand}.
8
10
  */
9
11
  export interface UpdateRouteCommandInput extends UpdateRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateRouteCommand}.
13
17
  */
14
18
  export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing route for a specified service mesh and virtual router.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateRouteCommandInput - {@link UpdateRouteCommandInput}
34
+ * @returns {@link UpdateRouteCommandOutput}
28
35
  * @see {@link UpdateRouteCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateRouteCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB
63
70
  export declare class UpdateRouteCommand extends $Command<UpdateRouteCommandInput, UpdateRouteCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: UpdateRouteCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: UpdateRouteCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRouteCommandInput, UpdateRouteCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateVirtualGatewayInput, UpdateVirtualGatewayOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVirtualGatewayCommand}.
8
10
  */
9
11
  export interface UpdateVirtualGatewayCommandInput extends UpdateVirtualGatewayInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVirtualGatewayCommand}.
13
17
  */
14
18
  export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing virtual gateway in a specified service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateVirtualGatewayCommandInput - {@link UpdateVirtualGatewayCommandInput}
34
+ * @returns {@link UpdateVirtualGatewayCommandOutput}
28
35
  * @see {@link UpdateVirtualGatewayCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateVirtualGatewayCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO
63
70
  export declare class UpdateVirtualGatewayCommand extends $Command<UpdateVirtualGatewayCommandInput, UpdateVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: UpdateVirtualGatewayCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: UpdateVirtualGatewayCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVirtualGatewayCommandInput, UpdateVirtualGatewayCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateVirtualNodeInput, UpdateVirtualNodeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVirtualNodeCommand}.
8
10
  */
9
11
  export interface UpdateVirtualNodeCommandInput extends UpdateVirtualNodeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVirtualNodeCommand}.
13
17
  */
14
18
  export interface UpdateVirtualNodeCommandOutput extends UpdateVirtualNodeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing virtual node in a specified service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateVirtualNodeCommandOutput extends UpdateVirtualNodeOutput,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateVirtualNodeCommandInput - {@link UpdateVirtualNodeCommandInput}
34
+ * @returns {@link UpdateVirtualNodeCommandOutput}
28
35
  * @see {@link UpdateVirtualNodeCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateVirtualNodeCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface UpdateVirtualNodeCommandOutput extends UpdateVirtualNodeOutput,
63
70
  export declare class UpdateVirtualNodeCommand extends $Command<UpdateVirtualNodeCommandInput, UpdateVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: UpdateVirtualNodeCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: UpdateVirtualNodeCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVirtualNodeCommandInput, UpdateVirtualNodeCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateVirtualRouterInput, UpdateVirtualRouterOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVirtualRouterCommand}.
8
10
  */
9
11
  export interface UpdateVirtualRouterCommandInput extends UpdateVirtualRouterInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVirtualRouterCommand}.
13
17
  */
14
18
  export interface UpdateVirtualRouterCommandOutput extends UpdateVirtualRouterOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing virtual router in a specified service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateVirtualRouterCommandOutput extends UpdateVirtualRouterOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateVirtualRouterCommandInput - {@link UpdateVirtualRouterCommandInput}
34
+ * @returns {@link UpdateVirtualRouterCommandOutput}
28
35
  * @see {@link UpdateVirtualRouterCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateVirtualRouterCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface UpdateVirtualRouterCommandOutput extends UpdateVirtualRouterOut
63
70
  export declare class UpdateVirtualRouterCommand extends $Command<UpdateVirtualRouterCommandInput, UpdateVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: UpdateVirtualRouterCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: UpdateVirtualRouterCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVirtualRouterCommandInput, UpdateVirtualRouterCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UpdateVirtualServiceInput, UpdateVirtualServiceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVirtualServiceCommand}.
8
10
  */
9
11
  export interface UpdateVirtualServiceCommandInput extends UpdateVirtualServiceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVirtualServiceCommand}.
13
17
  */
14
18
  export interface UpdateVirtualServiceCommandOutput extends UpdateVirtualServiceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing virtual service in a specified service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateVirtualServiceCommandOutput extends UpdateVirtualServiceO
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateVirtualServiceCommandInput - {@link UpdateVirtualServiceCommandInput}
34
+ * @returns {@link UpdateVirtualServiceCommandOutput}
28
35
  * @see {@link UpdateVirtualServiceCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateVirtualServiceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface UpdateVirtualServiceCommandOutput extends UpdateVirtualServiceO
63
70
  export declare class UpdateVirtualServiceCommand extends $Command<UpdateVirtualServiceCommandInput, UpdateVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: UpdateVirtualServiceCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: UpdateVirtualServiceCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVirtualServiceCommandInput, UpdateVirtualServiceCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from AppMesh service.
4
6
  */
5
7
  export declare class AppMeshServiceException extends __ServiceException {