@aws-sdk/client-iotsecuretunneling 3.296.0 → 3.298.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 (34) hide show
  1. package/dist-cjs/commands/CloseTunnelCommand.js +2 -3
  2. package/dist-cjs/commands/DescribeTunnelCommand.js +2 -3
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  4. package/dist-cjs/commands/ListTunnelsCommand.js +2 -3
  5. package/dist-cjs/commands/OpenTunnelCommand.js +1 -1
  6. package/dist-cjs/commands/RotateTunnelAccessTokenCommand.js +1 -1
  7. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  8. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  9. package/dist-cjs/models/models_0.js +1 -81
  10. package/dist-es/commands/CloseTunnelCommand.js +2 -3
  11. package/dist-es/commands/DescribeTunnelCommand.js +2 -3
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  13. package/dist-es/commands/ListTunnelsCommand.js +2 -3
  14. package/dist-es/commands/OpenTunnelCommand.js +2 -2
  15. package/dist-es/commands/RotateTunnelAccessTokenCommand.js +2 -2
  16. package/dist-es/commands/TagResourceCommand.js +2 -3
  17. package/dist-es/commands/UntagResourceCommand.js +2 -3
  18. package/dist-es/models/models_0.js +0 -60
  19. package/dist-types/IoTSecureTunneling.d.ts +9 -0
  20. package/dist-types/IoTSecureTunnelingClient.d.ts +24 -4
  21. package/dist-types/commands/CloseTunnelCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeTunnelCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/ListTunnelsCommand.d.ts +16 -0
  25. package/dist-types/commands/OpenTunnelCommand.d.ts +16 -0
  26. package/dist-types/commands/RotateTunnelAccessTokenCommand.d.ts +16 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  29. package/dist-types/models/IoTSecureTunnelingServiceException.d.ts +2 -0
  30. package/dist-types/models/models_0.d.ts +65 -80
  31. package/dist-types/pagination/Interfaces.d.ts +3 -0
  32. package/dist-types/pagination/ListTunnelsPaginator.d.ts +3 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +0 -56
  34. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { CloseTunnelRequest, CloseTunnelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CloseTunnelCommand}.
8
10
  */
9
11
  export interface CloseTunnelCommandInput extends CloseTunnelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CloseTunnelCommand}.
13
17
  */
14
18
  export interface CloseTunnelCommandOutput extends CloseTunnelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Closes a tunnel identified by the unique tunnel id. When a <code>CloseTunnel</code>
18
23
  * request is received, we close the WebSocket connections between the client and proxy
19
24
  * server so no data can be transmitted.</p>
@@ -28,6 +33,8 @@ export interface CloseTunnelCommandOutput extends CloseTunnelResponse, __Metadat
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param CloseTunnelCommandInput - {@link CloseTunnelCommandInput}
37
+ * @returns {@link CloseTunnelCommandOutput}
31
38
  * @see {@link CloseTunnelCommandInput} for command's `input` shape.
32
39
  * @see {@link CloseTunnelCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -40,11 +47,20 @@ export interface CloseTunnelCommandOutput extends CloseTunnelResponse, __Metadat
40
47
  export declare class CloseTunnelCommand extends $Command<CloseTunnelCommandInput, CloseTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
41
48
  readonly input: CloseTunnelCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: CloseTunnelCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CloseTunnelCommandInput, CloseTunnelCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { DescribeTunnelRequest, DescribeTunnelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeTunnelCommand}.
8
10
  */
9
11
  export interface DescribeTunnelCommandInput extends DescribeTunnelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeTunnelCommand}.
13
17
  */
14
18
  export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about a tunnel identified by the unique tunnel id.</p>
18
23
  * <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">DescribeTunnel</a> action.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DescribeTunnelCommandInput - {@link DescribeTunnelCommandInput}
35
+ * @returns {@link DescribeTunnelCommandOutput}
29
36
  * @see {@link DescribeTunnelCommandInput} for command's `input` shape.
30
37
  * @see {@link DescribeTunnelCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -38,11 +45,20 @@ export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __M
38
45
  export declare class DescribeTunnelCommand extends $Command<DescribeTunnelCommandInput, DescribeTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
39
46
  readonly input: DescribeTunnelCommandInput;
40
47
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
48
+ /**
49
+ * @public
50
+ */
41
51
  constructor(input: DescribeTunnelCommandInput);
42
52
  /**
43
53
  * @internal
44
54
  */
45
55
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTunnelCommandInput, DescribeTunnelCommandOutput>;
56
+ /**
57
+ * @internal
58
+ */
46
59
  private serialize;
60
+ /**
61
+ * @internal
62
+ */
47
63
  private deserialize;
48
64
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the tags for the specified resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -37,11 +44,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
37
44
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
38
45
  readonly input: ListTagsForResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: ListTagsForResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTunnelsCommand}.
