@aws-sdk/client-kafkaconnect 3.300.0 → 3.301.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.
@@ -26,34 +26,34 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
26
26
  * import { KafkaConnectClient, CreateConnectorCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, CreateConnectorCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
30
- * capacity: {
31
- * autoScaling: {
29
+ * const input = { // CreateConnectorRequest
30
+ * capacity: { // Capacity
31
+ * autoScaling: { // AutoScaling
32
32
  * maxWorkerCount: Number("int"), // required
33
33
  * mcuCount: Number("int"), // required
34
34
  * minWorkerCount: Number("int"), // required
35
- * scaleInPolicy: {
35
+ * scaleInPolicy: { // ScaleInPolicy
36
36
  * cpuUtilizationPercentage: Number("int"), // required
37
37
  * },
38
- * scaleOutPolicy: {
38
+ * scaleOutPolicy: { // ScaleOutPolicy
39
39
  * cpuUtilizationPercentage: Number("int"), // required
40
40
  * },
41
41
  * },
42
- * provisionedCapacity: {
42
+ * provisionedCapacity: { // ProvisionedCapacity
43
43
  * mcuCount: Number("int"), // required
44
44
  * workerCount: Number("int"), // required
45
45
  * },
46
46
  * },
47
- * connectorConfiguration: { // required
47
+ * connectorConfiguration: { // __sensitive__mapOf__string // required
48
48
  * "<keys>": "STRING_VALUE",
49
49
  * },
50
50
  * connectorDescription: "STRING_VALUE",
51
51
  * connectorName: "STRING_VALUE", // required
52
- * kafkaCluster: {
53
- * apacheKafkaCluster: {
52
+ * kafkaCluster: { // KafkaCluster
53
+ * apacheKafkaCluster: { // ApacheKafkaCluster
54
54
  * bootstrapServers: "STRING_VALUE", // required
55
- * vpc: {
56
- * securityGroups: [
55
+ * vpc: { // Vpc
56
+ * securityGroups: [ // __listOf__string
57
57
  * "STRING_VALUE",
58
58
  * ],
59
59
  * subnets: [ // required
@@ -62,40 +62,40 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
62
62
  * },
63
63
  * },
64
64
  * },
65
- * kafkaClusterClientAuthentication: {
65
+ * kafkaClusterClientAuthentication: { // KafkaClusterClientAuthentication
66
66
  * authenticationType: "STRING_VALUE", // required
67
67
  * },
68
- * kafkaClusterEncryptionInTransit: {
68
+ * kafkaClusterEncryptionInTransit: { // KafkaClusterEncryptionInTransit
69
69
  * encryptionType: "STRING_VALUE", // required
70
70
  * },
71
71
  * kafkaConnectVersion: "STRING_VALUE", // required
72
- * logDelivery: {
73
- * workerLogDelivery: {
74
- * cloudWatchLogs: {
72
+ * logDelivery: { // LogDelivery
73
+ * workerLogDelivery: { // WorkerLogDelivery
74
+ * cloudWatchLogs: { // CloudWatchLogsLogDelivery
75
75
  * enabled: true || false, // required
76
76
  * logGroup: "STRING_VALUE",
77
77
  * },
78
- * firehose: {
78
+ * firehose: { // FirehoseLogDelivery
79
79
  * deliveryStream: "STRING_VALUE",
80
80
  * enabled: true || false, // required
81
81
  * },
82
- * s3: {
82
+ * s3: { // S3LogDelivery
83
83
  * bucket: "STRING_VALUE",
84
84
  * enabled: true || false, // required
85
85
  * prefix: "STRING_VALUE",
86
86
  * },
87
87
  * },
88
88
  * },
89
- * plugins: [ // required
90
- * {
91
- * customPlugin: {
89
+ * plugins: [ // __listOfPlugin // required
90
+ * { // Plugin
91
+ * customPlugin: { // CustomPlugin
92
92
  * customPluginArn: "STRING_VALUE", // required
93
93
  * revision: Number("long"), // required
94
94
  * },
95
95
  * },
96
96
  * ],
97
97
  * serviceExecutionRoleArn: "STRING_VALUE", // required
98
- * workerConfiguration: {
98
+ * workerConfiguration: { // WorkerConfiguration
99
99
  * revision: Number("long"), // required
100
100
  * workerConfigurationArn: "STRING_VALUE", // required
101
101
  * },
@@ -26,11 +26,11 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
26
26
  * import { KafkaConnectClient, CreateCustomPluginCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, CreateCustomPluginCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // CreateCustomPluginRequest
30
30
  * contentType: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
- * location: {
33
- * s3Location: {
32
+ * location: { // CustomPluginLocation
33
+ * s3Location: { // S3Location
34
34
  * bucketArn: "STRING_VALUE", // required
35
35
  * fileKey: "STRING_VALUE", // required
36
36
  * objectVersion: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
26
26
  * import { KafkaConnectClient, CreateWorkerConfigurationCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, CreateWorkerConfigurationCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // CreateWorkerConfigurationRequest
30
30
  * description: "STRING_VALUE",
31
31
  * name: "STRING_VALUE", // required
32
32
  * propertiesFileContent: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _
26
26
  * import { KafkaConnectClient, DeleteConnectorCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, DeleteConnectorCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // DeleteConnectorRequest
30
30
  * connectorArn: "STRING_VALUE", // required
31
31
  * currentVersion: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo
26
26
  * import { KafkaConnectClient, DeleteCustomPluginCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, DeleteCustomPluginCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // DeleteCustomPluginRequest
30
30
  * customPluginArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCustomPluginCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
26
26
  * import { KafkaConnectClient, DescribeConnectorCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, DescribeConnectorCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // DescribeConnectorRequest
30
30
  * connectorArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeConnectorCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR
26
26
  * import { KafkaConnectClient, DescribeCustomPluginCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, DescribeCustomPluginCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // DescribeCustomPluginRequest
30
30
  * customPluginArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeCustomPluginCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeWorkerConfigurationCommandOutput extends DescribeWorker
26
26
  * import { KafkaConnectClient, DescribeWorkerConfigurationCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, DescribeWorkerConfigurationCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // DescribeWorkerConfigurationRequest
30
30
  * workerConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeWorkerConfigurationCommand(input);
@@ -28,7 +28,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
28
28
  * import { KafkaConnectClient, ListConnectorsCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
29
29
  * // const { KafkaConnectClient, ListConnectorsCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
30
30
  * const client = new KafkaConnectClient(config);
31
- * const input = {
31
+ * const input = { // ListConnectorsRequest
32
32
  * connectorNamePrefix: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
34
34
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons
26
26
  * import { KafkaConnectClient, ListCustomPluginsCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, ListCustomPluginsCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // ListCustomPluginsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu
26
26
  * import { KafkaConnectClient, ListWorkerConfigurationsCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, ListWorkerConfigurationsCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
29
+ * const input = { // ListWorkerConfigurationsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,20 +26,20 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
26
26
  * import { KafkaConnectClient, UpdateConnectorCommand } from "@aws-sdk/client-kafkaconnect"; // ES Modules import
27
27
  * // const { KafkaConnectClient, UpdateConnectorCommand } = require("@aws-sdk/client-kafkaconnect"); // CommonJS import
28
28
  * const client = new KafkaConnectClient(config);
29
- * const input = {
30
- * capacity: {
31
- * autoScaling: {
29
+ * const input = { // UpdateConnectorRequest
30
+ * capacity: { // CapacityUpdate
31
+ * autoScaling: { // AutoScalingUpdate
32
32
  * maxWorkerCount: Number("int"), // required
33
33
  * mcuCount: Number("int"), // required
34
34
  * minWorkerCount: Number("int"), // required
35
- * scaleInPolicy: {
35
+ * scaleInPolicy: { // ScaleInPolicyUpdate
36
36
  * cpuUtilizationPercentage: Number("int"), // required
37
37
  * },
38
- * scaleOutPolicy: {
38
+ * scaleOutPolicy: { // ScaleOutPolicyUpdate
39
39
  * cpuUtilizationPercentage: Number("int"), // required
40
40
  * },
41
41
  * },
42
- * provisionedCapacity: {
42
+ * provisionedCapacity: { // ProvisionedCapacityUpdate
43
43
  * mcuCount: Number("int"), // required
44
44
  * workerCount: Number("int"), // required
45
45
  * },
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.300.0",
4
+ "version": "3.301.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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",