@aws-sdk/client-kafka 3.321.1 → 3.322.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 (75) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/Kafka.js +18 -0
  3. package/dist-cjs/commands/CreateVpcConnectionCommand.js +45 -0
  4. package/dist-cjs/commands/DeleteClusterPolicyCommand.js +45 -0
  5. package/dist-cjs/commands/DeleteVpcConnectionCommand.js +45 -0
  6. package/dist-cjs/commands/DescribeVpcConnectionCommand.js +45 -0
  7. package/dist-cjs/commands/GetClusterPolicyCommand.js +45 -0
  8. package/dist-cjs/commands/ListClientVpcConnectionsCommand.js +45 -0
  9. package/dist-cjs/commands/ListVpcConnectionsCommand.js +45 -0
  10. package/dist-cjs/commands/PutClusterPolicyCommand.js +45 -0
  11. package/dist-cjs/commands/RejectClientVpcConnectionCommand.js +45 -0
  12. package/dist-cjs/commands/index.js +9 -0
  13. package/dist-cjs/endpoint/ruleset.js +3 -3
  14. package/dist-cjs/models/models_0.js +15 -1
  15. package/dist-cjs/pagination/ListClientVpcConnectionsPaginator.js +29 -0
  16. package/dist-cjs/pagination/ListVpcConnectionsPaginator.js +29 -0
  17. package/dist-cjs/pagination/index.js +2 -0
  18. package/dist-cjs/protocols/Aws_restJson1.js +769 -48
  19. package/dist-es/Kafka.js +18 -0
  20. package/dist-es/commands/CreateVpcConnectionCommand.js +41 -0
  21. package/dist-es/commands/DeleteClusterPolicyCommand.js +41 -0
  22. package/dist-es/commands/DeleteVpcConnectionCommand.js +41 -0
  23. package/dist-es/commands/DescribeVpcConnectionCommand.js +41 -0
  24. package/dist-es/commands/GetClusterPolicyCommand.js +41 -0
  25. package/dist-es/commands/ListClientVpcConnectionsCommand.js +41 -0
  26. package/dist-es/commands/ListVpcConnectionsCommand.js +41 -0
  27. package/dist-es/commands/PutClusterPolicyCommand.js +41 -0
  28. package/dist-es/commands/RejectClientVpcConnectionCommand.js +41 -0
  29. package/dist-es/commands/index.js +9 -0
  30. package/dist-es/endpoint/ruleset.js +3 -3
  31. package/dist-es/models/models_0.js +14 -0
  32. package/dist-es/pagination/ListClientVpcConnectionsPaginator.js +25 -0
  33. package/dist-es/pagination/ListVpcConnectionsPaginator.js +25 -0
  34. package/dist-es/pagination/index.js +2 -0
  35. package/dist-es/protocols/Aws_restJson1.js +747 -44
  36. package/dist-types/Kafka.d.ts +63 -0
  37. package/dist-types/KafkaClient.d.ts +11 -2
  38. package/dist-types/commands/CreateClusterCommand.d.ts +18 -0
  39. package/dist-types/commands/CreateClusterV2Command.d.ts +19 -3
  40. package/dist-types/commands/CreateVpcConnectionCommand.d.ts +92 -0
  41. package/dist-types/commands/DeleteClusterPolicyCommand.d.ts +75 -0
  42. package/dist-types/commands/DeleteVpcConnectionCommand.d.ts +75 -0
  43. package/dist-types/commands/DescribeVpcConnectionCommand.d.ts +81 -0
  44. package/dist-types/commands/GetClusterPolicyCommand.d.ts +75 -0
  45. package/dist-types/commands/ListClientVpcConnectionsCommand.d.ts +80 -0
  46. package/dist-types/commands/ListVpcConnectionsCommand.d.ts +79 -0
  47. package/dist-types/commands/PutClusterPolicyCommand.d.ts +74 -0
  48. package/dist-types/commands/RejectClientVpcConnectionCommand.d.ts +79 -0
  49. package/dist-types/commands/UpdateConnectivityCommand.d.ts +15 -0
  50. package/dist-types/commands/index.d.ts +9 -0
  51. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  52. package/dist-types/models/models_0.d.ts +492 -0
  53. package/dist-types/pagination/ListClientVpcConnectionsPaginator.d.ts +7 -0
  54. package/dist-types/pagination/ListVpcConnectionsPaginator.d.ts +7 -0
  55. package/dist-types/pagination/index.d.ts +2 -0
  56. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  57. package/dist-types/ts3.4/Kafka.d.ts +153 -0
  58. package/dist-types/ts3.4/KafkaClient.d.ts +54 -0
  59. package/dist-types/ts3.4/commands/CreateVpcConnectionCommand.d.ts +38 -0
  60. package/dist-types/ts3.4/commands/DeleteClusterPolicyCommand.d.ts +38 -0
  61. package/dist-types/ts3.4/commands/DeleteVpcConnectionCommand.d.ts +38 -0
  62. package/dist-types/ts3.4/commands/DescribeVpcConnectionCommand.d.ts +41 -0
  63. package/dist-types/ts3.4/commands/GetClusterPolicyCommand.d.ts +37 -0
  64. package/dist-types/ts3.4/commands/ListClientVpcConnectionsCommand.d.ts +41 -0
  65. package/dist-types/ts3.4/commands/ListVpcConnectionsCommand.d.ts +38 -0
  66. package/dist-types/ts3.4/commands/PutClusterPolicyCommand.d.ts +37 -0
  67. package/dist-types/ts3.4/commands/RejectClientVpcConnectionCommand.d.ts +41 -0
  68. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  69. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  70. package/dist-types/ts3.4/models/models_0.d.ts +149 -0
  71. package/dist-types/ts3.4/pagination/ListClientVpcConnectionsPaginator.d.ts +11 -0
  72. package/dist-types/ts3.4/pagination/ListVpcConnectionsPaginator.d.ts +11 -0
  73. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  74. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  75. package/package.json +1 -1
