aws-cdk-lib 2.105.0__py3-none-any.whl → 2.106.1__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/__init__.py +59 -69
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.105.0.jsii.tgz → aws-cdk-lib@2.106.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -12
- aws_cdk/aws_appconfig/__init__.py +25 -11
- aws_cdk/aws_appintegrations/__init__.py +60 -60
- aws_cdk/aws_apprunner/__init__.py +22 -3
- aws_cdk/aws_appstream/__init__.py +12 -5
- aws_cdk/aws_appsync/__init__.py +4 -4
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_cloudformation/__init__.py +59 -69
- aws_cdk/aws_codepipeline/__init__.py +3 -0
- aws_cdk/aws_cognito/__init__.py +23 -31
- aws_cdk/aws_config/__init__.py +46 -41
- aws_cdk/aws_datapipeline/__init__.py +54 -54
- aws_cdk/aws_directoryservice/__init__.py +45 -45
- aws_cdk/aws_ec2/__init__.py +163 -21
- aws_cdk/aws_ecs/__init__.py +52 -68
- aws_cdk/aws_eks/__init__.py +55 -9
- aws_cdk/aws_entityresolution/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +0 -8
- aws_cdk/aws_eventschemas/__init__.py +12 -12
- aws_cdk/aws_gamelift/__init__.py +4 -6
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +10 -11
- aws_cdk/aws_lakeformation/__init__.py +8 -5
- aws_cdk/aws_lambda/__init__.py +30 -0
- aws_cdk/aws_msk/__init__.py +3 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +94 -94
- aws_cdk/aws_quicksight/__init__.py +189 -264
- aws_cdk/aws_rds/__init__.py +267 -36
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +3 -7
- aws_cdk/aws_s3/__init__.py +191 -2
- aws_cdk/aws_sam/__init__.py +42 -47
- aws_cdk/aws_servicecatalogappregistry/__init__.py +2 -4
- aws_cdk/aws_ssm/__init__.py +4 -4
- aws_cdk/aws_stepfunctions_tasks/__init__.py +9 -2
- aws_cdk/aws_vpclattice/__init__.py +2 -6
- aws_cdk/aws_wafv2/__init__.py +21 -8
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/top_level.txt +0 -0
|
@@ -537,7 +537,7 @@ class CfnMonitor(
|
|
|
537
537
|
) -> None:
|
|
538
538
|
'''Publish internet measurements to an Amazon S3 bucket in addition to CloudWatch Logs.
|
|
539
539
|
|
|
540
|
-
:param s3_config: The configuration
|
|
540
|
+
:param s3_config: The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
541
541
|
|
|
542
542
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html
|
|
543
543
|
:exampleMetadata: fixture=_generated
|
|
@@ -567,9 +567,7 @@ class CfnMonitor(
|
|
|
567
567
|
def s3_config(
|
|
568
568
|
self,
|
|
569
569
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMonitor.S3ConfigProperty"]]:
|
|
570
|
-
'''The configuration
|
|
571
|
-
|
|
572
|
-
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` or ``DISABLED`` , depending on whether you choose to deliver internet measurements to S3 logs.
|
|
570
|
+
'''The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
573
571
|
|
|
574
572
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html#cfn-internetmonitor-monitor-internetmeasurementslogdelivery-s3config
|
|
575
573
|
'''
|
|
@@ -705,11 +703,13 @@ class CfnMonitor(
|
|
|
705
703
|
) -> None:
|
|
706
704
|
'''The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
707
705
|
|
|
708
|
-
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED``
|
|
706
|
+
The configuration includes the bucket name and (optionally) bucket prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` if you choose to deliver internet measurements to S3 logs, and ``DISABLED`` otherwise.
|
|
709
707
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
:param
|
|
708
|
+
The measurements are also published to Amazon CloudWatch Logs.
|
|
709
|
+
|
|
710
|
+
:param bucket_name: The Amazon S3 bucket name for internet measurements publishing.
|
|
711
|
+
:param bucket_prefix: An optional Amazon S3 bucket prefix for internet measurements publishing.
|
|
712
|
+
:param log_delivery_status: The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket. The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
713
713
|
|
|
714
714
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html
|
|
715
715
|
:exampleMetadata: fixture=_generated
|
|
@@ -741,7 +741,7 @@ class CfnMonitor(
|
|
|
741
741
|
|
|
742
742
|
@builtins.property
|
|
743
743
|
def bucket_name(self) -> typing.Optional[builtins.str]:
|
|
744
|
-
'''The Amazon S3 bucket name.
|
|
744
|
+
'''The Amazon S3 bucket name for internet measurements publishing.
|
|
745
745
|
|
|
746
746
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketname
|
|
747
747
|
'''
|
|
@@ -750,7 +750,7 @@ class CfnMonitor(
|
|
|
750
750
|
|
|
751
751
|
@builtins.property
|
|
752
752
|
def bucket_prefix(self) -> typing.Optional[builtins.str]:
|
|
753
|
-
'''
|
|
753
|
+
'''An optional Amazon S3 bucket prefix for internet measurements publishing.
|
|
754
754
|
|
|
755
755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketprefix
|
|
756
756
|
'''
|
|
@@ -761,6 +761,8 @@ class CfnMonitor(
|
|
|
761
761
|
def log_delivery_status(self) -> typing.Optional[builtins.str]:
|
|
762
762
|
'''The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
|
|
763
763
|
|
|
764
|
+
The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
765
|
+
|
|
764
766
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-logdeliverystatus
|
|
765
767
|
'''
|
|
766
768
|
result = self._values.get("log_delivery_status")
|
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -378,9 +378,9 @@ class CfnAccountAuditConfiguration(
|
|
|
378
378
|
:param device_certificate_expiring_check: Checks if a device certificate is expiring. This check applies to device certificates expiring within 30 days or that have expired.
|
|
379
379
|
:param device_certificate_key_quality_check: Checks the quality of the device certificate key. The quality checks if the key is in a valid format, not expired, signed by a registered certificate authority, and if the key meets a minimum required size.
|
|
380
380
|
:param device_certificate_shared_check: Checks if multiple concurrent connections use the same X.509 certificate to authenticate with AWS IoT .
|
|
381
|
-
:param intermediate_ca_revoked_for_active_device_certificates_check:
|
|
381
|
+
:param intermediate_ca_revoked_for_active_device_certificates_check: Checks if device certificates are still active despite being revoked by an intermediate CA.
|
|
382
382
|
:param iot_policy_overly_permissive_check: Checks the permissiveness of a policy attached to an authenticated Amazon Cognito identity pool role.
|
|
383
|
-
:param io_t_policy_potential_mis_configuration_check:
|
|
383
|
+
:param io_t_policy_potential_mis_configuration_check: Checks if an AWS IoT policy is potentially misconfigured. Misconfigured policies, including overly permissive policies, can cause security incidents like allowing devices access to unintended resources. This check is a warning for you to make sure that only intended actions are allowed before updating the policy.
|
|
384
384
|
:param iot_role_alias_allows_access_to_unused_services_check: Checks if a role alias has access to services that haven't been used for the AWS IoT device in the last year.
|
|
385
385
|
:param iot_role_alias_overly_permissive_check: Checks if the temporary credentials provided by AWS IoT role aliases are overly permissive.
|
|
386
386
|
:param logging_disabled_check: Checks if AWS IoT logs are disabled.
|
|
@@ -591,7 +591,7 @@ class CfnAccountAuditConfiguration(
|
|
|
591
591
|
def intermediate_ca_revoked_for_active_device_certificates_check(
|
|
592
592
|
self,
|
|
593
593
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAccountAuditConfiguration.AuditCheckConfigurationProperty"]]:
|
|
594
|
-
'''
|
|
594
|
+
'''Checks if device certificates are still active despite being revoked by an intermediate CA.
|
|
595
595
|
|
|
596
596
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditcheckconfigurations.html#cfn-iot-accountauditconfiguration-auditcheckconfigurations-intermediatecarevokedforactivedevicecertificatescheck
|
|
597
597
|
'''
|
|
@@ -613,7 +613,9 @@ class CfnAccountAuditConfiguration(
|
|
|
613
613
|
def io_t_policy_potential_mis_configuration_check(
|
|
614
614
|
self,
|
|
615
615
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAccountAuditConfiguration.AuditCheckConfigurationProperty"]]:
|
|
616
|
-
'''
|
|
616
|
+
'''Checks if an AWS IoT policy is potentially misconfigured.
|
|
617
|
+
|
|
618
|
+
Misconfigured policies, including overly permissive policies, can cause security incidents like allowing devices access to unintended resources. This check is a warning for you to make sure that only intended actions are allowed before updating the policy.
|
|
617
619
|
|
|
618
620
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditcheckconfigurations.html#cfn-iot-accountauditconfiguration-auditcheckconfigurations-iotpolicypotentialmisconfigurationcheck
|
|
619
621
|
'''
|
|
@@ -4628,7 +4630,7 @@ class CfnJobTemplate(
|
|
|
4628
4630
|
:param description: A description of the job template.
|
|
4629
4631
|
:param job_template_id: A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
|
|
4630
4632
|
:param abort_config: The criteria that determine when and how a job abort takes place.
|
|
4631
|
-
:param destination_package_versions: The package version Amazon Resource Names (ARNs) that are installed on the device’s reserved named shadow ( ``$package`` ) when the job successfully completes. *Note:* Up to 25 package version ARNS are allowed.
|
|
4633
|
+
:param destination_package_versions: The package version Amazon Resource Names (ARNs) that are installed on the device’s reserved named shadow ( ``$package`` ) when the job successfully completes. *Note:* Up to 25 package version ARNS are allowed.
|
|
4632
4634
|
:param document: The job document. Required if you don't specify a value for ``documentSource`` .
|
|
4633
4635
|
:param document_source: An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for ``document`` . For example, ``--document-source https://s3. *region-code* .amazonaws.com/example-firmware/device-firmware.1.0`` For more information, see `Methods for accessing a bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html>`_ .
|
|
4634
4636
|
:param job_arn: The ARN of the job to use as the basis for the job template.
|
|
@@ -5709,7 +5711,7 @@ class CfnJobTemplateProps:
|
|
|
5709
5711
|
:param description: A description of the job template.
|
|
5710
5712
|
:param job_template_id: A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
|
|
5711
5713
|
:param abort_config: The criteria that determine when and how a job abort takes place.
|
|
5712
|
-
:param destination_package_versions: The package version Amazon Resource Names (ARNs) that are installed on the device’s reserved named shadow ( ``$package`` ) when the job successfully completes. *Note:* Up to 25 package version ARNS are allowed.
|
|
5714
|
+
:param destination_package_versions: The package version Amazon Resource Names (ARNs) that are installed on the device’s reserved named shadow ( ``$package`` ) when the job successfully completes. *Note:* Up to 25 package version ARNS are allowed.
|
|
5713
5715
|
:param document: The job document. Required if you don't specify a value for ``documentSource`` .
|
|
5714
5716
|
:param document_source: An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for ``document`` . For example, ``--document-source https://s3. *region-code* .amazonaws.com/example-firmware/device-firmware.1.0`` For more information, see `Methods for accessing a bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html>`_ .
|
|
5715
5717
|
:param job_arn: The ARN of the job to use as the basis for the job template.
|
|
@@ -5843,9 +5845,6 @@ class CfnJobTemplateProps:
|
|
|
5843
5845
|
'''The package version Amazon Resource Names (ARNs) that are installed on the device’s reserved named shadow ( ``$package`` ) when the job successfully completes.
|
|
5844
5846
|
|
|
5845
5847
|
*Note:* Up to 25 package version ARNS are allowed.
|
|
5846
|
-
.. epigraph::
|
|
5847
|
-
|
|
5848
|
-
The CloudFormation ``DestinationPackageVersions`` parameter is available in the Beijing (cn-north-1) Region and other Regions where Service Package Catalog has been deployed except for the the Ningxia (cn-northest-1) Region. We will launch to Ningxia region as quickly as possible.
|
|
5849
5848
|
|
|
5850
5849
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-jobtemplate.html#cfn-iot-jobtemplate-destinationpackageversions
|
|
5851
5850
|
'''
|
|
@@ -10211,7 +10210,7 @@ class CfnSoftwarePackage(
|
|
|
10211
10210
|
):
|
|
10212
10211
|
'''Use the ``AWS::IoT::SoftwarePackage`` resource to create a software package.
|
|
10213
10212
|
|
|
10214
|
-
For information about working with software packages, see `AWS IoT Device Management Software Package Catalog <https://docs.aws.amazon.com/iot/latest/developerguide/software-package-catalog>`_ and `Creating a software package and package version <https://docs.aws.amazon.com/iot/latest/developerguide/creating-
|
|
10213
|
+
For information about working with software packages, see `AWS IoT Device Management Software Package Catalog <https://docs.aws.amazon.com/iot/latest/developerguide/software-package-catalog.html>`_ and `Creating a software package and package version <https://docs.aws.amazon.com/iot/latest/developerguide/creating-package-and-version.html>`_ in the *AWS IoT Developer Guide* . See also, `CreatePackage <https://docs.aws.amazon.com/iot/latest/apireference/API_CreatePackage.html>`_ in the *API Guide* .
|
|
10215
10214
|
|
|
10216
10215
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html
|
|
10217
10216
|
:cloudformationResource: AWS::IoT::SoftwarePackage
|
|
@@ -10446,7 +10445,7 @@ class CfnSoftwarePackageVersion(
|
|
|
10446
10445
|
):
|
|
10447
10446
|
'''Use the ``AWS::IoT::SoftwarePackageVersion`` resource to create a software package version.
|
|
10448
10447
|
|
|
10449
|
-
For information about working with software package versions, see `AWS IoT Device Management Software Package Catalog <https://docs.aws.amazon.com/iot/latest/developerguide/software-package-catalog>`_ and `Creating a software package and package version <https://docs.aws.amazon.com/iot/latest/developerguide/creating-
|
|
10448
|
+
For information about working with software package versions, see `AWS IoT Device Management Software Package Catalog <https://docs.aws.amazon.com/iot/latest/developerguide/software-package-catalog.html>`_ and `Creating a software package and package version <https://docs.aws.amazon.com/iot/latest/developerguide/creating-package-and-version.html>`_ in the *AWS IoT Developer Guide* . See also, `CreatePackageVersion <https://docs.aws.amazon.com/iot/latest/apireference/API_CreatePackageVersion.html>`_ in the *API Guide* .
|
|
10450
10449
|
.. epigraph::
|
|
10451
10450
|
|
|
10452
10451
|
The associated software package must exist before the package version is created. If you create a software package and package version in the same CloudFormation template, set the software package as a `dependency <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html>`_ of the package version. If they are created out of sequence, you will receive an error.
|
|
@@ -1400,7 +1400,8 @@ class CfnPermissions(
|
|
|
1400
1400
|
@builtins.property
|
|
1401
1401
|
@jsii.member(jsii_name="attrId")
|
|
1402
1402
|
def attr_id(self) -> builtins.str:
|
|
1403
|
-
'''
|
|
1403
|
+
'''A unique identifier for the batch permissions request entry.
|
|
1404
|
+
|
|
1404
1405
|
:cloudformationAttribute: Id
|
|
1405
1406
|
'''
|
|
1406
1407
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -1993,8 +1994,7 @@ class CfnPermissions(
|
|
|
1993
1994
|
)
|
|
1994
1995
|
class TableWildcardProperty:
|
|
1995
1996
|
def __init__(self) -> None:
|
|
1996
|
-
'''
|
|
1997
|
-
|
|
1997
|
+
'''
|
|
1998
1998
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-permissions-tablewildcard.html
|
|
1999
1999
|
:exampleMetadata: fixture=_generated
|
|
2000
2000
|
|
|
@@ -3422,7 +3422,7 @@ class CfnPrincipalPermissions(
|
|
|
3422
3422
|
|
|
3423
3423
|
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
|
|
3424
3424
|
|
|
3425
|
-
:param catalog_id:
|
|
3425
|
+
:param catalog_id: The identifier for the Data Catalog. By default, it is the account ID of the caller.
|
|
3426
3426
|
:param database_name: The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
|
|
3427
3427
|
:param name: The name of the table.
|
|
3428
3428
|
:param table_wildcard: A wildcard object representing every table under a database. At least one of ``TableResource$Name`` or ``TableResource$TableWildcard`` is required.
|
|
@@ -3464,7 +3464,10 @@ class CfnPrincipalPermissions(
|
|
|
3464
3464
|
|
|
3465
3465
|
@builtins.property
|
|
3466
3466
|
def catalog_id(self) -> builtins.str:
|
|
3467
|
-
'''
|
|
3467
|
+
'''The identifier for the Data Catalog.
|
|
3468
|
+
|
|
3469
|
+
By default, it is the account ID of the caller.
|
|
3470
|
+
|
|
3468
3471
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-principalpermissions-tableresource.html#cfn-lakeformation-principalpermissions-tableresource-catalogid
|
|
3469
3472
|
'''
|
|
3470
3473
|
result = self._values.get("catalog_id")
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -1538,6 +1538,12 @@ class AdotLambdaLayerGenericVersion(
|
|
|
1538
1538
|
'''Version 0.84.0.'''
|
|
1539
1539
|
return typing.cast("AdotLambdaLayerGenericVersion", jsii.sget(cls, "V0_84_0"))
|
|
1540
1540
|
|
|
1541
|
+
@jsii.python.classproperty
|
|
1542
|
+
@jsii.member(jsii_name="V0_88_0")
|
|
1543
|
+
def V0_88_0(cls) -> "AdotLambdaLayerGenericVersion":
|
|
1544
|
+
'''Version 0.88.0.'''
|
|
1545
|
+
return typing.cast("AdotLambdaLayerGenericVersion", jsii.sget(cls, "V0_88_0"))
|
|
1546
|
+
|
|
1541
1547
|
@builtins.property
|
|
1542
1548
|
@jsii.member(jsii_name="layerVersion")
|
|
1543
1549
|
def _layer_version(self) -> builtins.str:
|
|
@@ -1606,6 +1612,12 @@ class AdotLambdaLayerJavaAutoInstrumentationVersion(
|
|
|
1606
1612
|
'''Version 1.30.0.'''
|
|
1607
1613
|
return typing.cast("AdotLambdaLayerJavaAutoInstrumentationVersion", jsii.sget(cls, "V1_30_0"))
|
|
1608
1614
|
|
|
1615
|
+
@jsii.python.classproperty
|
|
1616
|
+
@jsii.member(jsii_name="V1_31_0")
|
|
1617
|
+
def V1_31_0(cls) -> "AdotLambdaLayerJavaAutoInstrumentationVersion":
|
|
1618
|
+
'''Version 1.31.0.'''
|
|
1619
|
+
return typing.cast("AdotLambdaLayerJavaAutoInstrumentationVersion", jsii.sget(cls, "V1_31_0"))
|
|
1620
|
+
|
|
1609
1621
|
@builtins.property
|
|
1610
1622
|
@jsii.member(jsii_name="layerVersion")
|
|
1611
1623
|
def _layer_version(self) -> builtins.str:
|
|
@@ -1675,6 +1687,12 @@ class AdotLambdaLayerJavaScriptSdkVersion(
|
|
|
1675
1687
|
'''Version 1.16.0.'''
|
|
1676
1688
|
return typing.cast("AdotLambdaLayerJavaScriptSdkVersion", jsii.sget(cls, "V1_16_0"))
|
|
1677
1689
|
|
|
1690
|
+
@jsii.python.classproperty
|
|
1691
|
+
@jsii.member(jsii_name="V1_17_1")
|
|
1692
|
+
def V1_17_1(cls) -> "AdotLambdaLayerJavaScriptSdkVersion":
|
|
1693
|
+
'''Version 1.17.1.'''
|
|
1694
|
+
return typing.cast("AdotLambdaLayerJavaScriptSdkVersion", jsii.sget(cls, "V1_17_1"))
|
|
1695
|
+
|
|
1678
1696
|
@jsii.python.classproperty
|
|
1679
1697
|
@jsii.member(jsii_name="V1_7_0")
|
|
1680
1698
|
def V1_7_0(cls) -> "AdotLambdaLayerJavaScriptSdkVersion":
|
|
@@ -1747,6 +1765,12 @@ class AdotLambdaLayerJavaSdkVersion(
|
|
|
1747
1765
|
'''Version 1.30.0.'''
|
|
1748
1766
|
return typing.cast("AdotLambdaLayerJavaSdkVersion", jsii.sget(cls, "V1_30_0"))
|
|
1749
1767
|
|
|
1768
|
+
@jsii.python.classproperty
|
|
1769
|
+
@jsii.member(jsii_name="V1_31_0")
|
|
1770
|
+
def V1_31_0(cls) -> "AdotLambdaLayerJavaSdkVersion":
|
|
1771
|
+
'''Version 1.31.0.'''
|
|
1772
|
+
return typing.cast("AdotLambdaLayerJavaSdkVersion", jsii.sget(cls, "V1_31_0"))
|
|
1773
|
+
|
|
1750
1774
|
@builtins.property
|
|
1751
1775
|
@jsii.member(jsii_name="layerVersion")
|
|
1752
1776
|
def _layer_version(self) -> builtins.str:
|
|
@@ -1845,6 +1869,12 @@ class AdotLambdaLayerPythonSdkVersion(
|
|
|
1845
1869
|
'''Version 1.20.0.'''
|
|
1846
1870
|
return typing.cast("AdotLambdaLayerPythonSdkVersion", jsii.sget(cls, "V1_20_0"))
|
|
1847
1871
|
|
|
1872
|
+
@jsii.python.classproperty
|
|
1873
|
+
@jsii.member(jsii_name="V1_20_0_1")
|
|
1874
|
+
def V1_20_0_1(cls) -> "AdotLambdaLayerPythonSdkVersion":
|
|
1875
|
+
'''Version 1.20.0.'''
|
|
1876
|
+
return typing.cast("AdotLambdaLayerPythonSdkVersion", jsii.sget(cls, "V1_20_0_1"))
|
|
1877
|
+
|
|
1848
1878
|
@builtins.property
|
|
1849
1879
|
@jsii.member(jsii_name="layerVersion")
|
|
1850
1880
|
def _layer_version(self) -> builtins.str:
|
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -825,7 +825,7 @@ class CfnCluster(
|
|
|
825
825
|
'''Describes the setup to be used for the broker nodes in the cluster.
|
|
826
826
|
|
|
827
827
|
:param client_subnets: The list of subnets to connect to in the client virtual private cloud (VPC). Amazon creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. If you use the US West (N. California) Region, specify exactly two subnets. For other Regions where Amazon MSK is available, you can specify either two or three subnets. The subnets that you specify must be in distinct Availability Zones. When you create a cluster, Amazon MSK distributes the broker nodes evenly across the subnets that you specify. Client subnets can't occupy the Availability Zone with ID ``use1-az3`` .
|
|
828
|
-
:param instance_type: The type of Amazon EC2 instances to use for brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge,
|
|
828
|
+
:param instance_type: The type of Amazon EC2 instances to use for brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge, kafka.m5.24xlarge, and kafka.t3.small.
|
|
829
829
|
:param broker_az_distribution: This parameter is currently not in use.
|
|
830
830
|
:param connectivity_info: Information about the cluster's connectivity setting.
|
|
831
831
|
:param security_groups: The security groups to associate with the elastic network interfaces in order to specify who can connect to and communicate with the Amazon MSK cluster. If you don't specify a security group, Amazon MSK uses the default security group associated with the VPC. If you specify security groups that were shared with you, you must ensure that you have permissions to them. Specifically, you need the ``ec2:DescribeSecurityGroups`` permission.
|
|
@@ -919,7 +919,7 @@ class CfnCluster(
|
|
|
919
919
|
def instance_type(self) -> builtins.str:
|
|
920
920
|
'''The type of Amazon EC2 instances to use for brokers.
|
|
921
921
|
|
|
922
|
-
The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge,
|
|
922
|
+
The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge, kafka.m5.24xlarge, and kafka.t3.small.
|
|
923
923
|
|
|
924
924
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype
|
|
925
925
|
'''
|
|
@@ -4163,7 +4163,7 @@ class CfnReplicator(
|
|
|
4163
4163
|
@builtins.property
|
|
4164
4164
|
@jsii.member(jsii_name="attrReplicatorArn")
|
|
4165
4165
|
def attr_replicator_arn(self) -> builtins.str:
|
|
4166
|
-
'''Amazon Resource Name for the created replicator.
|
|
4166
|
+
'''Amazon Resource Name (ARN) for the created replicator.
|
|
4167
4167
|
|
|
4168
4168
|
:cloudformationAttribute: ReplicatorArn
|
|
4169
4169
|
'''
|
|
@@ -2330,7 +2330,7 @@ class CfnDevice(
|
|
|
2330
2330
|
@builtins.property
|
|
2331
2331
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
2332
2332
|
def attr_created_at(self) -> builtins.str:
|
|
2333
|
-
'''The time that the device was created.
|
|
2333
|
+
'''The date and time that the device was created.
|
|
2334
2334
|
|
|
2335
2335
|
:cloudformationAttribute: CreatedAt
|
|
2336
2336
|
'''
|