@aws-sdk/client-kafkaconnect 3.325.0 → 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.
- package/dist-types/commands/CreateConnectorCommand.d.ts +8 -0
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +9 -0
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +13 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +7 -0
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +7 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +85 -0
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +31 -0
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +15 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +83 -0
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +32 -0
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +19 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +7 -0
- package/package.json +3 -3
|
@@ -102,6 +102,12 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
102
102
|
* };
|
|
103
103
|
* const command = new CreateConnectorCommand(input);
|
|
104
104
|
* const response = await client.send(command);
|
|
105
|
+
* // { // CreateConnectorResponse
|
|
106
|
+
* // connectorArn: "STRING_VALUE",
|
|
107
|
+
* // connectorName: "STRING_VALUE",
|
|
108
|
+
* // connectorState: "STRING_VALUE",
|
|
109
|
+
* // };
|
|
110
|
+
*
|
|
105
111
|
* ```
|
|
106
112
|
*
|
|
107
113
|
* @param CreateConnectorCommandInput - {@link CreateConnectorCommandInput}
|
|
@@ -141,6 +147,8 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
141
147
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
142
148
|
* validated.</p>
|
|
143
149
|
*
|
|
150
|
+
* @throws {@link KafkaConnectServiceException}
|
|
151
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
144
152
|
*
|
|
145
153
|
*/
|
|
146
154
|
export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -40,6 +40,13 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateCustomPluginCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateCustomPluginResponse
|
|
44
|
+
* // customPluginArn: "STRING_VALUE",
|
|
45
|
+
* // customPluginState: "STRING_VALUE",
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // revision: Number("long"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
43
50
|
* ```
|
|
44
51
|
*
|
|
45
52
|
* @param CreateCustomPluginCommandInput - {@link CreateCustomPluginCommandInput}
|
|
@@ -79,6 +86,8 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
79
86
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
80
87
|
* validated.</p>
|
|
81
88
|
*
|
|
89
|
+
* @throws {@link KafkaConnectServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
82
91
|
*
|
|
83
92
|
*/
|
|
84
93
|
export declare class CreateCustomPluginCommand extends $Command<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateWorkerConfigurationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // CreateWorkerConfigurationResponse
|
|
37
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
38
|
+
* // latestRevision: { // WorkerConfigurationRevisionSummary
|
|
39
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // revision: Number("long"),
|
|
42
|
+
* // },
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // workerConfigurationArn: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param CreateWorkerConfigurationCommandInput - {@link CreateWorkerConfigurationCommandInput}
|
|
@@ -72,6 +83,8 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
72
83
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
73
84
|
* validated.</p>
|
|
74
85
|
*
|
|
86
|
+
* @throws {@link KafkaConnectServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
75
88
|
*
|
|
76
89
|
*/
|
|
77
90
|
export declare class CreateWorkerConfigurationCommand extends $Command<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteConnectorCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteConnectorResponse
|
|
36
|
+
* // connectorArn: "STRING_VALUE",
|
|
37
|
+
* // connectorState: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeleteConnectorCommandInput - {@link DeleteConnectorCommandInput}
|
|
@@ -67,6 +72,8 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
|
|
|
67
72
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
68
73
|
* validated.</p>
|
|
69
74
|
*
|
|
75
|
+
* @throws {@link KafkaConnectServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
70
77
|
*
|
|
71
78
|
*/
|
|
72
79
|
export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCustomPluginCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteCustomPluginResponse
|
|
35
|
+
* // customPluginArn: "STRING_VALUE",
|
|
36
|
+
* // customPluginState: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param DeleteCustomPluginCommandInput - {@link DeleteCustomPluginCommandInput}
|
|
@@ -66,6 +71,8 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
|
|
|
66
71
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
67
72
|
* validated.</p>
|
|
68
73
|
*
|
|
74
|
+
* @throws {@link KafkaConnectServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
69
76
|
*
|
|
70
77
|
*/
|
|
71
78
|
export declare class DeleteCustomPluginCommand extends $Command<DeleteCustomPluginCommandInput, DeleteCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,89 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeConnectorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeConnectorResponse
|
|
35
|
+
* // capacity: { // CapacityDescription
|
|
36
|
+
* // autoScaling: { // AutoScalingDescription
|
|
37
|
+
* // maxWorkerCount: Number("int"),
|
|
38
|
+
* // mcuCount: Number("int"),
|
|
39
|
+
* // minWorkerCount: Number("int"),
|
|
40
|
+
* // scaleInPolicy: { // ScaleInPolicyDescription
|
|
41
|
+
* // cpuUtilizationPercentage: Number("int"),
|
|
42
|
+
* // },
|
|
43
|
+
* // scaleOutPolicy: { // ScaleOutPolicyDescription
|
|
44
|
+
* // cpuUtilizationPercentage: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // provisionedCapacity: { // ProvisionedCapacityDescription
|
|
48
|
+
* // mcuCount: Number("int"),
|
|
49
|
+
* // workerCount: Number("int"),
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // connectorArn: "STRING_VALUE",
|
|
53
|
+
* // connectorConfiguration: { // __sensitive__mapOf__string
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // connectorDescription: "STRING_VALUE",
|
|
57
|
+
* // connectorName: "STRING_VALUE",
|
|
58
|
+
* // connectorState: "STRING_VALUE",
|
|
59
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // currentVersion: "STRING_VALUE",
|
|
61
|
+
* // kafkaCluster: { // KafkaClusterDescription
|
|
62
|
+
* // apacheKafkaCluster: { // ApacheKafkaClusterDescription
|
|
63
|
+
* // bootstrapServers: "STRING_VALUE",
|
|
64
|
+
* // vpc: { // VpcDescription
|
|
65
|
+
* // securityGroups: [ // __listOf__string
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // subnets: [
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // kafkaClusterClientAuthentication: { // KafkaClusterClientAuthenticationDescription
|
|
75
|
+
* // authenticationType: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // kafkaClusterEncryptionInTransit: { // KafkaClusterEncryptionInTransitDescription
|
|
78
|
+
* // encryptionType: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // kafkaConnectVersion: "STRING_VALUE",
|
|
81
|
+
* // logDelivery: { // LogDeliveryDescription
|
|
82
|
+
* // workerLogDelivery: { // WorkerLogDeliveryDescription
|
|
83
|
+
* // cloudWatchLogs: { // CloudWatchLogsLogDeliveryDescription
|
|
84
|
+
* // enabled: true || false,
|
|
85
|
+
* // logGroup: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // firehose: { // FirehoseLogDeliveryDescription
|
|
88
|
+
* // deliveryStream: "STRING_VALUE",
|
|
89
|
+
* // enabled: true || false,
|
|
90
|
+
* // },
|
|
91
|
+
* // s3: { // S3LogDeliveryDescription
|
|
92
|
+
* // bucket: "STRING_VALUE",
|
|
93
|
+
* // enabled: true || false,
|
|
94
|
+
* // prefix: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
96
|
+
* // },
|
|
97
|
+
* // },
|
|
98
|
+
* // plugins: [ // __listOfPluginDescription
|
|
99
|
+
* // { // PluginDescription
|
|
100
|
+
* // customPlugin: { // CustomPluginDescription
|
|
101
|
+
* // customPluginArn: "STRING_VALUE",
|
|
102
|
+
* // revision: Number("long"),
|
|
103
|
+
* // },
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // serviceExecutionRoleArn: "STRING_VALUE",
|
|
107
|
+
* // workerConfiguration: { // WorkerConfigurationDescription
|
|
108
|
+
* // revision: Number("long"),
|
|
109
|
+
* // workerConfigurationArn: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
111
|
+
* // stateDescription: { // StateDescription
|
|
112
|
+
* // code: "STRING_VALUE",
|
|
113
|
+
* // message: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // };
|
|
116
|
+
*
|
|
34
117
|
* ```
|
|
35
118
|
*
|
|
36
119
|
* @param DescribeConnectorCommandInput - {@link DescribeConnectorCommandInput}
|
|
@@ -66,6 +149,8 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
66
149
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
67
150
|
* validated.</p>
|
|
68
151
|
*
|
|
152
|
+
* @throws {@link KafkaConnectServiceException}
|
|
153
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
69
154
|
*
|
|
70
155
|
*/
|
|
71
156
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,35 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCustomPluginCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeCustomPluginResponse
|
|
35
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
36
|
+
* // customPluginArn: "STRING_VALUE",
|
|
37
|
+
* // customPluginState: "STRING_VALUE",
|
|
38
|
+
* // description: "STRING_VALUE",
|
|
39
|
+
* // latestRevision: { // CustomPluginRevisionSummary
|
|
40
|
+
* // contentType: "STRING_VALUE",
|
|
41
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // fileDescription: { // CustomPluginFileDescription
|
|
44
|
+
* // fileMd5: "STRING_VALUE",
|
|
45
|
+
* // fileSize: Number("long"),
|
|
46
|
+
* // },
|
|
47
|
+
* // location: { // CustomPluginLocationDescription
|
|
48
|
+
* // s3Location: { // S3LocationDescription
|
|
49
|
+
* // bucketArn: "STRING_VALUE",
|
|
50
|
+
* // fileKey: "STRING_VALUE",
|
|
51
|
+
* // objectVersion: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // revision: Number("long"),
|
|
55
|
+
* // },
|
|
56
|
+
* // name: "STRING_VALUE",
|
|
57
|
+
* // stateDescription: { // StateDescription
|
|
58
|
+
* // code: "STRING_VALUE",
|
|
59
|
+
* // message: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
34
63
|
* ```
|
|
35
64
|
*
|
|
36
65
|
* @param DescribeCustomPluginCommandInput - {@link DescribeCustomPluginCommandInput}
|
|
@@ -66,6 +95,8 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
|
|
|
66
95
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
67
96
|
* validated.</p>
|
|
68
97
|
*
|
|
98
|
+
* @throws {@link KafkaConnectServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
69
100
|
*
|
|
70
101
|
*/
|
|
71
102
|
export declare class DescribeCustomPluginCommand extends $Command<DescribeCustomPluginCommandInput, DescribeCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,19 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeWorkerConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeWorkerConfigurationResponse
|
|
35
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
36
|
+
* // description: "STRING_VALUE",
|
|
37
|
+
* // latestRevision: { // WorkerConfigurationRevisionDescription
|
|
38
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // propertiesFileContent: "STRING_VALUE",
|
|
41
|
+
* // revision: Number("long"),
|
|
42
|
+
* // },
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // workerConfigurationArn: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
34
47
|
* ```
|
|
35
48
|
*
|
|
36
49
|
* @param DescribeWorkerConfigurationCommandInput - {@link DescribeWorkerConfigurationCommandInput}
|
|
@@ -66,6 +79,8 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
|
|
|
66
79
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
67
80
|
* validated.</p>
|
|
68
81
|
*
|
|
82
|
+
* @throws {@link KafkaConnectServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
69
84
|
*
|
|
70
85
|
*/
|
|
71
86
|
export declare class DescribeWorkerConfigurationCommand extends $Command<DescribeWorkerConfigurationCommandInput, DescribeWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -35,6 +35,87 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListConnectorsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListConnectorsResponse
|
|
39
|
+
* // connectors: [ // __listOfConnectorSummary
|
|
40
|
+
* // { // ConnectorSummary
|
|
41
|
+
* // capacity: { // CapacityDescription
|
|
42
|
+
* // autoScaling: { // AutoScalingDescription
|
|
43
|
+
* // maxWorkerCount: Number("int"),
|
|
44
|
+
* // mcuCount: Number("int"),
|
|
45
|
+
* // minWorkerCount: Number("int"),
|
|
46
|
+
* // scaleInPolicy: { // ScaleInPolicyDescription
|
|
47
|
+
* // cpuUtilizationPercentage: Number("int"),
|
|
48
|
+
* // },
|
|
49
|
+
* // scaleOutPolicy: { // ScaleOutPolicyDescription
|
|
50
|
+
* // cpuUtilizationPercentage: Number("int"),
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // provisionedCapacity: { // ProvisionedCapacityDescription
|
|
54
|
+
* // mcuCount: Number("int"),
|
|
55
|
+
* // workerCount: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // connectorArn: "STRING_VALUE",
|
|
59
|
+
* // connectorDescription: "STRING_VALUE",
|
|
60
|
+
* // connectorName: "STRING_VALUE",
|
|
61
|
+
* // connectorState: "STRING_VALUE",
|
|
62
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // currentVersion: "STRING_VALUE",
|
|
64
|
+
* // kafkaCluster: { // KafkaClusterDescription
|
|
65
|
+
* // apacheKafkaCluster: { // ApacheKafkaClusterDescription
|
|
66
|
+
* // bootstrapServers: "STRING_VALUE",
|
|
67
|
+
* // vpc: { // VpcDescription
|
|
68
|
+
* // securityGroups: [ // __listOf__string
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // subnets: [
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // kafkaClusterClientAuthentication: { // KafkaClusterClientAuthenticationDescription
|
|
78
|
+
* // authenticationType: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // kafkaClusterEncryptionInTransit: { // KafkaClusterEncryptionInTransitDescription
|
|
81
|
+
* // encryptionType: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // kafkaConnectVersion: "STRING_VALUE",
|
|
84
|
+
* // logDelivery: { // LogDeliveryDescription
|
|
85
|
+
* // workerLogDelivery: { // WorkerLogDeliveryDescription
|
|
86
|
+
* // cloudWatchLogs: { // CloudWatchLogsLogDeliveryDescription
|
|
87
|
+
* // enabled: true || false,
|
|
88
|
+
* // logGroup: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // firehose: { // FirehoseLogDeliveryDescription
|
|
91
|
+
* // deliveryStream: "STRING_VALUE",
|
|
92
|
+
* // enabled: true || false,
|
|
93
|
+
* // },
|
|
94
|
+
* // s3: { // S3LogDeliveryDescription
|
|
95
|
+
* // bucket: "STRING_VALUE",
|
|
96
|
+
* // enabled: true || false,
|
|
97
|
+
* // prefix: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // plugins: [ // __listOfPluginDescription
|
|
102
|
+
* // { // PluginDescription
|
|
103
|
+
* // customPlugin: { // CustomPluginDescription
|
|
104
|
+
* // customPluginArn: "STRING_VALUE",
|
|
105
|
+
* // revision: Number("long"),
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // serviceExecutionRoleArn: "STRING_VALUE",
|
|
110
|
+
* // workerConfiguration: { // WorkerConfigurationDescription
|
|
111
|
+
* // revision: Number("long"),
|
|
112
|
+
* // workerConfigurationArn: "STRING_VALUE",
|
|
113
|
+
* // },
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
116
|
+
* // nextToken: "STRING_VALUE",
|
|
117
|
+
* // };
|
|
118
|
+
*
|
|
38
119
|
* ```
|
|
39
120
|
*
|
|
40
121
|
* @param ListConnectorsCommandInput - {@link ListConnectorsCommandInput}
|
|
@@ -70,6 +151,8 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
70
151
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
71
152
|
* validated.</p>
|
|
72
153
|
*
|
|
154
|
+
* @throws {@link KafkaConnectServiceException}
|
|
155
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
73
156
|
*
|
|
74
157
|
*/
|
|
75
158
|
export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,36 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListCustomPluginsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListCustomPluginsResponse
|
|
36
|
+
* // customPlugins: [ // __listOfCustomPluginSummary
|
|
37
|
+
* // { // CustomPluginSummary
|
|
38
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // customPluginArn: "STRING_VALUE",
|
|
40
|
+
* // customPluginState: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // latestRevision: { // CustomPluginRevisionSummary
|
|
43
|
+
* // contentType: "STRING_VALUE",
|
|
44
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // description: "STRING_VALUE",
|
|
46
|
+
* // fileDescription: { // CustomPluginFileDescription
|
|
47
|
+
* // fileMd5: "STRING_VALUE",
|
|
48
|
+
* // fileSize: Number("long"),
|
|
49
|
+
* // },
|
|
50
|
+
* // location: { // CustomPluginLocationDescription
|
|
51
|
+
* // s3Location: { // S3LocationDescription
|
|
52
|
+
* // bucketArn: "STRING_VALUE",
|
|
53
|
+
* // fileKey: "STRING_VALUE",
|
|
54
|
+
* // objectVersion: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // revision: Number("long"),
|
|
58
|
+
* // },
|
|
59
|
+
* // name: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
35
65
|
* ```
|
|
36
66
|
*
|
|
37
67
|
* @param ListCustomPluginsCommandInput - {@link ListCustomPluginsCommandInput}
|
|
@@ -67,6 +97,8 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
|
|
|
67
97
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
68
98
|
* validated.</p>
|
|
69
99
|
*
|
|
100
|
+
* @throws {@link KafkaConnectServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
70
102
|
*
|
|
71
103
|
*/
|
|
72
104
|
export declare class ListCustomPluginsCommand extends $Command<ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListWorkerConfigurationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListWorkerConfigurationsResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // workerConfigurations: [ // __listOfWorkerConfigurationSummary
|
|
38
|
+
* // { // WorkerConfigurationSummary
|
|
39
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // latestRevision: { // WorkerConfigurationRevisionSummary
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // description: "STRING_VALUE",
|
|
44
|
+
* // revision: Number("long"),
|
|
45
|
+
* // },
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // workerConfigurationArn: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param ListWorkerConfigurationsCommandInput - {@link ListWorkerConfigurationsCommandInput}
|
|
@@ -67,6 +84,8 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
|
|
|
67
84
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
68
85
|
* validated.</p>
|
|
69
86
|
*
|
|
87
|
+
* @throws {@link KafkaConnectServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
70
89
|
*
|
|
71
90
|
*/
|
|
72
91
|
export declare class ListWorkerConfigurationsCommand extends $Command<ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
@@ -49,6 +49,11 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateConnectorCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateConnectorResponse
|
|
53
|
+
* // connectorArn: "STRING_VALUE",
|
|
54
|
+
* // connectorState: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
54
59
|
* @param UpdateConnectorCommandInput - {@link UpdateConnectorCommandInput}
|
|
@@ -84,6 +89,8 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
84
89
|
* <p>HTTP Status Code 401: Unauthorized request. The provided credentials couldn't be
|
|
85
90
|
* validated.</p>
|
|
86
91
|
*
|
|
92
|
+
* @throws {@link KafkaConnectServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from KafkaConnect service.</p>
|
|
87
94
|
*
|
|
88
95
|
*/
|
|
89
96
|
export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafkaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|