@@ -32,6 +32,50 @@ export interface BrokerEBSVolumeInfo {
32
32
  */
33
33
  VolumeSizeGB?: number;
34
34
  }
35
+ /**
36
+ * @public
37
+ * @enum
38
+ */
39
+ export declare const VpcConnectionState: {
40
+ readonly AVAILABLE: "AVAILABLE";
41
+ readonly CREATING: "CREATING";
42
+ readonly DEACTIVATING: "DEACTIVATING";
43
+ readonly DELETING: "DELETING";
44
+ readonly FAILED: "FAILED";
45
+ readonly INACTIVE: "INACTIVE";
46
+ readonly REJECTED: "REJECTED";
47
+ readonly REJECTING: "REJECTING";
48
+ };
49
+ /**
50
+ * @public
51
+ */
52
+ export type VpcConnectionState = (typeof VpcConnectionState)[keyof typeof VpcConnectionState];
53
+ /**
54
+ * @public
55
+ * <p>The client VPC connection object.</p>
56
+ */
57
+ export interface ClientVpcConnection {
58
+ /**
59
+ * <p>Information about the auth scheme of Vpc Connection.</p>
60
+ */
61
+ Authentication?: string;
62
+ /**
63
+ * <p>Creation time of the Vpc Connection.</p>
64
+ */
65
+ CreationTime?: Date;
66
+ /**
67
+ * <p>State of the Vpc Connection.</p>
68
+ */
69
+ State?: VpcConnectionState | string;
70
+ /**
71
+ * <p>The ARN that identifies the Vpc Connection.</p>
72
+ */
73
+ VpcConnectionArn: string | undefined;
74
+ /**
75
+ * <p>The Owner of the Vpc Connection.</p>
76
+ */
77
+ Owner?: string;
78
+ }
35
79
  /**
36
80
  * @public
37
81
  * @enum
@@ -65,6 +109,74 @@ export interface PublicAccess {
65
109
  */
66
110
  Type?: string;
67
111
  }
