@aws-sdk/client-kafka 3.300.0 → 3.303.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-cjs/models/models_0.js +44 -53
- package/dist-es/models/models_0.js +44 -53
- package/dist-types/commands/BatchAssociateScramSecretCommand.d.ts +2 -2
- package/dist-types/commands/BatchDisassociateScramSecretCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +28 -28
- package/dist-types/commands/CreateClusterV2Command.d.ts +34 -34
- package/dist-types/commands/CreateConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterOperationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterV2Command.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationRevisionCommand.d.ts +1 -1
- package/dist-types/commands/GetBootstrapBrokersCommand.d.ts +1 -1
- package/dist-types/commands/GetCompatibleKafkaVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListClusterOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersV2Command.d.ts +1 -1
- package/dist-types/commands/ListConfigurationRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListKafkaVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListScramSecretsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RebootBrokerCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateBrokerCountCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBrokerStorageCommand.d.ts +4 -4
- package/dist-types/commands/UpdateBrokerTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterKafkaVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectivityCommand.d.ts +3 -3
- package/dist-types/commands/UpdateMonitoringCommand.d.ts +10 -10
- package/dist-types/commands/UpdateSecurityCommand.d.ts +11 -11
- package/dist-types/commands/UpdateStorageCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +89 -44
- package/dist-types/ts3.4/models/models_0.d.ts +57 -44
- package/package.json +34 -34
|
@@ -2,59 +2,50 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ConflictException = exports.UnauthorizedException = exports.TooManyRequestsException = exports.ServiceUnavailableException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.BadRequestException = exports.NodeType = exports.KafkaVersionStatus = exports.ConfigurationState = exports.ClusterState = exports.StorageMode = exports.EnhancedMonitoring = exports.ClientBroker = exports.BrokerAZDistribution = exports.ClusterType = void 0;
|
|
4
4
|
const KafkaServiceException_1 = require("./KafkaServiceException");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
var KafkaVersionStatus;
|
|
50
|
-
(function (KafkaVersionStatus) {
|
|
51
|
-
KafkaVersionStatus["ACTIVE"] = "ACTIVE";
|
|
52
|
-
KafkaVersionStatus["DEPRECATED"] = "DEPRECATED";
|
|
53
|
-
})(KafkaVersionStatus = exports.KafkaVersionStatus || (exports.KafkaVersionStatus = {}));
|
|
54
|
-
var NodeType;
|
|
55
|
-
(function (NodeType) {
|
|
56
|
-
NodeType["BROKER"] = "BROKER";
|
|
57
|
-
})(NodeType = exports.NodeType || (exports.NodeType = {}));
|
|
5
|
+
exports.ClusterType = {
|
|
6
|
+
PROVISIONED: "PROVISIONED",
|
|
7
|
+
SERVERLESS: "SERVERLESS",
|
|
8
|
+
};
|
|
9
|
+
exports.BrokerAZDistribution = {
|
|
10
|
+
DEFAULT: "DEFAULT",
|
|
11
|
+
};
|
|
12
|
+
exports.ClientBroker = {
|
|
13
|
+
PLAINTEXT: "PLAINTEXT",
|
|
14
|
+
TLS: "TLS",
|
|
15
|
+
TLS_PLAINTEXT: "TLS_PLAINTEXT",
|
|
16
|
+
};
|
|
17
|
+
exports.EnhancedMonitoring = {
|
|
18
|
+
DEFAULT: "DEFAULT",
|
|
19
|
+
PER_BROKER: "PER_BROKER",
|
|
20
|
+
PER_TOPIC_PER_BROKER: "PER_TOPIC_PER_BROKER",
|
|
21
|
+
PER_TOPIC_PER_PARTITION: "PER_TOPIC_PER_PARTITION",
|
|
22
|
+
};
|
|
23
|
+
exports.StorageMode = {
|
|
24
|
+
LOCAL: "LOCAL",
|
|
25
|
+
TIERED: "TIERED",
|
|
26
|
+
};
|
|
27
|
+
exports.ClusterState = {
|
|
28
|
+
ACTIVE: "ACTIVE",
|
|
29
|
+
CREATING: "CREATING",
|
|
30
|
+
DELETING: "DELETING",
|
|
31
|
+
FAILED: "FAILED",
|
|
32
|
+
HEALING: "HEALING",
|
|
33
|
+
MAINTENANCE: "MAINTENANCE",
|
|
34
|
+
REBOOTING_BROKER: "REBOOTING_BROKER",
|
|
35
|
+
UPDATING: "UPDATING",
|
|
36
|
+
};
|
|
37
|
+
exports.ConfigurationState = {
|
|
38
|
+
ACTIVE: "ACTIVE",
|
|
39
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
40
|
+
DELETING: "DELETING",
|
|
41
|
+
};
|
|
42
|
+
exports.KafkaVersionStatus = {
|
|
43
|
+
ACTIVE: "ACTIVE",
|
|
44
|
+
DEPRECATED: "DEPRECATED",
|
|
45
|
+
};
|
|
46
|
+
exports.NodeType = {
|
|
47
|
+
BROKER: "BROKER",
|
|
48
|
+
};
|
|
58
49
|
class BadRequestException extends KafkaServiceException_1.KafkaServiceException {
|
|
59
50
|
constructor(opts) {
|
|
60
51
|
super({
|
|
@@ -1,57 +1,48 @@
|
|
|
1
1
|
import { KafkaServiceException as __BaseException } from "./KafkaServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
export
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
export var KafkaVersionStatus;
|
|
47
|
-
(function (KafkaVersionStatus) {
|
|
48
|
-
KafkaVersionStatus["ACTIVE"] = "ACTIVE";
|
|
49
|
-
KafkaVersionStatus["DEPRECATED"] = "DEPRECATED";
|
|
50
|
-
})(KafkaVersionStatus || (KafkaVersionStatus = {}));
|
|
51
|
-
export var NodeType;
|
|
52
|
-
(function (NodeType) {
|
|
53
|
-
NodeType["BROKER"] = "BROKER";
|
|
54
|
-
})(NodeType || (NodeType = {}));
|
|
2
|
+
export const ClusterType = {
|
|
3
|
+
PROVISIONED: "PROVISIONED",
|
|
4
|
+
SERVERLESS: "SERVERLESS",
|
|
5
|
+
};
|
|
6
|
+
export const BrokerAZDistribution = {
|
|
7
|
+
DEFAULT: "DEFAULT",
|
|
8
|
+
};
|
|
9
|
+
export const ClientBroker = {
|
|
10
|
+
PLAINTEXT: "PLAINTEXT",
|
|
11
|
+
TLS: "TLS",
|
|
12
|
+
TLS_PLAINTEXT: "TLS_PLAINTEXT",
|
|
13
|
+
};
|
|
14
|
+
export const EnhancedMonitoring = {
|
|
15
|
+
DEFAULT: "DEFAULT",
|
|
16
|
+
PER_BROKER: "PER_BROKER",
|
|
17
|
+
PER_TOPIC_PER_BROKER: "PER_TOPIC_PER_BROKER",
|
|
18
|
+
PER_TOPIC_PER_PARTITION: "PER_TOPIC_PER_PARTITION",
|
|
19
|
+
};
|
|
20
|
+
export const StorageMode = {
|
|
21
|
+
LOCAL: "LOCAL",
|
|
22
|
+
TIERED: "TIERED",
|
|
23
|
+
};
|
|
24
|
+
export const ClusterState = {
|
|
25
|
+
ACTIVE: "ACTIVE",
|
|
26
|
+
CREATING: "CREATING",
|
|
27
|
+
DELETING: "DELETING",
|
|
28
|
+
FAILED: "FAILED",
|
|
29
|
+
HEALING: "HEALING",
|
|
30
|
+
MAINTENANCE: "MAINTENANCE",
|
|
31
|
+
REBOOTING_BROKER: "REBOOTING_BROKER",
|
|
32
|
+
UPDATING: "UPDATING",
|
|
33
|
+
};
|
|
34
|
+
export const ConfigurationState = {
|
|
35
|
+
ACTIVE: "ACTIVE",
|
|
36
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
37
|
+
DELETING: "DELETING",
|
|
38
|
+
};
|
|
39
|
+
export const KafkaVersionStatus = {
|
|
40
|
+
ACTIVE: "ACTIVE",
|
|
41
|
+
DEPRECATED: "DEPRECATED",
|
|
42
|
+
};
|
|
43
|
+
export const NodeType = {
|
|
44
|
+
BROKER: "BROKER",
|
|
45
|
+
};
|
|
55
46
|
export class BadRequestException extends __BaseException {
|
|
56
47
|
constructor(opts) {
|
|
57
48
|
super({
|
|
@@ -26,9 +26,9 @@ export interface BatchAssociateScramSecretCommandOutput extends BatchAssociateSc
|
|
|
26
26
|
* import { KafkaClient, BatchAssociateScramSecretCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, BatchAssociateScramSecretCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // BatchAssociateScramSecretRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
|
-
* SecretArnList: [ // required
|
|
31
|
+
* SecretArnList: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface BatchDisassociateScramSecretCommandOutput extends BatchDisassoc
|
|
|
26
26
|
* import { KafkaClient, BatchDisassociateScramSecretCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, BatchDisassociateScramSecretCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // BatchDisassociateScramSecretRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
|
-
* SecretArnList: [ // required
|
|
31
|
+
* SecretArnList: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,87 +26,87 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
26
26
|
* import { KafkaClient, CreateClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, CreateClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* BrokerNodeGroupInfo: {
|
|
29
|
+
* const input = { // CreateClusterRequest
|
|
30
|
+
* BrokerNodeGroupInfo: { // BrokerNodeGroupInfo
|
|
31
31
|
* BrokerAZDistribution: "DEFAULT",
|
|
32
|
-
* ClientSubnets: [ // required
|
|
32
|
+
* ClientSubnets: [ // __listOf__string // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* InstanceType: "STRING_VALUE", // required
|
|
36
36
|
* SecurityGroups: [
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* StorageInfo: {
|
|
40
|
-
* EbsStorageInfo: {
|
|
41
|
-
* ProvisionedThroughput: {
|
|
39
|
+
* StorageInfo: { // StorageInfo
|
|
40
|
+
* EbsStorageInfo: { // EBSStorageInfo
|
|
41
|
+
* ProvisionedThroughput: { // ProvisionedThroughput
|
|
42
42
|
* Enabled: true || false,
|
|
43
43
|
* VolumeThroughput: Number("int"),
|
|
44
44
|
* },
|
|
45
45
|
* VolumeSize: Number("int"),
|
|
46
46
|
* },
|
|
47
47
|
* },
|
|
48
|
-
* ConnectivityInfo: {
|
|
49
|
-
* PublicAccess: {
|
|
48
|
+
* ConnectivityInfo: { // ConnectivityInfo
|
|
49
|
+
* PublicAccess: { // PublicAccess
|
|
50
50
|
* Type: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
52
|
* },
|
|
53
53
|
* },
|
|
54
|
-
* ClientAuthentication: {
|
|
55
|
-
* Sasl: {
|
|
56
|
-
* Scram: {
|
|
54
|
+
* ClientAuthentication: { // ClientAuthentication
|
|
55
|
+
* Sasl: { // Sasl
|
|
56
|
+
* Scram: { // Scram
|
|
57
57
|
* Enabled: true || false,
|
|
58
58
|
* },
|
|
59
|
-
* Iam: {
|
|
59
|
+
* Iam: { // Iam
|
|
60
60
|
* Enabled: true || false,
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
63
|
-
* Tls: {
|
|
63
|
+
* Tls: { // Tls
|
|
64
64
|
* CertificateAuthorityArnList: [
|
|
65
65
|
* "STRING_VALUE",
|
|
66
66
|
* ],
|
|
67
67
|
* Enabled: true || false,
|
|
68
68
|
* },
|
|
69
|
-
* Unauthenticated: {
|
|
69
|
+
* Unauthenticated: { // Unauthenticated
|
|
70
70
|
* Enabled: true || false,
|
|
71
71
|
* },
|
|
72
72
|
* },
|
|
73
73
|
* ClusterName: "STRING_VALUE", // required
|
|
74
|
-
* ConfigurationInfo: {
|
|
74
|
+
* ConfigurationInfo: { // ConfigurationInfo
|
|
75
75
|
* Arn: "STRING_VALUE", // required
|
|
76
76
|
* Revision: Number("long"), // required
|
|
77
77
|
* },
|
|
78
|
-
* EncryptionInfo: {
|
|
79
|
-
* EncryptionAtRest: {
|
|
78
|
+
* EncryptionInfo: { // EncryptionInfo
|
|
79
|
+
* EncryptionAtRest: { // EncryptionAtRest
|
|
80
80
|
* DataVolumeKMSKeyId: "STRING_VALUE", // required
|
|
81
81
|
* },
|
|
82
|
-
* EncryptionInTransit: {
|
|
82
|
+
* EncryptionInTransit: { // EncryptionInTransit
|
|
83
83
|
* ClientBroker: "TLS" || "TLS_PLAINTEXT" || "PLAINTEXT",
|
|
84
84
|
* InCluster: true || false,
|
|
85
85
|
* },
|
|
86
86
|
* },
|
|
87
87
|
* EnhancedMonitoring: "DEFAULT" || "PER_BROKER" || "PER_TOPIC_PER_BROKER" || "PER_TOPIC_PER_PARTITION",
|
|
88
|
-
* OpenMonitoring: {
|
|
89
|
-
* Prometheus: {
|
|
90
|
-
* JmxExporter: {
|
|
88
|
+
* OpenMonitoring: { // OpenMonitoringInfo
|
|
89
|
+
* Prometheus: { // PrometheusInfo
|
|
90
|
+
* JmxExporter: { // JmxExporterInfo
|
|
91
91
|
* EnabledInBroker: true || false, // required
|
|
92
92
|
* },
|
|
93
|
-
* NodeExporter: {
|
|
93
|
+
* NodeExporter: { // NodeExporterInfo
|
|
94
94
|
* EnabledInBroker: true || false, // required
|
|
95
95
|
* },
|
|
96
96
|
* },
|
|
97
97
|
* },
|
|
98
98
|
* KafkaVersion: "STRING_VALUE", // required
|
|
99
|
-
* LoggingInfo: {
|
|
100
|
-
* BrokerLogs: {
|
|
101
|
-
* CloudWatchLogs: {
|
|
99
|
+
* LoggingInfo: { // LoggingInfo
|
|
100
|
+
* BrokerLogs: { // BrokerLogs
|
|
101
|
+
* CloudWatchLogs: { // CloudWatchLogs
|
|
102
102
|
* Enabled: true || false, // required
|
|
103
103
|
* LogGroup: "STRING_VALUE",
|
|
104
104
|
* },
|
|
105
|
-
* Firehose: {
|
|
105
|
+
* Firehose: { // Firehose
|
|
106
106
|
* DeliveryStream: "STRING_VALUE",
|
|
107
107
|
* Enabled: true || false, // required
|
|
108
108
|
* },
|
|
109
|
-
* S3: {
|
|
109
|
+
* S3: { // S3
|
|
110
110
|
* Bucket: "STRING_VALUE",
|
|
111
111
|
* Enabled: true || false, // required
|
|
112
112
|
* Prefix: "STRING_VALUE",
|
|
@@ -114,7 +114,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
114
114
|
* },
|
|
115
115
|
* },
|
|
116
116
|
* NumberOfBrokerNodes: Number("int"), // required
|
|
117
|
-
* Tags: {
|
|
117
|
+
* Tags: { // __mapOf__string
|
|
118
118
|
* "<keys>": "STRING_VALUE",
|
|
119
119
|
* },
|
|
120
120
|
* StorageMode: "LOCAL" || "TIERED",
|
|
@@ -26,91 +26,91 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _
|
|
|
26
26
|
* import { KafkaClient, CreateClusterV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, CreateClusterV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateClusterV2Request
|
|
30
30
|
* ClusterName: "STRING_VALUE", // required
|
|
31
|
-
* Tags: {
|
|
31
|
+
* Tags: { // __mapOf__string
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
|
-
* Provisioned: {
|
|
35
|
-
* BrokerNodeGroupInfo: {
|
|
34
|
+
* Provisioned: { // ProvisionedRequest
|
|
35
|
+
* BrokerNodeGroupInfo: { // BrokerNodeGroupInfo
|
|
36
36
|
* BrokerAZDistribution: "DEFAULT",
|
|
37
|
-
* ClientSubnets: [ // required
|
|
37
|
+
* ClientSubnets: [ // __listOf__string // required
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* InstanceType: "STRING_VALUE", // required
|
|
41
41
|
* SecurityGroups: [
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* StorageInfo: {
|
|
45
|
-
* EbsStorageInfo: {
|
|
46
|
-
* ProvisionedThroughput: {
|
|
44
|
+
* StorageInfo: { // StorageInfo
|
|
45
|
+
* EbsStorageInfo: { // EBSStorageInfo
|
|
46
|
+
* ProvisionedThroughput: { // ProvisionedThroughput
|
|
47
47
|
* Enabled: true || false,
|
|
48
48
|
* VolumeThroughput: Number("int"),
|
|
49
49
|
* },
|
|
50
50
|
* VolumeSize: Number("int"),
|
|
51
51
|
* },
|
|
52
52
|
* },
|
|
53
|
-
* ConnectivityInfo: {
|
|
54
|
-
* PublicAccess: {
|
|
53
|
+
* ConnectivityInfo: { // ConnectivityInfo
|
|
54
|
+
* PublicAccess: { // PublicAccess
|
|
55
55
|
* Type: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
57
|
* },
|
|
58
58
|
* },
|
|
59
|
-
* ClientAuthentication: {
|
|
60
|
-
* Sasl: {
|
|
61
|
-
* Scram: {
|
|
59
|
+
* ClientAuthentication: { // ClientAuthentication
|
|
60
|
+
* Sasl: { // Sasl
|
|
61
|
+
* Scram: { // Scram
|
|
62
62
|
* Enabled: true || false,
|
|
63
63
|
* },
|
|
64
|
-
* Iam: {
|
|
64
|
+
* Iam: { // Iam
|
|
65
65
|
* Enabled: true || false,
|
|
66
66
|
* },
|
|
67
67
|
* },
|
|
68
|
-
* Tls: {
|
|
68
|
+
* Tls: { // Tls
|
|
69
69
|
* CertificateAuthorityArnList: [
|
|
70
70
|
* "STRING_VALUE",
|
|
71
71
|
* ],
|
|
72
72
|
* Enabled: true || false,
|
|
73
73
|
* },
|
|
74
|
-
* Unauthenticated: {
|
|
74
|
+
* Unauthenticated: { // Unauthenticated
|
|
75
75
|
* Enabled: true || false,
|
|
76
76
|
* },
|
|
77
77
|
* },
|
|
78
|
-
* ConfigurationInfo: {
|
|
78
|
+
* ConfigurationInfo: { // ConfigurationInfo
|
|
79
79
|
* Arn: "STRING_VALUE", // required
|
|
80
80
|
* Revision: Number("long"), // required
|
|
81
81
|
* },
|
|
82
|
-
* EncryptionInfo: {
|
|
83
|
-
* EncryptionAtRest: {
|
|
82
|
+
* EncryptionInfo: { // EncryptionInfo
|
|
83
|
+
* EncryptionAtRest: { // EncryptionAtRest
|
|
84
84
|
* DataVolumeKMSKeyId: "STRING_VALUE", // required
|
|
85
85
|
* },
|
|
86
|
-
* EncryptionInTransit: {
|
|
86
|
+
* EncryptionInTransit: { // EncryptionInTransit
|
|
87
87
|
* ClientBroker: "TLS" || "TLS_PLAINTEXT" || "PLAINTEXT",
|
|
88
88
|
* InCluster: true || false,
|
|
89
89
|
* },
|
|
90
90
|
* },
|
|
91
91
|
* EnhancedMonitoring: "DEFAULT" || "PER_BROKER" || "PER_TOPIC_PER_BROKER" || "PER_TOPIC_PER_PARTITION",
|
|
92
|
-
* OpenMonitoring: {
|
|
93
|
-
* Prometheus: {
|
|
94
|
-
* JmxExporter: {
|
|
92
|
+
* OpenMonitoring: { // OpenMonitoringInfo
|
|
93
|
+
* Prometheus: { // PrometheusInfo
|
|
94
|
+
* JmxExporter: { // JmxExporterInfo
|
|
95
95
|
* EnabledInBroker: true || false, // required
|
|
96
96
|
* },
|
|
97
|
-
* NodeExporter: {
|
|
97
|
+
* NodeExporter: { // NodeExporterInfo
|
|
98
98
|
* EnabledInBroker: true || false, // required
|
|
99
99
|
* },
|
|
100
100
|
* },
|
|
101
101
|
* },
|
|
102
102
|
* KafkaVersion: "STRING_VALUE", // required
|
|
103
|
-
* LoggingInfo: {
|
|
104
|
-
* BrokerLogs: {
|
|
105
|
-
* CloudWatchLogs: {
|
|
103
|
+
* LoggingInfo: { // LoggingInfo
|
|
104
|
+
* BrokerLogs: { // BrokerLogs
|
|
105
|
+
* CloudWatchLogs: { // CloudWatchLogs
|
|
106
106
|
* Enabled: true || false, // required
|
|
107
107
|
* LogGroup: "STRING_VALUE",
|
|
108
108
|
* },
|
|
109
|
-
* Firehose: {
|
|
109
|
+
* Firehose: { // Firehose
|
|
110
110
|
* DeliveryStream: "STRING_VALUE",
|
|
111
111
|
* Enabled: true || false, // required
|
|
112
112
|
* },
|
|
113
|
-
* S3: {
|
|
113
|
+
* S3: { // S3
|
|
114
114
|
* Bucket: "STRING_VALUE",
|
|
115
115
|
* Enabled: true || false, // required
|
|
116
116
|
* Prefix: "STRING_VALUE",
|
|
@@ -120,9 +120,9 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _
|
|
|
120
120
|
* NumberOfBrokerNodes: Number("int"), // required
|
|
121
121
|
* StorageMode: "LOCAL" || "TIERED",
|
|
122
122
|
* },
|
|
123
|
-
* Serverless: {
|
|
124
|
-
* VpcConfigs: [ // required
|
|
125
|
-
* {
|
|
123
|
+
* Serverless: { // ServerlessRequest
|
|
124
|
+
* VpcConfigs: [ // __listOfVpcConfig // required
|
|
125
|
+
* { // VpcConfig
|
|
126
126
|
* SubnetIds: [ // required
|
|
127
127
|
* "STRING_VALUE",
|
|
128
128
|
* ],
|
|
@@ -131,8 +131,8 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _
|
|
|
131
131
|
* ],
|
|
132
132
|
* },
|
|
133
133
|
* ],
|
|
134
|
-
* ClientAuthentication: {
|
|
135
|
-
* Sasl: {
|
|
134
|
+
* ClientAuthentication: { // ServerlessClientAuthentication
|
|
135
|
+
* Sasl: { // ServerlessSasl
|
|
136
136
|
* Iam: {
|
|
137
137
|
* Enabled: true || false,
|
|
138
138
|
* },
|
|
@@ -26,9 +26,9 @@ export interface CreateConfigurationCommandOutput extends CreateConfigurationRes
|
|
|
26
26
|
* import { KafkaClient, CreateConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, CreateConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateConfigurationRequest
|
|
30
30
|
* Description: "STRING_VALUE",
|
|
31
|
-
* KafkaVersions: [
|
|
31
|
+
* KafkaVersions: [ // __listOf__string
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* Name: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
26
26
|
* import { KafkaClient, DeleteClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DeleteClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteClusterRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
31
|
* CurrentVersion: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteConfigurationCommandOutput extends DeleteConfigurationRes
|
|
|
26
26
|
* import { KafkaClient, DeleteConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DeleteConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteConfigurationRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
26
26
|
* import { KafkaClient, DescribeClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DescribeClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeClusterRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeClusterCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeClusterOperationCommandOutput extends DescribeClusterOp
|
|
|
26
26
|
* import { KafkaClient, DescribeClusterOperationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DescribeClusterOperationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeClusterOperationRequest
|
|
30
30
|
* ClusterOperationArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeClusterOperationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeClusterV2CommandOutput extends DescribeClusterV2Respons
|
|
|
26
26
|
* import { KafkaClient, DescribeClusterV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DescribeClusterV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeClusterV2Request
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeClusterV2Command(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeConfigurationCommandOutput extends DescribeConfiguratio
|
|
|
26
26
|
* import { KafkaClient, DescribeConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DescribeConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeConfigurationRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeConfigurationRevisionCommandOutput extends DescribeConf
|
|
|
26
26
|
* import { KafkaClient, DescribeConfigurationRevisionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, DescribeConfigurationRevisionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeConfigurationRevisionRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* Revision: Number("long"), // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetBootstrapBrokersCommandOutput extends GetBootstrapBrokersRes
|
|
|
26
26
|
* import { KafkaClient, GetBootstrapBrokersCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, GetBootstrapBrokersCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetBootstrapBrokersRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetBootstrapBrokersCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetCompatibleKafkaVersionsCommandOutput extends GetCompatibleKa
|
|
|
26
26
|
* import { KafkaClient, GetCompatibleKafkaVersionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, GetCompatibleKafkaVersionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCompatibleKafkaVersionsRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE",
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCompatibleKafkaVersionsCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListClusterOperationsCommandOutput extends ListClusterOperation
|
|
|
26
26
|
* import { KafkaClient, ListClusterOperationsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, ListClusterOperationsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListClusterOperationsRequest
|
|
30
30
|
* ClusterArn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
26
26
|
* import { KafkaClient, ListClustersCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, ListClustersCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListClustersRequest
|
|
30
30
|
* ClusterNameFilter: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListClustersV2CommandOutput extends ListClustersV2Response, __M
|
|
|
26
26
|
* import { KafkaClient, ListClustersV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
27
27
|
* // const { KafkaClient, ListClustersV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
28
28
|
* const client = new KafkaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListClustersV2Request
|
|
30
30
|
* ClusterNameFilter: "STRING_VALUE",
|
|
31
31
|
* ClusterTypeFilter: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|