@aws-sdk/client-kafkaconnect 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 (48) hide show
  1. package/dist-cjs/commands/CreateConnectorCommand.js +1 -1
  2. package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -3
  3. package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +1 -1
  4. package/dist-cjs/commands/DeleteConnectorCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -3
  6. package/dist-cjs/commands/DescribeConnectorCommand.js +1 -1
  7. package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -3
  8. package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +1 -1
  9. package/dist-cjs/commands/ListConnectorsCommand.js +2 -3
  10. package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -3
  11. package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -3
  12. package/dist-cjs/commands/UpdateConnectorCommand.js +2 -3
  13. package/dist-cjs/models/models_0.js +1 -290
  14. package/dist-es/commands/CreateConnectorCommand.js +2 -2
  15. package/dist-es/commands/CreateCustomPluginCommand.js +2 -3
  16. package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
  17. package/dist-es/commands/DeleteConnectorCommand.js +2 -3
  18. package/dist-es/commands/DeleteCustomPluginCommand.js +2 -3
  19. package/dist-es/commands/DescribeConnectorCommand.js +2 -2
  20. package/dist-es/commands/DescribeCustomPluginCommand.js +2 -3
  21. package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
  22. package/dist-es/commands/ListConnectorsCommand.js +2 -3
  23. package/dist-es/commands/ListCustomPluginsCommand.js +2 -3
  24. package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -3
  25. package/dist-es/commands/UpdateConnectorCommand.js +2 -3
  26. package/dist-es/models/models_0.js +0 -216
  27. package/dist-types/KafkaConnect.d.ts +13 -0
  28. package/dist-types/KafkaConnectClient.d.ts +24 -4
  29. package/dist-types/commands/CreateConnectorCommand.d.ts +16 -0
  30. package/dist-types/commands/CreateCustomPluginCommand.d.ts +16 -0
  31. package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +16 -0
  32. package/dist-types/commands/DeleteConnectorCommand.d.ts +16 -0
  33. package/dist-types/commands/DeleteCustomPluginCommand.d.ts +16 -0
  34. package/dist-types/commands/DescribeConnectorCommand.d.ts +16 -0
  35. package/dist-types/commands/DescribeCustomPluginCommand.d.ts +16 -0
  36. package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +16 -0
  37. package/dist-types/commands/ListConnectorsCommand.d.ts +16 -0
  38. package/dist-types/commands/ListCustomPluginsCommand.d.ts +16 -0
  39. package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateConnectorCommand.d.ts +16 -0
  41. package/dist-types/models/KafkaConnectServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +148 -288
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListConnectorsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListCustomPluginsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListWorkerConfigurationsPaginator.d.ts +3 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +0 -200
  48. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { DeleteConnectorRequest, DeleteConnectorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteConnectorCommand}.
8
10
  */
9
11
  export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteConnectorCommand}.
13
17
  */
14
18
  export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified connector.</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 DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteConnectorCommandInput - {@link DeleteConnectorCommandInput}
34
+ * @returns {@link DeleteConnectorCommandOutput}
28
35
  * @see {@link DeleteConnectorCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteConnectorCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
61
68
  export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: DeleteConnectorCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteConnectorCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectorCommandInput, DeleteConnectorCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { DeleteCustomPluginRequest, DeleteCustomPluginResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteCustomPluginCommand}.
8
10
  */
9
11
  export interface DeleteCustomPluginCommandInput extends DeleteCustomPluginRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteCustomPluginCommand}.
13
17
  */
14
18
  export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a custom plugin.</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 DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteCustomPluginCommandInput - {@link DeleteCustomPluginCommandInput}
34
+ * @returns {@link DeleteCustomPluginCommandOutput}
28
35
  * @see {@link DeleteCustomPluginCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteCustomPluginCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
61
68
  export declare class DeleteCustomPluginCommand extends $Command<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: DeleteCustomPluginCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteCustomPluginCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeConnectorCommand}.
8
10
  */
9
11
  export interface DescribeConnectorCommandInput extends DescribeConnectorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeConnectorCommand}.
13
17
  */
14
18
  export interface DescribeConnectorCommandOutput extends DescribeConnectorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns summary information about the connector.</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 DescribeConnectorCommandOutput extends DescribeConnectorRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeConnectorCommandInput - {@link DescribeConnectorCommandInput}