112
+ /**
113
+ * @public
114
+ * <p>Details for IAM access control for VPC connectivity.</p>
115
+ */
116
+ export interface VpcConnectivityIam {
117
+ /**
118
+ * <p>SASL/IAM authentication is on or off for VPC connectivity.</p>
119
+ */
120
+ Enabled?: boolean;
121
+ }
122
+ /**
123
+ * @public
124
+ * <p>Details for SASL/SCRAM client authentication for VPC connectivity.</p>
125
+ */
126
+ export interface VpcConnectivityScram {
127
+ /**
128
+ * <p>SASL/SCRAM authentication is on or off for VPC connectivity.</p>
129
+ */
130
+ Enabled?: boolean;
131
+ }
132
+ /**
133
+ * @public
134
+ * <p>Details for SASL client authentication for VPC connectivity.</p>
135
+ */
136
+ export interface VpcConnectivitySasl {
137
+ /**
138
+ * <p>Details for SASL/SCRAM client authentication for VPC connectivity.</p>
139
+ */
140
+ Scram?: VpcConnectivityScram;
141
+ /**
142
+ * <p>Details for SASL/IAM client authentication for VPC connectivity.</p>
143
+ */
144
+ Iam?: VpcConnectivityIam;
145
+ }
146
+ /**
147
+ * @public
148
+ * <p>Details for TLS client authentication for VPC connectivity.</p>
149
+ */
150
+ export interface VpcConnectivityTls {
151
+ /**
152
+ * <p>TLS authentication is on or off for VPC connectivity.</p>
153
+ */
154
+ Enabled?: boolean;
155
+ }
156
+ /**
157
+ * @public
158
+ * <p>Includes all client authentication information for VPC connectivity.</p>
159
+ */
160
+ export interface VpcConnectivityClientAuthentication {
161
+ /**
162
+ * <p>SASL authentication type details for VPC connectivity.</p>
163
+ */
164
+ Sasl?: VpcConnectivitySasl;
165
+ /**
166
+ * <p>TLS authentication type details for VPC connectivity.</p>
167
+ */
168
+ Tls?: VpcConnectivityTls;
169
+ }
170
+ /**
171
+ * @public
172
+ * VPC connectivity access control for brokers.
173
+ */
174
+ export interface VpcConnectivity {
175
+ /**
176
+ * <p>Includes all client authentication information for VPC connectivity.</p>
177
+ */
178
+ ClientAuthentication?: VpcConnectivityClientAuthentication;
179
+ }
68
180
  /**
69
181
  * @public
70
182
  * <p>Information about the broker access configuration.</p>
@@ -74,6 +186,10 @@ export interface ConnectivityInfo {
74
186
  * <p>Public access control for brokers.</p>
75
187
  */
76
188
  PublicAccess?: PublicAccess;
189
+ /**
190
+ * <p>VPC connectivity access control for brokers.</p>
191
+ */
192
+ VpcConnectivity?: VpcConnectivity;
77
193
  }
78
194
  /**
79
195
  * @public
@@ -130,6 +246,10 @@ export interface BrokerNodeGroupInfo {
130
246
  * <p>Information about the broker access configuration.</p>
131
247
  */
132
248
  ConnectivityInfo?: ConnectivityInfo;
249
+ /**
250
+ * <p>The list of zoneIds for the cluster in the virtual private cloud (VPC).</p>
251
+ */
252
+ ZoneIds?: string[];
133
253
  }
134
254
  /**
135
255
  * @public
@@ -788,6 +908,54 @@ export interface MutableClusterInfo {
788
908
  */
789
909
  StorageMode?: StorageMode | string;
790
910
  }
