aws-sdk-kafka 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1696,6 +1696,682 @@ module Aws::Kafka
1696
1696
  include Aws::Structure
1697
1697
  end
1698
1698
 
1699
+ # @note When making an API call, you may pass ListClustersV2Request
1700
+ # data as a hash:
1701
+ #
1702
+ # {
1703
+ # cluster_name_filter: "__string",
1704
+ # cluster_type_filter: "__string",
1705
+ # max_results: 1,
1706
+ # next_token: "__string",
1707
+ # }
1708
+ #
1709
+ # @!attribute [rw] cluster_name_filter
1710
+ # Specify a prefix of the names of the clusters that you want to list.
1711
+ # The service lists all the clusters whose names start with this
1712
+ # prefix.
1713
+ # @return [String]
1714
+ #
1715
+ # @!attribute [rw] cluster_type_filter
1716
+ # Specify either PROVISIONED or SERVERLESS.
1717
+ # @return [String]
1718
+ #
1719
+ # @!attribute [rw] max_results
1720
+ # The maximum number of results to return in the response. If there
1721
+ # are more results, the response includes a NextToken parameter.
1722
+ # @return [Integer]
1723
+ #
1724
+ # @!attribute [rw] next_token
1725
+ # The paginated results marker. When the result of the operation is
1726
+ # truncated, the call returns NextToken in the response. To get the
1727
+ # next batch, provide this token in your next request.
1728
+ # @return [String]
1729
+ #
1730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClustersV2Request AWS API Documentation
1731
+ #
1732
+ class ListClustersV2Request < Struct.new(
1733
+ :cluster_name_filter,
1734
+ :cluster_type_filter,
1735
+ :max_results,
1736
+ :next_token)
1737
+ SENSITIVE = []
1738
+ include Aws::Structure
1739
+ end
1740
+
1741
+ # The response contains an array containing cluster information and a
1742
+ # next token if the response is truncated.
1743
+ #
1744
+ # @!attribute [rw] cluster_info_list
1745
+ # Information on each of the MSK clusters in the response.
1746
+ # @return [Array<Types::Cluster>]
1747
+ #
1748
+ # @!attribute [rw] next_token
1749
+ # The paginated results marker. When the result of a ListClusters
1750
+ # operation is truncated, the call returns NextToken in the response.
1751
+ # To get another batch of clusters, provide this token in your next
1752
+ # request.
1753
+ # @return [String]
1754
+ #
1755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClustersV2Response AWS API Documentation
1756
+ #
1757
+ class ListClustersV2Response < Struct.new(
1758
+ :cluster_info_list,
1759
+ :next_token)
1760
+ SENSITIVE = []
1761
+ include Aws::Structure
1762
+ end
1763
+
1764
+ # Creates a new Amazon MSK cluster of either the provisioned or the
1765
+ # serverless type.
1766
+ #
1767
+ # @note When making an API call, you may pass CreateClusterV2Request
1768
+ # data as a hash:
1769
+ #
1770
+ # {
1771
+ # cluster_name: "__stringMin1Max64", # required
1772
+ # tags: {
1773
+ # "__string" => "__string",
1774
+ # },
1775
+ # provisioned: {
1776
+ # broker_node_group_info: { # required
1777
+ # broker_az_distribution: "DEFAULT", # accepts DEFAULT
1778
+ # client_subnets: ["__string"], # required
1779
+ # instance_type: "__stringMin5Max32", # required
1780
+ # security_groups: ["__string"],
1781
+ # storage_info: {
1782
+ # ebs_storage_info: {
1783
+ # volume_size: 1,
1784
+ # },
1785
+ # },
1786
+ # connectivity_info: {
1787
+ # public_access: {
1788
+ # type: "__string",
1789
+ # },
1790
+ # },
1791
+ # },
1792
+ # client_authentication: {
1793
+ # sasl: {
1794
+ # scram: {
1795
+ # enabled: false,
1796
+ # },
1797
+ # iam: {
1798
+ # enabled: false,
1799
+ # },
1800
+ # },
1801
+ # tls: {
1802
+ # certificate_authority_arn_list: ["__string"],
1803
+ # enabled: false,
1804
+ # },
1805
+ # unauthenticated: {
1806
+ # enabled: false,
1807
+ # },
1808
+ # },
1809
+ # configuration_info: {
1810
+ # arn: "__string", # required
1811
+ # revision: 1, # required
1812
+ # },
1813
+ # encryption_info: {
1814
+ # encryption_at_rest: {
1815
+ # data_volume_kms_key_id: "__string", # required
1816
+ # },
1817
+ # encryption_in_transit: {
1818
+ # client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
1819
+ # in_cluster: false,
1820
+ # },
1821
+ # },
1822
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
1823
+ # open_monitoring: {
1824
+ # prometheus: { # required
1825
+ # jmx_exporter: {
1826
+ # enabled_in_broker: false, # required
1827
+ # },
1828
+ # node_exporter: {
1829
+ # enabled_in_broker: false, # required
1830
+ # },
1831
+ # },
1832
+ # },
1833
+ # kafka_version: "__stringMin1Max128", # required
1834
+ # logging_info: {
1835
+ # broker_logs: { # required
1836
+ # cloud_watch_logs: {
1837
+ # enabled: false, # required
1838
+ # log_group: "__string",
1839
+ # },
1840
+ # firehose: {
1841
+ # delivery_stream: "__string",
1842
+ # enabled: false, # required
1843
+ # },
1844
+ # s3: {
1845
+ # bucket: "__string",
1846
+ # enabled: false, # required
1847
+ # prefix: "__string",
1848
+ # },
1849
+ # },
1850
+ # },
1851
+ # number_of_broker_nodes: 1, # required
1852
+ # },
1853
+ # serverless: {
1854
+ # vpc_configs: [ # required
1855
+ # {
1856
+ # subnet_ids: ["__string"], # required
1857
+ # security_group_ids: ["__string"],
1858
+ # },
1859
+ # ],
1860
+ # client_authentication: {
1861
+ # sasl: {
1862
+ # iam: {
1863
+ # enabled: false,
1864
+ # },
1865
+ # },
1866
+ # },
1867
+ # },
1868
+ # }
1869
+ #
1870
+ # @!attribute [rw] cluster_name
1871
+ # The name of the cluster.
1872
+ # @return [String]
1873
+ #
1874
+ # @!attribute [rw] tags
1875
+ # A map of tags that you want the cluster to have.
1876
+ # @return [Hash<String,String>]
1877
+ #
1878
+ # @!attribute [rw] provisioned
1879
+ # Creates a provisioned cluster.
1880
+ # @return [Types::ProvisionedRequest]
1881
+ #
1882
+ # @!attribute [rw] serverless
1883
+ # Creates a serverless cluster.
1884
+ # @return [Types::ServerlessRequest]
1885
+ #
1886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2Request AWS API Documentation
1887
+ #
1888
+ class CreateClusterV2Request < Struct.new(
1889
+ :cluster_name,
1890
+ :tags,
1891
+ :provisioned,
1892
+ :serverless)
1893
+ SENSITIVE = []
1894
+ include Aws::Structure
1895
+ end
1896
+
1897
+ # Returns information about the created cluster of either the
1898
+ # provisioned or the serverless type.
1899
+ #
1900
+ # @!attribute [rw] cluster_arn
1901
+ # The Amazon Resource Name (ARN) of the cluster.
1902
+ # @return [String]
1903
+ #
1904
+ # @!attribute [rw] cluster_name
1905
+ # The name of the MSK cluster.
1906
+ # @return [String]
1907
+ #
1908
+ # @!attribute [rw] state
1909
+ # The state of the cluster. The possible states are ACTIVE, CREATING,
1910
+ # DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
1911
+ # UPDATING.
1912
+ # @return [String]
1913
+ #
1914
+ # @!attribute [rw] cluster_type
1915
+ # The type of the cluster. The possible types are PROVISIONED or
1916
+ # SERVERLESS.
1917
+ # @return [String]
1918
+ #
1919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2Response AWS API Documentation
1920
+ #
1921
+ class CreateClusterV2Response < Struct.new(
1922
+ :cluster_arn,
1923
+ :cluster_name,
1924
+ :state,
1925
+ :cluster_type)
1926
+ SENSITIVE = []
1927
+ include Aws::Structure
1928
+ end
1929
+
1930
+ # @note When making an API call, you may pass DescribeClusterV2Request
1931
+ # data as a hash:
1932
+ #
1933
+ # {
1934
+ # cluster_arn: "__string", # required
1935
+ # }
1936
+ #
1937
+ # @!attribute [rw] cluster_arn
1938
+ # The Amazon Resource Name (ARN) that uniquely identifies the cluster.
1939
+ # @return [String]
1940
+ #
1941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2Request AWS API Documentation
1942
+ #
1943
+ class DescribeClusterV2Request < Struct.new(
1944
+ :cluster_arn)
1945
+ SENSITIVE = []
1946
+ include Aws::Structure
1947
+ end
1948
+
1949
+ # Returns information about a cluster of either the provisioned or the
1950
+ # serverless type.
1951
+ #
1952
+ # @!attribute [rw] cluster_info
1953
+ # The cluster information.
1954
+ # @return [Types::Cluster]
1955
+ #
1956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2Response AWS API Documentation
1957
+ #
1958
+ class DescribeClusterV2Response < Struct.new(
1959
+ :cluster_info)
1960
+ SENSITIVE = []
1961
+ include Aws::Structure
1962
+ end
1963
+
1964
+ # Returns information about a cluster of either the provisioned or the
1965
+ # serverless type.
1966
+ #
1967
+ # @!attribute [rw] active_operation_arn
1968
+ # The Amazon Resource Name (ARN) that uniquely identifies a cluster
1969
+ # operation.
1970
+ # @return [String]
1971
+ #
1972
+ # @!attribute [rw] cluster_type
1973
+ # Cluster Type.
1974
+ # @return [String]
1975
+ #
1976
+ # @!attribute [rw] cluster_arn
1977
+ # The Amazon Resource Name (ARN) that uniquely identifies the cluster.
1978
+ # @return [String]
1979
+ #
1980
+ # @!attribute [rw] cluster_name
1981
+ # The name of the cluster.
1982
+ # @return [String]
1983
+ #
1984
+ # @!attribute [rw] creation_time
1985
+ # The time when the cluster was created.
1986
+ # @return [Time]
1987
+ #
1988
+ # @!attribute [rw] current_version
1989
+ # The current version of the MSK cluster.
1990
+ # @return [String]
1991
+ #
1992
+ # @!attribute [rw] state
1993
+ # The state of the cluster. The possible states are ACTIVE, CREATING,
1994
+ # DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
1995
+ # UPDATING.
1996
+ # @return [String]
1997
+ #
1998
+ # @!attribute [rw] state_info
1999
+ # State Info for the Amazon MSK cluster.
2000
+ # @return [Types::StateInfo]
2001
+ #
2002
+ # @!attribute [rw] tags
2003
+ # Tags attached to the cluster.
2004
+ # @return [Hash<String,String>]
2005
+ #
2006
+ # @!attribute [rw] provisioned
2007
+ # Information about the provisioned cluster.
2008
+ # @return [Types::Provisioned]
2009
+ #
2010
+ # @!attribute [rw] serverless
2011
+ # Information about the serverless cluster.
2012
+ # @return [Types::Serverless]
2013
+ #
2014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/Cluster AWS API Documentation
2015
+ #
2016
+ class Cluster < Struct.new(
2017
+ :active_operation_arn,
2018
+ :cluster_type,
2019
+ :cluster_arn,
2020
+ :cluster_name,
2021
+ :creation_time,
2022
+ :current_version,
2023
+ :state,
2024
+ :state_info,
2025
+ :tags,
2026
+ :provisioned,
2027
+ :serverless)
2028
+ SENSITIVE = []
2029
+ include Aws::Structure
2030
+ end
2031
+
2032
+ # Creates a provisioned cluster.
2033
+ #
2034
+ # @note When making an API call, you may pass ProvisionedRequest
2035
+ # data as a hash:
2036
+ #
2037
+ # {
2038
+ # broker_node_group_info: { # required
2039
+ # broker_az_distribution: "DEFAULT", # accepts DEFAULT
2040
+ # client_subnets: ["__string"], # required
2041
+ # instance_type: "__stringMin5Max32", # required
2042
+ # security_groups: ["__string"],
2043
+ # storage_info: {
2044
+ # ebs_storage_info: {
2045
+ # volume_size: 1,
2046
+ # },
2047
+ # },
2048
+ # connectivity_info: {
2049
+ # public_access: {
2050
+ # type: "__string",
2051
+ # },
2052
+ # },
2053
+ # },
2054
+ # client_authentication: {
2055
+ # sasl: {
2056
+ # scram: {
2057
+ # enabled: false,
2058
+ # },
2059
+ # iam: {
2060
+ # enabled: false,
2061
+ # },
2062
+ # },
2063
+ # tls: {
2064
+ # certificate_authority_arn_list: ["__string"],
2065
+ # enabled: false,
2066
+ # },
2067
+ # unauthenticated: {
2068
+ # enabled: false,
2069
+ # },
2070
+ # },
2071
+ # configuration_info: {
2072
+ # arn: "__string", # required
2073
+ # revision: 1, # required
2074
+ # },
2075
+ # encryption_info: {
2076
+ # encryption_at_rest: {
2077
+ # data_volume_kms_key_id: "__string", # required
2078
+ # },
2079
+ # encryption_in_transit: {
2080
+ # client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
2081
+ # in_cluster: false,
2082
+ # },
2083
+ # },
2084
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
2085
+ # open_monitoring: {
2086
+ # prometheus: { # required
2087
+ # jmx_exporter: {
2088
+ # enabled_in_broker: false, # required
2089
+ # },
2090
+ # node_exporter: {
2091
+ # enabled_in_broker: false, # required
2092
+ # },
2093
+ # },
2094
+ # },
2095
+ # kafka_version: "__stringMin1Max128", # required
2096
+ # logging_info: {
2097
+ # broker_logs: { # required
2098
+ # cloud_watch_logs: {
2099
+ # enabled: false, # required
2100
+ # log_group: "__string",
2101
+ # },
2102
+ # firehose: {
2103
+ # delivery_stream: "__string",
2104
+ # enabled: false, # required
2105
+ # },
2106
+ # s3: {
2107
+ # bucket: "__string",
2108
+ # enabled: false, # required
2109
+ # prefix: "__string",
2110
+ # },
2111
+ # },
2112
+ # },
2113
+ # number_of_broker_nodes: 1, # required
2114
+ # }
2115
+ #
2116
+ # @!attribute [rw] broker_node_group_info
2117
+ # Information about the brokers.
2118
+ # @return [Types::BrokerNodeGroupInfo]
2119
+ #
2120
+ # @!attribute [rw] client_authentication
2121
+ # Includes all client authentication related information.
2122
+ # @return [Types::ClientAuthentication]
2123
+ #
2124
+ # @!attribute [rw] configuration_info
2125
+ # Represents the configuration that you want MSK to use for the
2126
+ # cluster.
2127
+ # @return [Types::ConfigurationInfo]
2128
+ #
2129
+ # @!attribute [rw] encryption_info
2130
+ # Includes all encryption-related information.
2131
+ # @return [Types::EncryptionInfo]
2132
+ #
2133
+ # @!attribute [rw] enhanced_monitoring
2134
+ # Specifies the level of monitoring for the MSK cluster. The possible
2135
+ # values are DEFAULT, PER\_BROKER, PER\_TOPIC\_PER\_BROKER, and
2136
+ # PER\_TOPIC\_PER\_PARTITION.
2137
+ # @return [String]
2138
+ #
2139
+ # @!attribute [rw] open_monitoring
2140
+ # The settings for open monitoring.
2141
+ # @return [Types::OpenMonitoringInfo]
2142
+ #
2143
+ # @!attribute [rw] kafka_version
2144
+ # The Apache Kafka version that you want for the cluster.
2145
+ # @return [String]
2146
+ #
2147
+ # @!attribute [rw] logging_info
2148
+ # LoggingInfo details.
2149
+ # @return [Types::LoggingInfo]
2150
+ #
2151
+ # @!attribute [rw] number_of_broker_nodes
2152
+ # The number of brokers in the cluster.
2153
+ # @return [Integer]
2154
+ #
2155
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ProvisionedRequest AWS API Documentation
2156
+ #
2157
+ class ProvisionedRequest < Struct.new(
2158
+ :broker_node_group_info,
2159
+ :client_authentication,
2160
+ :configuration_info,
2161
+ :encryption_info,
2162
+ :enhanced_monitoring,
2163
+ :open_monitoring,
2164
+ :kafka_version,
2165
+ :logging_info,
2166
+ :number_of_broker_nodes)
2167
+ SENSITIVE = []
2168
+ include Aws::Structure
2169
+ end
2170
+
2171
+ # Describes the provisioned cluster.
2172
+ #
2173
+ # @!attribute [rw] broker_node_group_info
2174
+ # Information about the brokers.
2175
+ # @return [Types::BrokerNodeGroupInfo]
2176
+ #
2177
+ # @!attribute [rw] current_broker_software_info
2178
+ # Information about the version of software currently deployed on the
2179
+ # Apache Kafka brokers in the cluster.
2180
+ # @return [Types::BrokerSoftwareInfo]
2181
+ #
2182
+ # @!attribute [rw] client_authentication
2183
+ # Includes all client authentication information.
2184
+ # @return [Types::ClientAuthentication]
2185
+ #
2186
+ # @!attribute [rw] encryption_info
2187
+ # Includes all encryption-related information.
2188
+ # @return [Types::EncryptionInfo]
2189
+ #
2190
+ # @!attribute [rw] enhanced_monitoring
2191
+ # Specifies which metrics are gathered for the MSK cluster. This
2192
+ # property has the following possible values: DEFAULT, PER\_BROKER,
2193
+ # PER\_TOPIC\_PER\_BROKER, and PER\_TOPIC\_PER\_PARTITION. For a list
2194
+ # of the metrics associated with each of these levels of monitoring,
2195
+ # see [Monitoring][1].
2196
+ #
2197
+ #
2198
+ #
2199
+ # [1]: https://docs.aws.amazon.com/msk/latest/developerguide/monitoring.html
2200
+ # @return [String]
2201
+ #
2202
+ # @!attribute [rw] open_monitoring
2203
+ # Settings for open monitoring using Prometheus.
2204
+ # @return [Types::OpenMonitoringInfo]
2205
+ #
2206
+ # @!attribute [rw] logging_info
2207
+ # You can configure your MSK cluster to send broker logs to different
2208
+ # destination types. This is a container for the configuration details
2209
+ # related to broker logs.
2210
+ # @return [Types::LoggingInfo]
2211
+ #
2212
+ # @!attribute [rw] number_of_broker_nodes
2213
+ # The number of brokers in the cluster.
2214
+ # @return [Integer]
2215
+ #
2216
+ # @!attribute [rw] zookeeper_connect_string
2217
+ # The connection string to use to connect to the Apache ZooKeeper
2218
+ # cluster.
2219
+ # @return [String]
2220
+ #
2221
+ # @!attribute [rw] zookeeper_connect_string_tls
2222
+ # The connection string to use to connect to the Apache ZooKeeper
2223
+ # cluster on a TLS port.
2224
+ # @return [String]
2225
+ #
2226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/Provisioned AWS API Documentation
2227
+ #
2228
+ class Provisioned < Struct.new(
2229
+ :broker_node_group_info,
2230
+ :current_broker_software_info,
2231
+ :client_authentication,
2232
+ :encryption_info,
2233
+ :enhanced_monitoring,
2234
+ :open_monitoring,
2235
+ :logging_info,
2236
+ :number_of_broker_nodes,
2237
+ :zookeeper_connect_string,
2238
+ :zookeeper_connect_string_tls)
2239
+ SENSITIVE = []
2240
+ include Aws::Structure
2241
+ end
2242
+
2243
+ # The configuration of the Amazon VPCs for the cluster.
2244
+ #
2245
+ # @note When making an API call, you may pass VpcConfig
2246
+ # data as a hash:
2247
+ #
2248
+ # {
2249
+ # subnet_ids: ["__string"], # required
2250
+ # security_group_ids: ["__string"],
2251
+ # }
2252
+ #
2253
+ # @!attribute [rw] subnet_ids
2254
+ # The IDs of the subnets associated with the cluster.
2255
+ # @return [Array<String>]
2256
+ #
2257
+ # @!attribute [rw] security_group_ids
2258
+ # The IDs of the security groups associated with the cluster.
2259
+ # @return [Array<String>]
2260
+ #
2261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConfig AWS API Documentation
2262
+ #
2263
+ class VpcConfig < Struct.new(
2264
+ :subnet_ids,
2265
+ :security_group_ids)
2266
+ SENSITIVE = []
2267
+ include Aws::Structure
2268
+ end
2269
+
2270
+ # Creates serverless cluster.
2271
+ #
2272
+ # @note When making an API call, you may pass ServerlessRequest
2273
+ # data as a hash:
2274
+ #
2275
+ # {
2276
+ # vpc_configs: [ # required
2277
+ # {
2278
+ # subnet_ids: ["__string"], # required
2279
+ # security_group_ids: ["__string"],
2280
+ # },
2281
+ # ],
2282
+ # client_authentication: {
2283
+ # sasl: {
2284
+ # iam: {
2285
+ # enabled: false,
2286
+ # },
2287
+ # },
2288
+ # },
2289
+ # }
2290
+ #
2291
+ # @!attribute [rw] vpc_configs
2292
+ # Information on vpc config for the serverless cluster.
2293
+ # @return [Array<Types::VpcConfig>]
2294
+ #
2295
+ # @!attribute [rw] client_authentication
2296
+ # Information about the serverless cluster client authentication.
2297
+ # @return [Types::ServerlessClientAuthentication]
2298
+ #
2299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ServerlessRequest AWS API Documentation
2300
+ #
2301
+ class ServerlessRequest < Struct.new(
2302
+ :vpc_configs,
2303
+ :client_authentication)
2304
+ SENSITIVE = []
2305
+ include Aws::Structure
2306
+ end
2307
+
2308
+ # Describes the serverless cluster client authentication.
2309
+ #
2310
+ # @note When making an API call, you may pass ServerlessClientAuthentication
2311
+ # data as a hash:
2312
+ #
2313
+ # {
2314
+ # sasl: {
2315
+ # iam: {
2316
+ # enabled: false,
2317
+ # },
2318
+ # },
2319
+ # }
2320
+ #
2321
+ # @!attribute [rw] sasl
2322
+ # Serverless cluster SASL information.
2323
+ # @return [Types::ServerlessSasl]
2324
+ #
2325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ServerlessClientAuthentication AWS API Documentation
2326
+ #
2327
+ class ServerlessClientAuthentication < Struct.new(
2328
+ :sasl)
2329
+ SENSITIVE = []
2330
+ include Aws::Structure
2331
+ end
2332
+
2333
+ # Describes the serverless cluster SASL information.
2334
+ #
2335
+ # @note When making an API call, you may pass ServerlessSasl
2336
+ # data as a hash:
2337
+ #
2338
+ # {
2339
+ # iam: {
2340
+ # enabled: false,
2341
+ # },
2342
+ # }
2343
+ #
2344
+ # @!attribute [rw] iam
2345
+ # Indicates whether IAM access control is enabled.
2346
+ # @return [Types::Iam]
2347
+ #
2348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ServerlessSasl AWS API Documentation
2349
+ #
2350
+ class ServerlessSasl < Struct.new(
2351
+ :iam)
2352
+ SENSITIVE = []
2353
+ include Aws::Structure
2354
+ end
2355
+
2356
+ # Describes the serverless cluster.
2357
+ #
2358
+ # @!attribute [rw] vpc_configs
2359
+ # Information on vpc config for the serverless cluster.
2360
+ # @return [Array<Types::VpcConfig>]
2361
+ #
2362
+ # @!attribute [rw] client_authentication
2363
+ # Information about the serverless cluster client authentication.
2364
+ # @return [Types::ServerlessClientAuthentication]
2365
+ #
2366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/Serverless AWS API Documentation
2367
+ #
2368
+ class Serverless < Struct.new(
2369
+ :vpc_configs,
2370
+ :client_authentication)
2371
+ SENSITIVE = []
2372
+ include Aws::Structure
2373
+ end
2374
+
1699
2375
  # @note When making an API call, you may pass ListClustersRequest
1700
2376
  # data as a hash:
1701
2377
  #
data/lib/aws-sdk-kafka.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kafka/customizations'
48
48
  # @!group service
49
49
  module Aws::Kafka
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.45.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-18 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core