8
10
  */
9
11
  export interface ListTunnelsCommandInput extends ListTunnelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTunnelsCommand}.
13
17
  */
14
18
  export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List all tunnels for an Amazon Web Services account. Tunnels are listed by creation time in
18
23
  * descending order, newer tunnels will be listed before older tunnels.</p>
19
24
  * <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">ListTunnels</a> action.</p>
@@ -27,6 +32,8 @@ export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListTunnelsCommandInput - {@link ListTunnelsCommandInput}
36
+ * @returns {@link ListTunnelsCommandOutput}
30
37
  * @see {@link ListTunnelsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListTunnelsCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -36,11 +43,20 @@ export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __Metadat
36
43
  export declare class ListTunnelsCommand extends $Command<ListTunnelsCommandInput, ListTunnelsCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
37
44
  readonly input: ListTunnelsCommandInput;
38
45
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
46
+ /**
47
+ * @public
48
+ */
39
49
  constructor(input: ListTunnelsCommandInput);
40
50
  /**
41
51
  * @internal
42
52
  */
43
53
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTunnelsCommandInput, ListTunnelsCommandOutput>;
54
+ /**
55
+ * @internal
56
+ */
44
57
  private serialize;
58
+ /**
59
+ * @internal
60
+ */
45
61
  private deserialize;
46
62
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link OpenTunnelCommand}.
8
10
  */
9
11
  export interface OpenTunnelCommandInput extends OpenTunnelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link OpenTunnelCommand}.
13
17
  */
14
18
  export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new tunnel, and returns two client access tokens for clients to use to
18
23
  * connect to the IoT Secure Tunneling proxy server.</p>
19
24
  * <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">OpenTunnel</a> action.</p>
@@ -27,6 +32,8 @@ export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataB
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param OpenTunnelCommandInput - {@link OpenTunnelCommandInput}
36
+ * @returns {@link OpenTunnelCommandOutput}
30
37
  * @see {@link OpenTunnelCommandInput} for command's `input` shape.
31
38
  * @see {@link OpenTunnelCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -39,11 +46,20 @@ export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataB
39
46
  export declare class OpenTunnelCommand extends $Command<OpenTunnelCommandInput, OpenTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
40
47
  readonly input: OpenTunnelCommandInput;
41
48
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
49
+ /**
50
+ * @public
51
+ */
42
52
  constructor(input: OpenTunnelCommandInput);
43
53
  /**
44
54
  * @internal
45
55
  */
46
56
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<OpenTunnelCommandInput, OpenTunnelCommandOutput>;
57
+ /**
58
+ * @internal
59
+ */
47
60
  private serialize;
61
+ /**
62
+ * @internal
63
+ */
48
64
  private deserialize;
49
65
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { RotateTunnelAccessTokenRequest, RotateTunnelAccessTokenResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RotateTunnelAccessTokenCommand}.
8
10
  */
9
11
  export interface RotateTunnelAccessTokenCommandInput extends RotateTunnelAccessTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RotateTunnelAccessTokenCommand}.
13
17
  */
14
18
  export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccessTokenResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Revokes the current client access token (CAT) and returns new CAT for clients to
18
23
  * use when reconnecting to secure tunneling to access the same tunnel.</p>
19
24
  * <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">RotateTunnelAccessToken</a> action.</p>
@@ -33,6 +38,8 @@ export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccess
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param RotateTunnelAccessTokenCommandInput - {@link RotateTunnelAccessTokenCommandInput}
42
+ * @returns {@link RotateTunnelAccessTokenCommandOutput}
36
43
  * @see {@link RotateTunnelAccessTokenCommandInput} for command's `input` shape.
37
44
  * @see {@link RotateTunnelAccessTokenCommandOutput} for command's `response` shape.
38
45
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -45,11 +52,20 @@ export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccess
45
52
  export declare class RotateTunnelAccessTokenCommand extends $Command<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
46
53
  readonly input: RotateTunnelAccessTokenCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: RotateTunnelAccessTokenCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>A resource tag.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -37,11 +44,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
37
44
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
38
45
  readonly input: TagResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: TagResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes a tag from a resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTSecureTunnelingClientResolvedConfig | config} for IoTSecureTunnelingClient's `config` shape.
@@ -37,11 +44,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
37
44
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
38
45
  readonly input: UntagResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: UntagResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -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 IoTSecureTunneling service.
4
6
  */
5
7
  export declare class IoTSecureTunnelingServiceException extends __ServiceException {