911
+ /**
912
+ * @public
913
+ * @enum
914
+ */
915
+ export declare const UserIdentityType: {
916
+ readonly AWSACCOUNT: "AWSACCOUNT";
917
+ readonly AWSSERVICE: "AWSSERVICE";
918
+ };
919
+ /**
920
+ * @public
921
+ */
922
+ export type UserIdentityType = (typeof UserIdentityType)[keyof typeof UserIdentityType];
923
+ /**
924
+ * @public
925
+ * <p>Description of the requester that calls the API operation.</p>
926
+ */
927
+ export interface UserIdentity {
928
+ /**
929
+ * <p>The identity type of the requester that calls the API operation.</p>
930
+ */
931
+ Type?: UserIdentityType | string;
932
+ /**
933
+ * <p>A unique identifier for the requester that calls the API operation.</p>
934
+ */
935
+ PrincipalId?: string;
936
+ }
937
+ /**
938
+ * @public
939
+ * <p>Description of the VPC connection.</p>
940
+ */
941
+ export interface VpcConnectionInfo {
942
+ /**
943
+ * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
944
+ */
945
+ VpcConnectionArn?: string;
946
+ /**
947
+ * <p>The owner of the VPC Connection.</p>
948
+ */
949
+ Owner?: string;
950
+ /**
951
+ * <p>Description of the requester that calls the API operation.</p>
952
+ */
953
+ UserIdentity?: UserIdentity;
954
+ /**
955
+ * <p>The time when Amazon MSK creates the VPC Connnection.</p>
956
+ */
957
+ CreationTime?: Date;
958
+ }
791
959
  /**
792
960
  * @public
793
961
  * <p>Returns information about a cluster operation.</p>
@@ -837,6 +1005,10 @@ export interface ClusterOperationInfo {
837
1005
  * <p>Information about cluster attributes after a cluster is updated.</p>
838
1006
  */
839
1007
  TargetClusterInfo?: MutableClusterInfo;
1008
+ /**
1009
+ * <p>Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.</p>
1010
+ */
1011
+ VpcConnectionInfo?: VpcConnectionInfo;
840
1012
  }
841
1013
  /**
842
1014
  * @public
@@ -1051,6 +1223,36 @@ export interface UnprocessedScramSecret {
1051
1223
  */
1052
1224
  SecretArn?: string;
1053
1225
  }
1226
+ /**
1227
+ * @public
1228
+ * <p>The VPC connection object.</p>
1229
+ */
1230
+ export interface VpcConnection {
1231
+ /**
1232
+ * <p>The ARN that identifies the Vpc Connection.</p>
1233
+ */
1234
+ VpcConnectionArn: string | undefined;
1235
+ /**
1236
+ * <p>The ARN that identifies the Cluster which the Vpc Connection belongs to.</p>
1237
+ */
1238
+ TargetClusterArn: string | undefined;
1239
+ /**
1240
+ * <p>Creation time of the Vpc Connection.</p>
1241
+ */
1242
+ CreationTime?: Date;
1243
+ /**
1244
+ * <p>Information about the auth scheme of Vpc Connection.</p>
1245
+ */
1246
+ Authentication?: string;
1247
+ /**
1248
+ * <p>The vpcId that belongs to the Vpc Connection.</p>
1249
+ */
1250
+ VpcId?: string;
1251
+ /**
1252
+ * <p>State of the Vpc Connection.</p>
1253
+ */
1254
+ State?: VpcConnectionState | string;
1255
+ }
1054
1256
  /**
1055
1257
  * @public
1056
1258
  * <p>Returns information about an error.</p>
@@ -1481,6 +1683,72 @@ export interface CreateConfigurationResponse {
1481
1683
  */
1482
1684
  State?: ConfigurationState | string;
1483
1685
  }