34
+ * @returns {@link DescribeConnectorCommandOutput}
28
35
  * @see {@link DescribeConnectorCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeConnectorCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
61
68
  export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: DescribeConnectorCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DescribeConnectorCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { DescribeCustomPluginRequest, DescribeCustomPluginResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeCustomPluginCommand}.
8
10
  */
9
11
  export interface DescribeCustomPluginCommandInput extends DescribeCustomPluginRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeCustomPluginCommand}.
13
17
  */
14
18
  export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>A summary description of the custom plugin.</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 DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeCustomPluginCommandInput - {@link DescribeCustomPluginCommandInput}
34
+ * @returns {@link DescribeCustomPluginCommandOutput}
28
35
  * @see {@link DescribeCustomPluginCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeCustomPluginCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
61
68
  export declare class DescribeCustomPluginCommand extends $Command<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: DescribeCustomPluginCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DescribeCustomPluginCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { DescribeWorkerConfigurationRequest, DescribeWorkerConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeWorkerConfigurationCommand}.
8
10
  */
9
11
  export interface DescribeWorkerConfigurationCommandInput extends DescribeWorkerConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeWorkerConfigurationCommand}.
13
17
  */
14
18
  export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorkerConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a worker configuration.</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 DescribeWorkerConfigurationCommandOutput extends DescribeWorker
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeWorkerConfigurationCommandInput - {@link DescribeWorkerConfigurationCommandInput}
34
+ * @returns {@link DescribeWorkerConfigurationCommandOutput}
28
35
  * @see {@link DescribeWorkerConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeWorkerConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
61
68
  export declare class DescribeWorkerConfigurationCommand extends $Command<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: DescribeWorkerConfigurationCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DescribeWorkerConfigurationCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListConnectorsCommand}.
8
10
  */
9
11
  export interface ListConnectorsCommandInput extends ListConnectorsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListConnectorsCommand}.
13
17
  */
14
18
  export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of all the connectors in this account and Region. The list is limited to
18
23
  * connectors whose name starts with the specified prefix. The response also includes a
19
24
  * description of each of the listed connectors.</p>
@@ -27,6 +32,8 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListConnectorsCommandInput - {@link ListConnectorsCommandInput}
36
+ * @returns {@link ListConnectorsCommandOutput}
30
37
  * @see {@link ListConnectorsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListConnectorsCommandOutput} for command's `response` shape.
32
39
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -63,11 +70,20 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
63
70
  export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig> {
64
71
  readonly input: ListConnectorsCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: ListConnectorsCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
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 { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListCustomPluginsCommand}.
8
10
  */
9
11
  export interface ListCustomPluginsCommandInput extends ListCustomPluginsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListCustomPluginsCommand}.
13
17
  */
14
18
  export interface ListCustomPluginsCommandOutput extends ListCustomPluginsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of all of the custom plugins in this account and Region.</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 ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListCustomPluginsCommandInput - {@link ListCustomPluginsCommandInput}
34
+ * @returns {@link ListCustomPluginsCommandOutput}
28
35
  * @see {@link ListCustomPluginsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListCustomPluginsCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
61
68
  export declare class ListCustomPluginsCommand extends $Command<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: ListCustomPluginsCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListCustomPluginsCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkerConfigurationsCommand}.
8
10
  */
9
11
  export interface ListWorkerConfigurationsCommandInput extends ListWorkerConfigurationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkerConfigurationsCommand}.
13
17
  */
14
18
  export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigurationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of all of the worker configurations in this account and Region.</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 ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkerConfigurationsCommandInput - {@link ListWorkerConfigurationsCommandInput}
34
+ * @returns {@link ListWorkerConfigurationsCommandOutput}
28
35
  * @see {@link ListWorkerConfigurationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkerConfigurationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
61
68
  export declare class ListWorkerConfigurationsCommand extends $Command<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: ListWorkerConfigurationsCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListWorkerConfigurationsCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
5
5
  import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateConnectorCommand}.
8
10
  */
9
11
  export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateConnectorCommand}.
13
17
  */
14
18
  export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the specified connector.</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 UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateConnectorCommandInput - {@link UpdateConnectorCommandInput}
34
+ * @returns {@link UpdateConnectorCommandOutput}
28
35
  * @see {@link UpdateConnectorCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateConnectorCommandOutput} for command's `response` shape.
30
37
  * @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
@@ -61,11 +68,20 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
61
68
  export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
62
69
  readonly input: UpdateConnectorCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: UpdateConnectorCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorCommandInput, UpdateConnectorCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -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 KafkaConnect service.
4
6
  */
5
7
  export declare class KafkaConnectServiceException extends __ServiceException {