aws-cdk-lib 2.189.1__py3-none-any.whl → 2.191.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.189.1.jsii.tgz → aws-cdk-lib@2.191.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +6 -6
- aws_cdk/aws_apigateway/__init__.py +18 -1
- aws_cdk/aws_apigatewayv2/__init__.py +374 -6
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
- aws_cdk/aws_applicationsignals/__init__.py +204 -31
- aws_cdk/aws_aps/__init__.py +383 -2
- aws_cdk/aws_backup/__init__.py +0 -41
- aws_cdk/aws_batch/__init__.py +242 -5
- aws_cdk/aws_bedrock/__init__.py +963 -41
- aws_cdk/aws_cleanrooms/__init__.py +1392 -78
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +24 -26
- aws_cdk/aws_codebuild/__init__.py +107 -7
- aws_cdk/aws_datazone/__init__.py +23 -1
- aws_cdk/aws_dms/__init__.py +43 -0
- aws_cdk/aws_ec2/__init__.py +364 -30
- aws_cdk/aws_ecs/__init__.py +36 -5
- aws_cdk/aws_eks/__init__.py +2 -100
- aws_cdk/aws_elasticache/__init__.py +6 -11
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
- aws_cdk/aws_events/__init__.py +106 -13
- aws_cdk/aws_fsx/__init__.py +9 -21
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iot/__init__.py +6 -6
- aws_cdk/aws_kafkaconnect/__init__.py +2 -2
- aws_cdk/aws_kinesis/__init__.py +44 -0
- aws_cdk/aws_launchwizard/__init__.py +49 -49
- aws_cdk/aws_lex/__init__.py +615 -39
- aws_cdk/aws_location/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +14 -3
- aws_cdk/aws_memorydb/__init__.py +87 -0
- aws_cdk/aws_msk/__init__.py +226 -127
- aws_cdk/aws_neptune/__init__.py +0 -24
- aws_cdk/aws_opensearchservice/__init__.py +64 -56
- aws_cdk/aws_paymentcryptography/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +175 -3
- aws_cdk/aws_quicksight/__init__.py +393 -0
- aws_cdk/aws_rds/__init__.py +149 -120
- aws_cdk/aws_redshiftserverless/__init__.py +4 -14
- aws_cdk/aws_route53resolver/__init__.py +60 -9
- aws_cdk/aws_s3/__init__.py +34 -1
- aws_cdk/aws_s3_deployment/__init__.py +202 -5
- aws_cdk/aws_s3tables/__init__.py +142 -1
- aws_cdk/aws_sagemaker/__init__.py +40 -40
- aws_cdk/aws_ses/__init__.py +643 -18
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +720 -45
- aws_cdk/aws_transfer/__init__.py +55 -2
- aws_cdk/pipelines/__init__.py +1 -2
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/RECORD +57 -57
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -724,10 +724,11 @@ class CfnCluster(
|
|
|
724
724
|
firehose: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.FirehoseProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
725
725
|
s3: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.S3Property", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
726
726
|
) -> None:
|
|
727
|
-
'''
|
|
727
|
+
'''The broker logs configuration for this MSK cluster.
|
|
728
|
+
|
|
728
729
|
:param cloud_watch_logs:
|
|
729
|
-
:param firehose:
|
|
730
|
-
:param s3:
|
|
730
|
+
:param firehose: Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
731
|
+
:param s3: Details of the Amazon S3 destination for broker logs.
|
|
731
732
|
|
|
732
733
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html
|
|
733
734
|
:exampleMetadata: fixture=_generated
|
|
@@ -787,7 +788,8 @@ class CfnCluster(
|
|
|
787
788
|
def firehose(
|
|
788
789
|
self,
|
|
789
790
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.FirehoseProperty"]]:
|
|
790
|
-
'''
|
|
791
|
+
'''Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
792
|
+
|
|
791
793
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html#cfn-msk-cluster-brokerlogs-firehose
|
|
792
794
|
'''
|
|
793
795
|
result = self._values.get("firehose")
|
|
@@ -797,7 +799,8 @@ class CfnCluster(
|
|
|
797
799
|
def s3(
|
|
798
800
|
self,
|
|
799
801
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.S3Property"]]:
|
|
800
|
-
'''
|
|
802
|
+
'''Details of the Amazon S3 destination for broker logs.
|
|
803
|
+
|
|
801
804
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html#cfn-msk-cluster-brokerlogs-s3
|
|
802
805
|
'''
|
|
803
806
|
result = self._values.get("s3")
|
|
@@ -1013,9 +1016,9 @@ class CfnCluster(
|
|
|
1013
1016
|
unauthenticated: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.UnauthenticatedProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1014
1017
|
) -> None:
|
|
1015
1018
|
'''
|
|
1016
|
-
:param sasl:
|
|
1017
|
-
:param tls:
|
|
1018
|
-
:param unauthenticated:
|
|
1019
|
+
:param sasl: Details for client authentication using SASL. To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
1020
|
+
:param tls: Details for ClientAuthentication using TLS. To turn on TLS access control, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true and ``clientBroker`` to ``TLS`` .
|
|
1021
|
+
:param unauthenticated: Details for ClientAuthentication using no authentication.
|
|
1019
1022
|
|
|
1020
1023
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-clientauthentication.html
|
|
1021
1024
|
:exampleMetadata: fixture=_generated
|
|
@@ -1061,7 +1064,10 @@ class CfnCluster(
|
|
|
1061
1064
|
def sasl(
|
|
1062
1065
|
self,
|
|
1063
1066
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.SaslProperty"]]:
|
|
1064
|
-
'''
|
|
1067
|
+
'''Details for client authentication using SASL.
|
|
1068
|
+
|
|
1069
|
+
To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
1070
|
+
|
|
1065
1071
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-clientauthentication.html#cfn-msk-cluster-clientauthentication-sasl
|
|
1066
1072
|
'''
|
|
1067
1073
|
result = self._values.get("sasl")
|
|
@@ -1071,7 +1077,10 @@ class CfnCluster(
|
|
|
1071
1077
|
def tls(
|
|
1072
1078
|
self,
|
|
1073
1079
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.TlsProperty"]]:
|
|
1074
|
-
'''
|
|
1080
|
+
'''Details for ClientAuthentication using TLS.
|
|
1081
|
+
|
|
1082
|
+
To turn on TLS access control, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true and ``clientBroker`` to ``TLS`` .
|
|
1083
|
+
|
|
1075
1084
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-clientauthentication.html#cfn-msk-cluster-clientauthentication-tls
|
|
1076
1085
|
'''
|
|
1077
1086
|
result = self._values.get("tls")
|
|
@@ -1081,7 +1090,8 @@ class CfnCluster(
|
|
|
1081
1090
|
def unauthenticated(
|
|
1082
1091
|
self,
|
|
1083
1092
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.UnauthenticatedProperty"]]:
|
|
1084
|
-
'''
|
|
1093
|
+
'''Details for ClientAuthentication using no authentication.
|
|
1094
|
+
|
|
1085
1095
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-clientauthentication.html#cfn-msk-cluster-clientauthentication-unauthenticated
|
|
1086
1096
|
'''
|
|
1087
1097
|
result = self._values.get("unauthenticated")
|
|
@@ -1110,9 +1120,10 @@ class CfnCluster(
|
|
|
1110
1120
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1111
1121
|
log_group: typing.Optional[builtins.str] = None,
|
|
1112
1122
|
) -> None:
|
|
1113
|
-
'''
|
|
1114
|
-
|
|
1115
|
-
:param
|
|
1123
|
+
'''Details of the CloudWatch Logs destination for broker logs.
|
|
1124
|
+
|
|
1125
|
+
:param enabled: Specifies whether broker logs get sent to the specified CloudWatch Logs destination.
|
|
1126
|
+
:param log_group: The CloudWatch log group that is the destination for broker logs.
|
|
1116
1127
|
|
|
1117
1128
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html
|
|
1118
1129
|
:exampleMetadata: fixture=_generated
|
|
@@ -1142,7 +1153,8 @@ class CfnCluster(
|
|
|
1142
1153
|
|
|
1143
1154
|
@builtins.property
|
|
1144
1155
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1145
|
-
'''
|
|
1156
|
+
'''Specifies whether broker logs get sent to the specified CloudWatch Logs destination.
|
|
1157
|
+
|
|
1146
1158
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-enabled
|
|
1147
1159
|
'''
|
|
1148
1160
|
result = self._values.get("enabled")
|
|
@@ -1151,7 +1163,8 @@ class CfnCluster(
|
|
|
1151
1163
|
|
|
1152
1164
|
@builtins.property
|
|
1153
1165
|
def log_group(self) -> typing.Optional[builtins.str]:
|
|
1154
|
-
'''
|
|
1166
|
+
'''The CloudWatch log group that is the destination for broker logs.
|
|
1167
|
+
|
|
1155
1168
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html#cfn-msk-cluster-cloudwatchlogs-loggroup
|
|
1156
1169
|
'''
|
|
1157
1170
|
result = self._values.get("log_group")
|
|
@@ -1175,9 +1188,10 @@ class CfnCluster(
|
|
|
1175
1188
|
)
|
|
1176
1189
|
class ConfigurationInfoProperty:
|
|
1177
1190
|
def __init__(self, *, arn: builtins.str, revision: jsii.Number) -> None:
|
|
1178
|
-
'''
|
|
1179
|
-
|
|
1180
|
-
:param
|
|
1191
|
+
'''Specifies the configuration to use for the brokers.
|
|
1192
|
+
|
|
1193
|
+
:param arn: ARN of the configuration to use.
|
|
1194
|
+
:param revision: The revision of the configuration to use.
|
|
1181
1195
|
|
|
1182
1196
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html
|
|
1183
1197
|
:exampleMetadata: fixture=_generated
|
|
@@ -1204,7 +1218,8 @@ class CfnCluster(
|
|
|
1204
1218
|
|
|
1205
1219
|
@builtins.property
|
|
1206
1220
|
def arn(self) -> builtins.str:
|
|
1207
|
-
'''
|
|
1221
|
+
'''ARN of the configuration to use.
|
|
1222
|
+
|
|
1208
1223
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-arn
|
|
1209
1224
|
'''
|
|
1210
1225
|
result = self._values.get("arn")
|
|
@@ -1213,7 +1228,8 @@ class CfnCluster(
|
|
|
1213
1228
|
|
|
1214
1229
|
@builtins.property
|
|
1215
1230
|
def revision(self) -> jsii.Number:
|
|
1216
|
-
'''
|
|
1231
|
+
'''The revision of the configuration to use.
|
|
1232
|
+
|
|
1217
1233
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-configurationinfo.html#cfn-msk-cluster-configurationinfo-revision
|
|
1218
1234
|
'''
|
|
1219
1235
|
result = self._values.get("revision")
|
|
@@ -1246,9 +1262,10 @@ class CfnCluster(
|
|
|
1246
1262
|
public_access: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.PublicAccessProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1247
1263
|
vpc_connectivity: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivityProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1248
1264
|
) -> None:
|
|
1249
|
-
'''
|
|
1250
|
-
|
|
1251
|
-
:param
|
|
1265
|
+
'''Broker access controls.
|
|
1266
|
+
|
|
1267
|
+
:param public_access: Access control settings for the cluster's brokers.
|
|
1268
|
+
:param vpc_connectivity: VPC connection control settings for brokers.
|
|
1252
1269
|
|
|
1253
1270
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-connectivityinfo.html
|
|
1254
1271
|
:exampleMetadata: fixture=_generated
|
|
@@ -1294,7 +1311,8 @@ class CfnCluster(
|
|
|
1294
1311
|
def public_access(
|
|
1295
1312
|
self,
|
|
1296
1313
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.PublicAccessProperty"]]:
|
|
1297
|
-
'''
|
|
1314
|
+
'''Access control settings for the cluster's brokers.
|
|
1315
|
+
|
|
1298
1316
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-connectivityinfo.html#cfn-msk-cluster-connectivityinfo-publicaccess
|
|
1299
1317
|
'''
|
|
1300
1318
|
result = self._values.get("public_access")
|
|
@@ -1304,7 +1322,8 @@ class CfnCluster(
|
|
|
1304
1322
|
def vpc_connectivity(
|
|
1305
1323
|
self,
|
|
1306
1324
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivityProperty"]]:
|
|
1307
|
-
'''
|
|
1325
|
+
'''VPC connection control settings for brokers.
|
|
1326
|
+
|
|
1308
1327
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-connectivityinfo.html#cfn-msk-cluster-connectivityinfo-vpcconnectivity
|
|
1309
1328
|
'''
|
|
1310
1329
|
result = self._values.get("vpc_connectivity")
|
|
@@ -1336,9 +1355,10 @@ class CfnCluster(
|
|
|
1336
1355
|
provisioned_throughput: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ProvisionedThroughputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1337
1356
|
volume_size: typing.Optional[jsii.Number] = None,
|
|
1338
1357
|
) -> None:
|
|
1339
|
-
'''
|
|
1340
|
-
|
|
1341
|
-
:param
|
|
1358
|
+
'''Contains information about the EBS storage volumes attached to the broker nodes.
|
|
1359
|
+
|
|
1360
|
+
:param provisioned_throughput: EBS volume provisioned throughput information.
|
|
1361
|
+
:param volume_size: The size in GiB of the EBS volume for the data drive on each broker node.
|
|
1342
1362
|
|
|
1343
1363
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html
|
|
1344
1364
|
:exampleMetadata: fixture=_generated
|
|
@@ -1371,7 +1391,8 @@ class CfnCluster(
|
|
|
1371
1391
|
def provisioned_throughput(
|
|
1372
1392
|
self,
|
|
1373
1393
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ProvisionedThroughputProperty"]]:
|
|
1374
|
-
'''
|
|
1394
|
+
'''EBS volume provisioned throughput information.
|
|
1395
|
+
|
|
1375
1396
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-provisionedthroughput
|
|
1376
1397
|
'''
|
|
1377
1398
|
result = self._values.get("provisioned_throughput")
|
|
@@ -1379,7 +1400,8 @@ class CfnCluster(
|
|
|
1379
1400
|
|
|
1380
1401
|
@builtins.property
|
|
1381
1402
|
def volume_size(self) -> typing.Optional[jsii.Number]:
|
|
1382
|
-
'''
|
|
1403
|
+
'''The size in GiB of the EBS volume for the data drive on each broker node.
|
|
1404
|
+
|
|
1383
1405
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-ebsstorageinfo.html#cfn-msk-cluster-ebsstorageinfo-volumesize
|
|
1384
1406
|
'''
|
|
1385
1407
|
result = self._values.get("volume_size")
|
|
@@ -1403,8 +1425,11 @@ class CfnCluster(
|
|
|
1403
1425
|
)
|
|
1404
1426
|
class EncryptionAtRestProperty:
|
|
1405
1427
|
def __init__(self, *, data_volume_kms_key_id: builtins.str) -> None:
|
|
1406
|
-
'''
|
|
1407
|
-
|
|
1428
|
+
'''The data-volume encryption details.
|
|
1429
|
+
|
|
1430
|
+
You can't update encryption at rest settings for existing clusters.
|
|
1431
|
+
|
|
1432
|
+
:param data_volume_kms_key_id: The ARN of the Amazon KMS key for encrypting data at rest. If you don't specify a KMS key, MSK creates one for you and uses it.
|
|
1408
1433
|
|
|
1409
1434
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html
|
|
1410
1435
|
:exampleMetadata: fixture=_generated
|
|
@@ -1428,7 +1453,10 @@ class CfnCluster(
|
|
|
1428
1453
|
|
|
1429
1454
|
@builtins.property
|
|
1430
1455
|
def data_volume_kms_key_id(self) -> builtins.str:
|
|
1431
|
-
'''
|
|
1456
|
+
'''The ARN of the Amazon KMS key for encrypting data at rest.
|
|
1457
|
+
|
|
1458
|
+
If you don't specify a KMS key, MSK creates one for you and uses it.
|
|
1459
|
+
|
|
1432
1460
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptionatrest.html#cfn-msk-cluster-encryptionatrest-datavolumekmskeyid
|
|
1433
1461
|
'''
|
|
1434
1462
|
result = self._values.get("data_volume_kms_key_id")
|
|
@@ -1545,8 +1573,9 @@ class CfnCluster(
|
|
|
1545
1573
|
encryption_at_rest: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.EncryptionAtRestProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1546
1574
|
encryption_in_transit: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.EncryptionInTransitProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1547
1575
|
) -> None:
|
|
1548
|
-
'''
|
|
1549
|
-
|
|
1576
|
+
'''Includes encryption-related information, such as the Amazon KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.
|
|
1577
|
+
|
|
1578
|
+
:param encryption_at_rest: The data-volume encryption details.
|
|
1550
1579
|
:param encryption_in_transit: The details for encryption in transit.
|
|
1551
1580
|
|
|
1552
1581
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptioninfo.html
|
|
@@ -1582,7 +1611,8 @@ class CfnCluster(
|
|
|
1582
1611
|
def encryption_at_rest(
|
|
1583
1612
|
self,
|
|
1584
1613
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.EncryptionAtRestProperty"]]:
|
|
1585
|
-
'''
|
|
1614
|
+
'''The data-volume encryption details.
|
|
1615
|
+
|
|
1586
1616
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-encryptioninfo.html#cfn-msk-cluster-encryptioninfo-encryptionatrest
|
|
1587
1617
|
'''
|
|
1588
1618
|
result = self._values.get("encryption_at_rest")
|
|
@@ -1622,9 +1652,10 @@ class CfnCluster(
|
|
|
1622
1652
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1623
1653
|
delivery_stream: typing.Optional[builtins.str] = None,
|
|
1624
1654
|
) -> None:
|
|
1625
|
-
'''
|
|
1626
|
-
|
|
1627
|
-
:param
|
|
1655
|
+
'''Firehose details for BrokerLogs.
|
|
1656
|
+
|
|
1657
|
+
:param enabled: Specifies whether broker logs get send to the specified Kinesis Data Firehose delivery stream.
|
|
1658
|
+
:param delivery_stream: The Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
1628
1659
|
|
|
1629
1660
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html
|
|
1630
1661
|
:exampleMetadata: fixture=_generated
|
|
@@ -1654,7 +1685,8 @@ class CfnCluster(
|
|
|
1654
1685
|
|
|
1655
1686
|
@builtins.property
|
|
1656
1687
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1657
|
-
'''
|
|
1688
|
+
'''Specifies whether broker logs get send to the specified Kinesis Data Firehose delivery stream.
|
|
1689
|
+
|
|
1658
1690
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-enabled
|
|
1659
1691
|
'''
|
|
1660
1692
|
result = self._values.get("enabled")
|
|
@@ -1663,7 +1695,8 @@ class CfnCluster(
|
|
|
1663
1695
|
|
|
1664
1696
|
@builtins.property
|
|
1665
1697
|
def delivery_stream(self) -> typing.Optional[builtins.str]:
|
|
1666
|
-
'''
|
|
1698
|
+
'''The Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
1699
|
+
|
|
1667
1700
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html#cfn-msk-cluster-firehose-deliverystream
|
|
1668
1701
|
'''
|
|
1669
1702
|
result = self._values.get("delivery_stream")
|
|
@@ -1691,8 +1724,9 @@ class CfnCluster(
|
|
|
1691
1724
|
*,
|
|
1692
1725
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1693
1726
|
) -> None:
|
|
1694
|
-
'''
|
|
1695
|
-
|
|
1727
|
+
'''Details for SASL/IAM client authentication.
|
|
1728
|
+
|
|
1729
|
+
:param enabled: SASL/IAM authentication is enabled or not.
|
|
1696
1730
|
|
|
1697
1731
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-iam.html
|
|
1698
1732
|
:exampleMetadata: fixture=_generated
|
|
@@ -1716,7 +1750,8 @@ class CfnCluster(
|
|
|
1716
1750
|
|
|
1717
1751
|
@builtins.property
|
|
1718
1752
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1719
|
-
'''
|
|
1753
|
+
'''SASL/IAM authentication is enabled or not.
|
|
1754
|
+
|
|
1720
1755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-iam.html#cfn-msk-cluster-iam-enabled
|
|
1721
1756
|
'''
|
|
1722
1757
|
result = self._values.get("enabled")
|
|
@@ -1745,8 +1780,9 @@ class CfnCluster(
|
|
|
1745
1780
|
*,
|
|
1746
1781
|
enabled_in_broker: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1747
1782
|
) -> None:
|
|
1748
|
-
'''
|
|
1749
|
-
|
|
1783
|
+
'''Indicates whether you want to enable or disable the JMX Exporter.
|
|
1784
|
+
|
|
1785
|
+
:param enabled_in_broker: Indicates whether you want to enable or disable the JMX Exporter.
|
|
1750
1786
|
|
|
1751
1787
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html
|
|
1752
1788
|
:exampleMetadata: fixture=_generated
|
|
@@ -1772,7 +1808,8 @@ class CfnCluster(
|
|
|
1772
1808
|
def enabled_in_broker(
|
|
1773
1809
|
self,
|
|
1774
1810
|
) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1775
|
-
'''
|
|
1811
|
+
'''Indicates whether you want to enable or disable the JMX Exporter.
|
|
1812
|
+
|
|
1776
1813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-jmxexporter.html#cfn-msk-cluster-jmxexporter-enabledinbroker
|
|
1777
1814
|
'''
|
|
1778
1815
|
result = self._values.get("enabled_in_broker")
|
|
@@ -1801,8 +1838,11 @@ class CfnCluster(
|
|
|
1801
1838
|
*,
|
|
1802
1839
|
broker_logs: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.BrokerLogsProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1803
1840
|
) -> None:
|
|
1804
|
-
'''
|
|
1805
|
-
|
|
1841
|
+
'''You can configure your MSK cluster to send broker logs to different destination types.
|
|
1842
|
+
|
|
1843
|
+
This is a container for the configuration details related to broker logs.
|
|
1844
|
+
|
|
1845
|
+
:param broker_logs: You can configure your MSK cluster to send broker logs to different destination types. This configuration specifies the details of these destinations.
|
|
1806
1846
|
|
|
1807
1847
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-logginginfo.html
|
|
1808
1848
|
:exampleMetadata: fixture=_generated
|
|
@@ -1848,7 +1888,10 @@ class CfnCluster(
|
|
|
1848
1888
|
def broker_logs(
|
|
1849
1889
|
self,
|
|
1850
1890
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCluster.BrokerLogsProperty"]:
|
|
1851
|
-
'''
|
|
1891
|
+
'''You can configure your MSK cluster to send broker logs to different destination types.
|
|
1892
|
+
|
|
1893
|
+
This configuration specifies the details of these destinations.
|
|
1894
|
+
|
|
1852
1895
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-logginginfo.html#cfn-msk-cluster-logginginfo-brokerlogs
|
|
1853
1896
|
'''
|
|
1854
1897
|
result = self._values.get("broker_logs")
|
|
@@ -1877,8 +1920,9 @@ class CfnCluster(
|
|
|
1877
1920
|
*,
|
|
1878
1921
|
enabled_in_broker: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
1879
1922
|
) -> None:
|
|
1880
|
-
'''
|
|
1881
|
-
|
|
1923
|
+
'''Indicates whether you want to enable or disable the Node Exporter.
|
|
1924
|
+
|
|
1925
|
+
:param enabled_in_broker: Indicates whether you want to enable or disable the Node Exporter.
|
|
1882
1926
|
|
|
1883
1927
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html
|
|
1884
1928
|
:exampleMetadata: fixture=_generated
|
|
@@ -1904,7 +1948,8 @@ class CfnCluster(
|
|
|
1904
1948
|
def enabled_in_broker(
|
|
1905
1949
|
self,
|
|
1906
1950
|
) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1907
|
-
'''
|
|
1951
|
+
'''Indicates whether you want to enable or disable the Node Exporter.
|
|
1952
|
+
|
|
1908
1953
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html#cfn-msk-cluster-nodeexporter-enabledinbroker
|
|
1909
1954
|
'''
|
|
1910
1955
|
result = self._values.get("enabled_in_broker")
|
|
@@ -1933,8 +1978,9 @@ class CfnCluster(
|
|
|
1933
1978
|
*,
|
|
1934
1979
|
prometheus: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.PrometheusProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1935
1980
|
) -> None:
|
|
1936
|
-
'''
|
|
1937
|
-
|
|
1981
|
+
'''JMX and Node monitoring for the MSK cluster.
|
|
1982
|
+
|
|
1983
|
+
:param prometheus: Prometheus exporter settings.
|
|
1938
1984
|
|
|
1939
1985
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-openmonitoring.html
|
|
1940
1986
|
:exampleMetadata: fixture=_generated
|
|
@@ -1967,7 +2013,8 @@ class CfnCluster(
|
|
|
1967
2013
|
def prometheus(
|
|
1968
2014
|
self,
|
|
1969
2015
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCluster.PrometheusProperty"]:
|
|
1970
|
-
'''
|
|
2016
|
+
'''Prometheus exporter settings.
|
|
2017
|
+
|
|
1971
2018
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-openmonitoring.html#cfn-msk-cluster-openmonitoring-prometheus
|
|
1972
2019
|
'''
|
|
1973
2020
|
result = self._values.get("prometheus")
|
|
@@ -1997,9 +2044,10 @@ class CfnCluster(
|
|
|
1997
2044
|
jmx_exporter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.JmxExporterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1998
2045
|
node_exporter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.NodeExporterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1999
2046
|
) -> None:
|
|
2000
|
-
'''
|
|
2001
|
-
|
|
2002
|
-
:param
|
|
2047
|
+
'''Prometheus settings for open monitoring.
|
|
2048
|
+
|
|
2049
|
+
:param jmx_exporter: Indicates whether you want to enable or disable the JMX Exporter.
|
|
2050
|
+
:param node_exporter: Indicates whether you want to enable or disable the Node Exporter.
|
|
2003
2051
|
|
|
2004
2052
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-prometheus.html
|
|
2005
2053
|
:exampleMetadata: fixture=_generated
|
|
@@ -2033,7 +2081,8 @@ class CfnCluster(
|
|
|
2033
2081
|
def jmx_exporter(
|
|
2034
2082
|
self,
|
|
2035
2083
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.JmxExporterProperty"]]:
|
|
2036
|
-
'''
|
|
2084
|
+
'''Indicates whether you want to enable or disable the JMX Exporter.
|
|
2085
|
+
|
|
2037
2086
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-prometheus.html#cfn-msk-cluster-prometheus-jmxexporter
|
|
2038
2087
|
'''
|
|
2039
2088
|
result = self._values.get("jmx_exporter")
|
|
@@ -2043,7 +2092,8 @@ class CfnCluster(
|
|
|
2043
2092
|
def node_exporter(
|
|
2044
2093
|
self,
|
|
2045
2094
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.NodeExporterProperty"]]:
|
|
2046
|
-
'''
|
|
2095
|
+
'''Indicates whether you want to enable or disable the Node Exporter.
|
|
2096
|
+
|
|
2047
2097
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-prometheus.html#cfn-msk-cluster-prometheus-nodeexporter
|
|
2048
2098
|
'''
|
|
2049
2099
|
result = self._values.get("node_exporter")
|
|
@@ -2072,9 +2122,10 @@ class CfnCluster(
|
|
|
2072
2122
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2073
2123
|
volume_throughput: typing.Optional[jsii.Number] = None,
|
|
2074
2124
|
) -> None:
|
|
2075
|
-
'''
|
|
2076
|
-
|
|
2077
|
-
:param
|
|
2125
|
+
'''Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.
|
|
2126
|
+
|
|
2127
|
+
:param enabled: Provisioned throughput is on or off.
|
|
2128
|
+
:param volume_throughput: Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
|
|
2078
2129
|
|
|
2079
2130
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-provisionedthroughput.html
|
|
2080
2131
|
:exampleMetadata: fixture=_generated
|
|
@@ -2104,7 +2155,8 @@ class CfnCluster(
|
|
|
2104
2155
|
def enabled(
|
|
2105
2156
|
self,
|
|
2106
2157
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2107
|
-
'''
|
|
2158
|
+
'''Provisioned throughput is on or off.
|
|
2159
|
+
|
|
2108
2160
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-provisionedthroughput.html#cfn-msk-cluster-provisionedthroughput-enabled
|
|
2109
2161
|
'''
|
|
2110
2162
|
result = self._values.get("enabled")
|
|
@@ -2112,7 +2164,8 @@ class CfnCluster(
|
|
|
2112
2164
|
|
|
2113
2165
|
@builtins.property
|
|
2114
2166
|
def volume_throughput(self) -> typing.Optional[jsii.Number]:
|
|
2115
|
-
'''
|
|
2167
|
+
'''Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
|
|
2168
|
+
|
|
2116
2169
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-provisionedthroughput.html#cfn-msk-cluster-provisionedthroughput-volumethroughput
|
|
2117
2170
|
'''
|
|
2118
2171
|
result = self._values.get("volume_throughput")
|
|
@@ -2136,8 +2189,9 @@ class CfnCluster(
|
|
|
2136
2189
|
)
|
|
2137
2190
|
class PublicAccessProperty:
|
|
2138
2191
|
def __init__(self, *, type: typing.Optional[builtins.str] = None) -> None:
|
|
2139
|
-
'''
|
|
2140
|
-
|
|
2192
|
+
'''Broker access controls.
|
|
2193
|
+
|
|
2194
|
+
:param type: DISABLED means that public access is turned off. SERVICE_PROVIDED_EIPS means that public access is turned on.
|
|
2141
2195
|
|
|
2142
2196
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-publicaccess.html
|
|
2143
2197
|
:exampleMetadata: fixture=_generated
|
|
@@ -2161,7 +2215,10 @@ class CfnCluster(
|
|
|
2161
2215
|
|
|
2162
2216
|
@builtins.property
|
|
2163
2217
|
def type(self) -> typing.Optional[builtins.str]:
|
|
2164
|
-
'''
|
|
2218
|
+
'''DISABLED means that public access is turned off.
|
|
2219
|
+
|
|
2220
|
+
SERVICE_PROVIDED_EIPS means that public access is turned on.
|
|
2221
|
+
|
|
2165
2222
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-publicaccess.html#cfn-msk-cluster-publicaccess-type
|
|
2166
2223
|
'''
|
|
2167
2224
|
result = self._values.get("type")
|
|
@@ -2191,10 +2248,11 @@ class CfnCluster(
|
|
|
2191
2248
|
bucket: typing.Optional[builtins.str] = None,
|
|
2192
2249
|
prefix: typing.Optional[builtins.str] = None,
|
|
2193
2250
|
) -> None:
|
|
2194
|
-
'''
|
|
2195
|
-
|
|
2196
|
-
:param
|
|
2197
|
-
:param
|
|
2251
|
+
'''The details of the Amazon S3 destination for broker logs.
|
|
2252
|
+
|
|
2253
|
+
:param enabled: Specifies whether broker logs get sent to the specified Amazon S3 destination.
|
|
2254
|
+
:param bucket: The name of the S3 bucket that is the destination for broker logs.
|
|
2255
|
+
:param prefix: The S3 prefix that is the destination for broker logs.
|
|
2198
2256
|
|
|
2199
2257
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html
|
|
2200
2258
|
:exampleMetadata: fixture=_generated
|
|
@@ -2228,7 +2286,8 @@ class CfnCluster(
|
|
|
2228
2286
|
|
|
2229
2287
|
@builtins.property
|
|
2230
2288
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2231
|
-
'''
|
|
2289
|
+
'''Specifies whether broker logs get sent to the specified Amazon S3 destination.
|
|
2290
|
+
|
|
2232
2291
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-enabled
|
|
2233
2292
|
'''
|
|
2234
2293
|
result = self._values.get("enabled")
|
|
@@ -2237,7 +2296,8 @@ class CfnCluster(
|
|
|
2237
2296
|
|
|
2238
2297
|
@builtins.property
|
|
2239
2298
|
def bucket(self) -> typing.Optional[builtins.str]:
|
|
2240
|
-
'''
|
|
2299
|
+
'''The name of the S3 bucket that is the destination for broker logs.
|
|
2300
|
+
|
|
2241
2301
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-bucket
|
|
2242
2302
|
'''
|
|
2243
2303
|
result = self._values.get("bucket")
|
|
@@ -2245,7 +2305,8 @@ class CfnCluster(
|
|
|
2245
2305
|
|
|
2246
2306
|
@builtins.property
|
|
2247
2307
|
def prefix(self) -> typing.Optional[builtins.str]:
|
|
2248
|
-
'''
|
|
2308
|
+
'''The S3 prefix that is the destination for broker logs.
|
|
2309
|
+
|
|
2249
2310
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html#cfn-msk-cluster-s3-prefix
|
|
2250
2311
|
'''
|
|
2251
2312
|
result = self._values.get("prefix")
|
|
@@ -2274,9 +2335,12 @@ class CfnCluster(
|
|
|
2274
2335
|
iam: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.IamProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2275
2336
|
scram: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ScramProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2276
2337
|
) -> None:
|
|
2277
|
-
'''
|
|
2278
|
-
|
|
2279
|
-
|
|
2338
|
+
'''Details for client authentication using SASL.
|
|
2339
|
+
|
|
2340
|
+
To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
2341
|
+
|
|
2342
|
+
:param iam: Details for ClientAuthentication using IAM.
|
|
2343
|
+
:param scram: Details for SASL/SCRAM client authentication.
|
|
2280
2344
|
|
|
2281
2345
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-sasl.html
|
|
2282
2346
|
:exampleMetadata: fixture=_generated
|
|
@@ -2310,7 +2374,8 @@ class CfnCluster(
|
|
|
2310
2374
|
def iam(
|
|
2311
2375
|
self,
|
|
2312
2376
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.IamProperty"]]:
|
|
2313
|
-
'''
|
|
2377
|
+
'''Details for ClientAuthentication using IAM.
|
|
2378
|
+
|
|
2314
2379
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-sasl.html#cfn-msk-cluster-sasl-iam
|
|
2315
2380
|
'''
|
|
2316
2381
|
result = self._values.get("iam")
|
|
@@ -2320,7 +2385,8 @@ class CfnCluster(
|
|
|
2320
2385
|
def scram(
|
|
2321
2386
|
self,
|
|
2322
2387
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ScramProperty"]]:
|
|
2323
|
-
'''
|
|
2388
|
+
'''Details for SASL/SCRAM client authentication.
|
|
2389
|
+
|
|
2324
2390
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-sasl.html#cfn-msk-cluster-sasl-scram
|
|
2325
2391
|
'''
|
|
2326
2392
|
result = self._values.get("scram")
|
|
@@ -2348,8 +2414,9 @@ class CfnCluster(
|
|
|
2348
2414
|
*,
|
|
2349
2415
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2350
2416
|
) -> None:
|
|
2351
|
-
'''
|
|
2352
|
-
|
|
2417
|
+
'''Details for SASL/SCRAM client authentication.
|
|
2418
|
+
|
|
2419
|
+
:param enabled: SASL/SCRAM authentication is enabled or not.
|
|
2353
2420
|
|
|
2354
2421
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-scram.html
|
|
2355
2422
|
:exampleMetadata: fixture=_generated
|
|
@@ -2373,7 +2440,8 @@ class CfnCluster(
|
|
|
2373
2440
|
|
|
2374
2441
|
@builtins.property
|
|
2375
2442
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2376
|
-
'''
|
|
2443
|
+
'''SASL/SCRAM authentication is enabled or not.
|
|
2444
|
+
|
|
2377
2445
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-scram.html#cfn-msk-cluster-scram-enabled
|
|
2378
2446
|
'''
|
|
2379
2447
|
result = self._values.get("enabled")
|
|
@@ -2402,8 +2470,9 @@ class CfnCluster(
|
|
|
2402
2470
|
*,
|
|
2403
2471
|
ebs_storage_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.EBSStorageInfoProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2404
2472
|
) -> None:
|
|
2405
|
-
'''
|
|
2406
|
-
|
|
2473
|
+
'''Contains information about storage volumes attached to Amazon MSK broker nodes.
|
|
2474
|
+
|
|
2475
|
+
:param ebs_storage_info: EBS volume information.
|
|
2407
2476
|
|
|
2408
2477
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-storageinfo.html
|
|
2409
2478
|
:exampleMetadata: fixture=_generated
|
|
@@ -2435,7 +2504,8 @@ class CfnCluster(
|
|
|
2435
2504
|
def ebs_storage_info(
|
|
2436
2505
|
self,
|
|
2437
2506
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.EBSStorageInfoProperty"]]:
|
|
2438
|
-
'''
|
|
2507
|
+
'''EBS volume information.
|
|
2508
|
+
|
|
2439
2509
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-storageinfo.html#cfn-msk-cluster-storageinfo-ebsstorageinfo
|
|
2440
2510
|
'''
|
|
2441
2511
|
result = self._values.get("ebs_storage_info")
|
|
@@ -2467,9 +2537,10 @@ class CfnCluster(
|
|
|
2467
2537
|
certificate_authority_arn_list: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2468
2538
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2469
2539
|
) -> None:
|
|
2470
|
-
'''
|
|
2471
|
-
|
|
2472
|
-
:param
|
|
2540
|
+
'''Details for client authentication using TLS.
|
|
2541
|
+
|
|
2542
|
+
:param certificate_authority_arn_list: List of AWS Private CA ARNs.
|
|
2543
|
+
:param enabled: TLS authentication is enabled or not.
|
|
2473
2544
|
|
|
2474
2545
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html
|
|
2475
2546
|
:exampleMetadata: fixture=_generated
|
|
@@ -2499,7 +2570,8 @@ class CfnCluster(
|
|
|
2499
2570
|
def certificate_authority_arn_list(
|
|
2500
2571
|
self,
|
|
2501
2572
|
) -> typing.Optional[typing.List[builtins.str]]:
|
|
2502
|
-
'''
|
|
2573
|
+
'''List of AWS Private CA ARNs.
|
|
2574
|
+
|
|
2503
2575
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html#cfn-msk-cluster-tls-certificateauthorityarnlist
|
|
2504
2576
|
'''
|
|
2505
2577
|
result = self._values.get("certificate_authority_arn_list")
|
|
@@ -2509,7 +2581,8 @@ class CfnCluster(
|
|
|
2509
2581
|
def enabled(
|
|
2510
2582
|
self,
|
|
2511
2583
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2512
|
-
'''
|
|
2584
|
+
'''TLS authentication is enabled or not.
|
|
2585
|
+
|
|
2513
2586
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html#cfn-msk-cluster-tls-enabled
|
|
2514
2587
|
'''
|
|
2515
2588
|
result = self._values.get("enabled")
|
|
@@ -2537,8 +2610,9 @@ class CfnCluster(
|
|
|
2537
2610
|
*,
|
|
2538
2611
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2539
2612
|
) -> None:
|
|
2540
|
-
'''
|
|
2541
|
-
|
|
2613
|
+
'''Details for allowing no client authentication.
|
|
2614
|
+
|
|
2615
|
+
:param enabled: Unauthenticated is enabled or not.
|
|
2542
2616
|
|
|
2543
2617
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-unauthenticated.html
|
|
2544
2618
|
:exampleMetadata: fixture=_generated
|
|
@@ -2562,7 +2636,8 @@ class CfnCluster(
|
|
|
2562
2636
|
|
|
2563
2637
|
@builtins.property
|
|
2564
2638
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2565
|
-
'''
|
|
2639
|
+
'''Unauthenticated is enabled or not.
|
|
2640
|
+
|
|
2566
2641
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-unauthenticated.html#cfn-msk-cluster-unauthenticated-enabled
|
|
2567
2642
|
'''
|
|
2568
2643
|
result = self._values.get("enabled")
|
|
@@ -2592,9 +2667,10 @@ class CfnCluster(
|
|
|
2592
2667
|
sasl: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivitySaslProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2593
2668
|
tls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivityTlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2594
2669
|
) -> None:
|
|
2595
|
-
'''
|
|
2596
|
-
|
|
2597
|
-
:param
|
|
2670
|
+
'''Includes all client authentication information for VpcConnectivity.
|
|
2671
|
+
|
|
2672
|
+
:param sasl: Details for VpcConnectivity ClientAuthentication using SASL.
|
|
2673
|
+
:param tls: Details for VpcConnectivity ClientAuthentication using TLS.
|
|
2598
2674
|
|
|
2599
2675
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityclientauthentication.html
|
|
2600
2676
|
:exampleMetadata: fixture=_generated
|
|
@@ -2633,7 +2709,8 @@ class CfnCluster(
|
|
|
2633
2709
|
def sasl(
|
|
2634
2710
|
self,
|
|
2635
2711
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivitySaslProperty"]]:
|
|
2636
|
-
'''
|
|
2712
|
+
'''Details for VpcConnectivity ClientAuthentication using SASL.
|
|
2713
|
+
|
|
2637
2714
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityclientauthentication.html#cfn-msk-cluster-vpcconnectivityclientauthentication-sasl
|
|
2638
2715
|
'''
|
|
2639
2716
|
result = self._values.get("sasl")
|
|
@@ -2643,7 +2720,8 @@ class CfnCluster(
|
|
|
2643
2720
|
def tls(
|
|
2644
2721
|
self,
|
|
2645
2722
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivityTlsProperty"]]:
|
|
2646
|
-
'''
|
|
2723
|
+
'''Details for VpcConnectivity ClientAuthentication using TLS.
|
|
2724
|
+
|
|
2647
2725
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityclientauthentication.html#cfn-msk-cluster-vpcconnectivityclientauthentication-tls
|
|
2648
2726
|
'''
|
|
2649
2727
|
result = self._values.get("tls")
|
|
@@ -2671,8 +2749,9 @@ class CfnCluster(
|
|
|
2671
2749
|
*,
|
|
2672
2750
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2673
2751
|
) -> None:
|
|
2674
|
-
'''
|
|
2675
|
-
|
|
2752
|
+
'''Details for SASL/IAM client authentication for VpcConnectivity.
|
|
2753
|
+
|
|
2754
|
+
:param enabled: SASL/IAM authentication is enabled or not.
|
|
2676
2755
|
|
|
2677
2756
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityiam.html
|
|
2678
2757
|
:exampleMetadata: fixture=_generated
|
|
@@ -2696,7 +2775,8 @@ class CfnCluster(
|
|
|
2696
2775
|
|
|
2697
2776
|
@builtins.property
|
|
2698
2777
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2699
|
-
'''
|
|
2778
|
+
'''SASL/IAM authentication is enabled or not.
|
|
2779
|
+
|
|
2700
2780
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityiam.html#cfn-msk-cluster-vpcconnectivityiam-enabled
|
|
2701
2781
|
'''
|
|
2702
2782
|
result = self._values.get("enabled")
|
|
@@ -2725,8 +2805,9 @@ class CfnCluster(
|
|
|
2725
2805
|
*,
|
|
2726
2806
|
client_authentication: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivityClientAuthenticationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2727
2807
|
) -> None:
|
|
2728
|
-
'''
|
|
2729
|
-
|
|
2808
|
+
'''VPC connection control settings for brokers.
|
|
2809
|
+
|
|
2810
|
+
:param client_authentication: VPC connection control settings for brokers.
|
|
2730
2811
|
|
|
2731
2812
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.html
|
|
2732
2813
|
:exampleMetadata: fixture=_generated
|
|
@@ -2764,7 +2845,8 @@ class CfnCluster(
|
|
|
2764
2845
|
def client_authentication(
|
|
2765
2846
|
self,
|
|
2766
2847
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivityClientAuthenticationProperty"]]:
|
|
2767
|
-
'''
|
|
2848
|
+
'''VPC connection control settings for brokers.
|
|
2849
|
+
|
|
2768
2850
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.html#cfn-msk-cluster-vpcconnectivity-clientauthentication
|
|
2769
2851
|
'''
|
|
2770
2852
|
result = self._values.get("client_authentication")
|
|
@@ -2793,9 +2875,10 @@ class CfnCluster(
|
|
|
2793
2875
|
iam: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivityIamProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2794
2876
|
scram: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConnectivityScramProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2795
2877
|
) -> None:
|
|
2796
|
-
'''
|
|
2797
|
-
|
|
2798
|
-
:param
|
|
2878
|
+
'''Details for client authentication using SASL for VpcConnectivity.
|
|
2879
|
+
|
|
2880
|
+
:param iam: Details for ClientAuthentication using IAM for VpcConnectivity.
|
|
2881
|
+
:param scram: Details for SASL/SCRAM client authentication for VpcConnectivity.
|
|
2799
2882
|
|
|
2800
2883
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivitysasl.html
|
|
2801
2884
|
:exampleMetadata: fixture=_generated
|
|
@@ -2829,7 +2912,8 @@ class CfnCluster(
|
|
|
2829
2912
|
def iam(
|
|
2830
2913
|
self,
|
|
2831
2914
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivityIamProperty"]]:
|
|
2832
|
-
'''
|
|
2915
|
+
'''Details for ClientAuthentication using IAM for VpcConnectivity.
|
|
2916
|
+
|
|
2833
2917
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivitysasl.html#cfn-msk-cluster-vpcconnectivitysasl-iam
|
|
2834
2918
|
'''
|
|
2835
2919
|
result = self._values.get("iam")
|
|
@@ -2839,7 +2923,8 @@ class CfnCluster(
|
|
|
2839
2923
|
def scram(
|
|
2840
2924
|
self,
|
|
2841
2925
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConnectivityScramProperty"]]:
|
|
2842
|
-
'''
|
|
2926
|
+
'''Details for SASL/SCRAM client authentication for VpcConnectivity.
|
|
2927
|
+
|
|
2843
2928
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivitysasl.html#cfn-msk-cluster-vpcconnectivitysasl-scram
|
|
2844
2929
|
'''
|
|
2845
2930
|
result = self._values.get("scram")
|
|
@@ -2867,8 +2952,9 @@ class CfnCluster(
|
|
|
2867
2952
|
*,
|
|
2868
2953
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2869
2954
|
) -> None:
|
|
2870
|
-
'''
|
|
2871
|
-
|
|
2955
|
+
'''Details for SASL/SCRAM client authentication for VpcConnectivity.
|
|
2956
|
+
|
|
2957
|
+
:param enabled: SASL/SCRAM authentication is enabled or not.
|
|
2872
2958
|
|
|
2873
2959
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityscram.html
|
|
2874
2960
|
:exampleMetadata: fixture=_generated
|
|
@@ -2892,7 +2978,8 @@ class CfnCluster(
|
|
|
2892
2978
|
|
|
2893
2979
|
@builtins.property
|
|
2894
2980
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2895
|
-
'''
|
|
2981
|
+
'''SASL/SCRAM authentication is enabled or not.
|
|
2982
|
+
|
|
2896
2983
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivityscram.html#cfn-msk-cluster-vpcconnectivityscram-enabled
|
|
2897
2984
|
'''
|
|
2898
2985
|
result = self._values.get("enabled")
|
|
@@ -2921,8 +3008,9 @@ class CfnCluster(
|
|
|
2921
3008
|
*,
|
|
2922
3009
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2923
3010
|
) -> None:
|
|
2924
|
-
'''
|
|
2925
|
-
|
|
3011
|
+
'''Details for client authentication using TLS for VpcConnectivity.
|
|
3012
|
+
|
|
3013
|
+
:param enabled: TLS authentication is enabled or not.
|
|
2926
3014
|
|
|
2927
3015
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivitytls.html
|
|
2928
3016
|
:exampleMetadata: fixture=_generated
|
|
@@ -2946,7 +3034,8 @@ class CfnCluster(
|
|
|
2946
3034
|
|
|
2947
3035
|
@builtins.property
|
|
2948
3036
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2949
|
-
'''
|
|
3037
|
+
'''TLS authentication is enabled or not.
|
|
3038
|
+
|
|
2950
3039
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivitytls.html#cfn-msk-cluster-vpcconnectivitytls-enabled
|
|
2951
3040
|
'''
|
|
2952
3041
|
result = self._values.get("enabled")
|
|
@@ -5353,8 +5442,9 @@ class CfnServerlessCluster(
|
|
|
5353
5442
|
*,
|
|
5354
5443
|
sasl: typing.Union[_IResolvable_da3f097b, typing.Union["CfnServerlessCluster.SaslProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
5355
5444
|
) -> None:
|
|
5356
|
-
'''
|
|
5357
|
-
|
|
5445
|
+
'''Includes all client authentication information.
|
|
5446
|
+
|
|
5447
|
+
:param sasl: Details for client authentication using SASL. To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
5358
5448
|
|
|
5359
5449
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-clientauthentication.html
|
|
5360
5450
|
:exampleMetadata: fixture=_generated
|
|
@@ -5384,7 +5474,10 @@ class CfnServerlessCluster(
|
|
|
5384
5474
|
def sasl(
|
|
5385
5475
|
self,
|
|
5386
5476
|
) -> typing.Union[_IResolvable_da3f097b, "CfnServerlessCluster.SaslProperty"]:
|
|
5387
|
-
'''
|
|
5477
|
+
'''Details for client authentication using SASL.
|
|
5478
|
+
|
|
5479
|
+
To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
5480
|
+
|
|
5388
5481
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-clientauthentication.html#cfn-msk-serverlesscluster-clientauthentication-sasl
|
|
5389
5482
|
'''
|
|
5390
5483
|
result = self._values.get("sasl")
|
|
@@ -5413,8 +5506,9 @@ class CfnServerlessCluster(
|
|
|
5413
5506
|
*,
|
|
5414
5507
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
5415
5508
|
) -> None:
|
|
5416
|
-
'''
|
|
5417
|
-
|
|
5509
|
+
'''Details for SASL/IAM client authentication.
|
|
5510
|
+
|
|
5511
|
+
:param enabled: SASL/IAM authentication is enabled or not.
|
|
5418
5512
|
|
|
5419
5513
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-iam.html
|
|
5420
5514
|
:exampleMetadata: fixture=_generated
|
|
@@ -5438,7 +5532,8 @@ class CfnServerlessCluster(
|
|
|
5438
5532
|
|
|
5439
5533
|
@builtins.property
|
|
5440
5534
|
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
5441
|
-
'''
|
|
5535
|
+
'''SASL/IAM authentication is enabled or not.
|
|
5536
|
+
|
|
5442
5537
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-iam.html#cfn-msk-serverlesscluster-iam-enabled
|
|
5443
5538
|
'''
|
|
5444
5539
|
result = self._values.get("enabled")
|
|
@@ -5467,8 +5562,11 @@ class CfnServerlessCluster(
|
|
|
5467
5562
|
*,
|
|
5468
5563
|
iam: typing.Union[_IResolvable_da3f097b, typing.Union["CfnServerlessCluster.IamProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
5469
5564
|
) -> None:
|
|
5470
|
-
'''
|
|
5471
|
-
|
|
5565
|
+
'''Details for client authentication using SASL.
|
|
5566
|
+
|
|
5567
|
+
To turn on SASL, you must also turn on ``EncryptionInTransit`` by setting ``inCluster`` to true. You must set ``clientBroker`` to either ``TLS`` or ``TLS_PLAINTEXT`` . If you choose ``TLS_PLAINTEXT`` , then you must also set ``unauthenticated`` to true.
|
|
5568
|
+
|
|
5569
|
+
:param iam: Details for ClientAuthentication using IAM.
|
|
5472
5570
|
|
|
5473
5571
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-sasl.html
|
|
5474
5572
|
:exampleMetadata: fixture=_generated
|
|
@@ -5496,7 +5594,8 @@ class CfnServerlessCluster(
|
|
|
5496
5594
|
def iam(
|
|
5497
5595
|
self,
|
|
5498
5596
|
) -> typing.Union[_IResolvable_da3f097b, "CfnServerlessCluster.IamProperty"]:
|
|
5499
|
-
'''
|
|
5597
|
+
'''Details for ClientAuthentication using IAM.
|
|
5598
|
+
|
|
5500
5599
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-serverlesscluster-sasl.html#cfn-msk-serverlesscluster-sasl-iam
|
|
5501
5600
|
'''
|
|
5502
5601
|
result = self._values.get("iam")
|