1686
+ /**
1687
+ * @public
1688
+ */
1689
+ export interface CreateVpcConnectionRequest {
1690
+ /**
1691
+ * <p>The cluster Amazon Resource Name (ARN) for the VPC connection.</p>
1692
+ */
1693
+ TargetClusterArn: string | undefined;
1694
+ /**
1695
+ * <p>The authentication type of VPC connection.</p>
1696
+ */
1697
+ Authentication: string | undefined;
1698
+ /**
1699
+ * <p>The VPC ID of VPC connection.</p>
1700
+ */
1701
+ VpcId: string | undefined;
1702
+ /**
1703
+ * <p>The list of client subnets.</p>
1704
+ */
1705
+ ClientSubnets: string[] | undefined;
1706
+ /**
1707
+ * <p>The list of security groups.</p>
1708
+ */
1709
+ SecurityGroups: string[] | undefined;
1710
+ /**
1711
+ * <p>A map of tags for the VPC connection.</p>
1712
+ */
1713
+ Tags?: Record<string, string>;
1714
+ }
1715
+ /**
1716
+ * @public
1717
+ */
1718
+ export interface CreateVpcConnectionResponse {
1719
+ /**
1720
+ * <p>The VPC connection ARN.</p>
1721
+ */
1722
+ VpcConnectionArn?: string;
1723
+ /**
1724
+ * <p>The State of Vpc Connection.</p>
1725
+ */
1726
+ State?: VpcConnectionState | string;
1727
+ /**
1728
+ * <p>The authentication type of VPC connection.</p>
1729
+ */
1730
+ Authentication?: string;
1731
+ /**
1732
+ * <p>The VPC ID of the VPC connection.</p>
1733
+ */
1734
+ VpcId?: string;
1735
+ /**
1736
+ * <p>The list of client subnets.</p>
1737
+ */
1738
+ ClientSubnets?: string[];
1739
+ /**
1740
+ * <p>The list of security groups.</p>
1741
+ */
1742
+ SecurityGroups?: string[];
1743
+ /**
1744
+ * <p>The creation time of VPC connection.</p>
1745
+ */
1746
+ CreationTime?: Date;
1747
+ /**
1748
+ * <p>A map of tags for the VPC connection.</p>
1749
+ */
1750
+ Tags?: Record<string, string>;
1751
+ }
1484
1752
  /**
1485
1753
  * @public
1486
1754
  */
@@ -1507,6 +1775,20 @@ export interface DeleteClusterResponse {
1507
1775
  */
1508
1776
  State?: ClusterState | string;
1509
1777
  }
1778
+ /**
1779
+ * @public
1780
+ */
1781
+ export interface DeleteClusterPolicyRequest {
1782
+ /**
1783
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
1784
+ */
1785
+ ClusterArn: string | undefined;
1786
+ }
1787
+ /**
1788
+ * @public
1789
+ */
1790
+ export interface DeleteClusterPolicyResponse {
1791
+ }
1510
1792
  /**
1511
1793
  * @public
1512
1794
  */
@@ -1529,6 +1811,28 @@ export interface DeleteConfigurationResponse {
1529
1811
  */
1530
1812
  State?: ConfigurationState | string;
1531
1813
  }
1814
+ /**
1815
+ * @public
1816
+ */
1817
+ export interface DeleteVpcConnectionRequest {
1818
+ /**
1819
+ * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.</p>
1820
+ */
1821
+ Arn: string | undefined;
1822
+ }
1823
+ /**
1824
+ * @public
1825
+ */
1826
+ export interface DeleteVpcConnectionResponse {
1827
+ /**
1828
+ * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.</p>
1829
+ */
1830
+ VpcConnectionArn?: string;
1831
+ /**
1832
+ * <p>The state of the VPC connection.</p>
1833
+ */
1834
+ State?: VpcConnectionState | string;
1835
+ }
1532
1836
  /**
1533
1837
  * @public
1534
1838
  */
@@ -1664,6 +1968,56 @@ export interface DescribeConfigurationRevisionResponse {
1664
1968
  */
1665
1969
  ServerProperties?: Uint8Array;
1666
1970
  }
1971
+ /**
1972
+ * @public
1973
+ */
1974
+ export interface DescribeVpcConnectionRequest {
1975
+ /**
1976
+ * <p>The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.</p>
1977
+ */
1978
+ Arn: string | undefined;
1979
+ }
1980
+ /**
1981
+ * @public
1982
+ */
1983
+ export interface DescribeVpcConnectionResponse {
1984
+ /**
1985
+ * <p>The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.</p>
1986
+ */
1987
+ VpcConnectionArn?: string;
1988
+ /**
1989
+ * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.</p>
1990
+ */
1991
+ TargetClusterArn?: string;
1992
+ /**
1993
+ * <p>The state of VPC connection.</p>
1994
+ */
1995
+ State?: VpcConnectionState | string;
1996
+ /**
1997
+ * <p>The authentication type of VPC connection.</p>
1998
+ */
1999
+ Authentication?: string;
2000
+ /**
2001
+ * <p>The VPC Id for the VPC connection.</p>
2002
+ */
2003
+ VpcId?: string;
2004
+ /**
2005
+ * <p>The list of subnets for the VPC connection.</p>
2006
+ */
2007
+ Subnets?: string[];
2008
+ /**
2009
+ * <p>The list of security groups for the VPC connection.</p>
2010
+ */
2011
+ SecurityGroups?: string[];
2012
+ /**
2013
+ * <p>The creation time of the VPC connection.</p>
2014
+ */
2015
+ CreationTime?: Date;
2016
+ /**
2017
+ * <p>A map of tags for the VPC connection.</p>
2018
+ */
2019
+ Tags?: Record<string, string>;
2020
+ }
1667
2021
  /**
1668
2022
  * @public
1669
2023
  */
@@ -1705,6 +2059,40 @@ export interface GetBootstrapBrokersResponse {
1705
2059
  * <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
1706
2060
  */
1707
2061
  BootstrapBrokerStringPublicSaslIam?: string;
2062
+ /**
2063
+ * <p>A string containing one or more DNS names (or IP) and TLS port pairs for VPC connectivity.</p>
2064
+ */
2065
+ BootstrapBrokerStringVpcConnectivityTls?: string;
2066
+ /**
2067
+ * <p>A string containing one or more DNS names (or IP) and SASL/SCRAM port pairs for VPC connectivity.</p>
2068
+ */
2069
+ BootstrapBrokerStringVpcConnectivitySaslScram?: string;
2070
+ /**
2071
+ * <p>A string containing one or more DNS names (or IP) and SASL/IAM port pairs for VPC connectivity.</p>
2072
+ */
2073
+ BootstrapBrokerStringVpcConnectivitySaslIam?: string;
2074
+ }
2075
+ /**
2076
+ * @public
2077
+ */
2078
+ export interface GetClusterPolicyRequest {
2079
+ /**
2080
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2081
+ */
2082
+ ClusterArn: string | undefined;
2083
+ }
2084
+ /**
2085
+ * @public
2086
+ */
2087
+ export interface GetClusterPolicyResponse {
2088
+ /**
2089
+ * <p>The version of cluster policy.</p>
2090
+ */
2091
+ CurrentVersion?: string;
2092
+ /**
2093
+ * <p>The cluster policy.</p>
2094
+ */
2095
+ Policy?: string;
1708
2096
  }
1709
2097
  /**
1710
2098
  * @public
@@ -1724,6 +2112,38 @@ export interface GetCompatibleKafkaVersionsResponse {
1724
2112
  */
1725
2113
  CompatibleKafkaVersions?: CompatibleKafkaVersion[];
1726
2114
  }
2115
+ /**
2116
+ * @public
2117
+ */
2118
+ export interface ListClientVpcConnectionsRequest {
2119
+ /**
2120
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2121
+ */
2122
+ ClusterArn: string | undefined;
2123
+ /**
2124
+ * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
2125
+ */
2126
+ MaxResults?: number;
2127
+ /**
2128
+ * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
2129
+ * To get the next batch, provide this token in your next request.</p>
2130
+ */
2131
+ NextToken?: string;
2132
+ }
2133
+ /**
2134
+ * @public
2135
+ */
2136
+ export interface ListClientVpcConnectionsResponse {
2137
+ /**
2138
+ * <p>List of client VPC connections.</p>
2139
+ */
2140
+ ClientVpcConnections?: ClientVpcConnection[];
2141
+ /**
2142
+ * <p>The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
2143
+ * To get another batch of configurations, provide this token in your next request.</p>
2144
+ */
2145
+ NextToken?: string;
2146
+ }
1727
2147
  /**
1728
2148
  * @public
1729
2149
  */
@@ -1982,6 +2402,60 @@ export interface ListTagsForResourceResponse {
1982
2402
  */
1983
2403
  Tags?: Record<string, string>;
1984
2404
  }
2405
+ /**
2406
+ * @public
2407
+ */
2408
+ export interface ListVpcConnectionsRequest {
2409
+ /**
2410
+ * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
2411
+ */
2412
+ MaxResults?: number;
2413
+ /**
2414
+ * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
2415
+ * To get the next batch, provide this token in your next request.</p>
2416
+ */
2417
+ NextToken?: string;
2418
+ }
2419
+ /**
2420
+ * @public
2421
+ */
2422
+ export interface ListVpcConnectionsResponse {
2423
+ /**
2424
+ * <p>List of VPC connections.</p>
2425
+ */
2426
+ VpcConnections?: VpcConnection[];
2427
+ /**
2428
+ * <p>The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
2429
+ * To get another batch of configurations, provide this token in your next request.</p>
2430
+ */
2431
+ NextToken?: string;
2432
+ }
2433
+ /**
2434
+ * @public
2435
+ */
2436
+ export interface PutClusterPolicyRequest {
2437
+ /**
2438
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2439
+ */
2440
+ ClusterArn: string | undefined;
2441
+ /**
2442
+ * <p>The policy version.</p>
2443
+ */
2444
+ CurrentVersion?: string;
2445
+ /**
2446
+ * <p>The policy.</p>
2447
+ */
2448
+ Policy: string | undefined;
2449
+ }
2450
+ /**
2451
+ * @public
2452
+ */
2453
+ export interface PutClusterPolicyResponse {
2454
+ /**
2455
+ * <p>The policy version.</p>
2456
+ */
2457
+ CurrentVersion?: string;
2458
+ }
1985
2459
  /**
1986
2460
  * @public
1987
2461
  * Reboots a node.
@@ -2009,6 +2483,24 @@ export interface RebootBrokerResponse {
2009
2483
  */
2010
2484
  ClusterOperationArn?: string;
2011
2485
  }
2486
+ /**
2487
+ * @public
2488
+ */
2489
+ export interface RejectClientVpcConnectionRequest {
2490
+ /**
2491
+ * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2492
+ */
2493
+ ClusterArn: string | undefined;
2494
+ /**
2495
+ * <p>The VPC connection ARN.</p>
2496
+ */
2497
+ VpcConnectionArn: string | undefined;
2498
+ }
2499
+ /**
2500
+ * @public
2501
+ */
2502
+ export interface RejectClientVpcConnectionResponse {
2503
+ }
2012
2504
  /**
2013
2505
  * @public
2014
2506
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListClientVpcConnectionsCommandInput, ListClientVpcConnectionsCommandOutput } from "../commands/ListClientVpcConnectionsCommand";
3
+ import { KafkaPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListClientVpcConnections(config: KafkaPaginationConfiguration, input: ListClientVpcConnectionsCommandInput, ...additionalArguments: any): Paginator<ListClientVpcConnectionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListVpcConnectionsCommandInput, ListVpcConnectionsCommandOutput } from "../commands/ListVpcConnectionsCommand";
3
+ import { KafkaPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListVpcConnections(config: KafkaPaginationConfiguration, input: ListVpcConnectionsCommandInput, ...additionalArguments: any): Paginator<ListVpcConnectionsCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListClientVpcConnectionsPaginator";
2
3
  export * from "./ListClusterOperationsPaginator";
3
4
  export * from "./ListClustersPaginator";
4
5
  export * from "./ListClustersV2Paginator";
@@ -7,3 +8,4 @@ export * from "./ListConfigurationsPaginator";
7
8
  export * from "./ListKafkaVersionsPaginator";
8
9
  export * from "./ListNodesPaginator";
9
10
  export * from "./ListScramSecretsPaginator";
11
+ export * from "./ListVpcConnectionsPaginator";