aws-cdk-lib 2.212.0__py3-none-any.whl → 2.214.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/__init__.py +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.212.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +418 -56
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +18 -0
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -5712,7 +5712,9 @@ class CfnEncryptionConfiguration(
|
|
|
5712
5712
|
metaclass=jsii.JSIIMeta,
|
|
5713
5713
|
jsii_type="aws-cdk-lib.aws_iot.CfnEncryptionConfiguration",
|
|
5714
5714
|
):
|
|
5715
|
-
'''
|
|
5715
|
+
'''Retrieves the encryption configuration for resources and data of your AWS account in AWS IoT Core .
|
|
5716
|
+
|
|
5717
|
+
For more information, see `Data encryption at rest <https://docs.aws.amazon.com/iot/latest/developerguide/encryption-at-rest.html>`_ in the *AWS IoT Core Developer Guide* .
|
|
5716
5718
|
|
|
5717
5719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html
|
|
5718
5720
|
:cloudformationResource: AWS::IoT::EncryptionConfiguration
|
|
@@ -5745,9 +5747,9 @@ class CfnEncryptionConfiguration(
|
|
|
5745
5747
|
'''
|
|
5746
5748
|
:param scope: Scope in which this resource is defined.
|
|
5747
5749
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5748
|
-
:param encryption_type:
|
|
5749
|
-
:param kms_access_role_arn:
|
|
5750
|
-
:param kms_key_arn:
|
|
5750
|
+
:param encryption_type: The type of the KMS key.
|
|
5751
|
+
:param kms_access_role_arn: The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS KMS on behalf of the customer.
|
|
5752
|
+
:param kms_key_arn: The ARN of the customer managed KMS key.
|
|
5751
5753
|
'''
|
|
5752
5754
|
if __debug__:
|
|
5753
5755
|
type_hints = typing.get_type_hints(_typecheckingstub__590a310b1ce9a41bd611fc7e92d5bb9381ff548973b6322c201006617fc000f1)
|
|
@@ -5794,7 +5796,8 @@ class CfnEncryptionConfiguration(
|
|
|
5794
5796
|
@builtins.property
|
|
5795
5797
|
@jsii.member(jsii_name="attrAccountId")
|
|
5796
5798
|
def attr_account_id(self) -> builtins.str:
|
|
5797
|
-
'''
|
|
5799
|
+
'''The unique identifier (ID) of an AWS account.
|
|
5800
|
+
|
|
5798
5801
|
:cloudformationAttribute: AccountId
|
|
5799
5802
|
'''
|
|
5800
5803
|
return typing.cast(builtins.str, jsii.get(self, "attrAccountId"))
|
|
@@ -5810,7 +5813,8 @@ class CfnEncryptionConfiguration(
|
|
|
5810
5813
|
@builtins.property
|
|
5811
5814
|
@jsii.member(jsii_name="attrLastModifiedDate")
|
|
5812
5815
|
def attr_last_modified_date(self) -> builtins.str:
|
|
5813
|
-
'''
|
|
5816
|
+
'''The date when encryption configuration is last updated.
|
|
5817
|
+
|
|
5814
5818
|
:cloudformationAttribute: LastModifiedDate
|
|
5815
5819
|
'''
|
|
5816
5820
|
return typing.cast(builtins.str, jsii.get(self, "attrLastModifiedDate"))
|
|
@@ -5823,6 +5827,7 @@ class CfnEncryptionConfiguration(
|
|
|
5823
5827
|
@builtins.property
|
|
5824
5828
|
@jsii.member(jsii_name="encryptionType")
|
|
5825
5829
|
def encryption_type(self) -> builtins.str:
|
|
5830
|
+
'''The type of the KMS key.'''
|
|
5826
5831
|
return typing.cast(builtins.str, jsii.get(self, "encryptionType"))
|
|
5827
5832
|
|
|
5828
5833
|
@encryption_type.setter
|
|
@@ -5835,6 +5840,7 @@ class CfnEncryptionConfiguration(
|
|
|
5835
5840
|
@builtins.property
|
|
5836
5841
|
@jsii.member(jsii_name="kmsAccessRoleArn")
|
|
5837
5842
|
def kms_access_role_arn(self) -> typing.Optional[builtins.str]:
|
|
5843
|
+
'''The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS KMS on behalf of the customer.'''
|
|
5838
5844
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsAccessRoleArn"))
|
|
5839
5845
|
|
|
5840
5846
|
@kms_access_role_arn.setter
|
|
@@ -5847,6 +5853,7 @@ class CfnEncryptionConfiguration(
|
|
|
5847
5853
|
@builtins.property
|
|
5848
5854
|
@jsii.member(jsii_name="kmsKeyArn")
|
|
5849
5855
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
5856
|
+
'''The ARN of the customer managed KMS key.'''
|
|
5850
5857
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyArn"))
|
|
5851
5858
|
|
|
5852
5859
|
@kms_key_arn.setter
|
|
@@ -5873,10 +5880,11 @@ class CfnEncryptionConfiguration(
|
|
|
5873
5880
|
error_code: typing.Optional[builtins.str] = None,
|
|
5874
5881
|
error_message: typing.Optional[builtins.str] = None,
|
|
5875
5882
|
) -> None:
|
|
5876
|
-
'''
|
|
5877
|
-
|
|
5878
|
-
:param
|
|
5879
|
-
:param
|
|
5883
|
+
'''The encryption configuration details that include the status information of the AWS Key Management Service ( AWS KMS ) key and the AWS KMS access role.
|
|
5884
|
+
|
|
5885
|
+
:param configuration_status: The health status of KMS key and AWS KMS access role. If either KMS key or AWS KMS access role is ``UNHEALTHY`` , the return value will be ``UNHEALTHY`` . To use a customer managed KMS key, the value of ``configurationStatus`` must be ``HEALTHY`` .
|
|
5886
|
+
:param error_code: The error code that indicates either the KMS key or the AWS KMS access role is ``UNHEALTHY`` . Valid values: ``KMS_KEY_VALIDATION_ERROR`` and ``ROLE_VALIDATION_ERROR`` .
|
|
5887
|
+
:param error_message: The detailed error message that corresponds to the ``errorCode`` .
|
|
5880
5888
|
|
|
5881
5889
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-encryptionconfiguration-configurationdetails.html
|
|
5882
5890
|
:exampleMetadata: fixture=_generated
|
|
@@ -5908,7 +5916,10 @@ class CfnEncryptionConfiguration(
|
|
|
5908
5916
|
|
|
5909
5917
|
@builtins.property
|
|
5910
5918
|
def configuration_status(self) -> typing.Optional[builtins.str]:
|
|
5911
|
-
'''
|
|
5919
|
+
'''The health status of KMS key and AWS KMS access role.
|
|
5920
|
+
|
|
5921
|
+
If either KMS key or AWS KMS access role is ``UNHEALTHY`` , the return value will be ``UNHEALTHY`` . To use a customer managed KMS key, the value of ``configurationStatus`` must be ``HEALTHY`` .
|
|
5922
|
+
|
|
5912
5923
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-encryptionconfiguration-configurationdetails.html#cfn-iot-encryptionconfiguration-configurationdetails-configurationstatus
|
|
5913
5924
|
'''
|
|
5914
5925
|
result = self._values.get("configuration_status")
|
|
@@ -5916,7 +5927,10 @@ class CfnEncryptionConfiguration(
|
|
|
5916
5927
|
|
|
5917
5928
|
@builtins.property
|
|
5918
5929
|
def error_code(self) -> typing.Optional[builtins.str]:
|
|
5919
|
-
'''
|
|
5930
|
+
'''The error code that indicates either the KMS key or the AWS KMS access role is ``UNHEALTHY`` .
|
|
5931
|
+
|
|
5932
|
+
Valid values: ``KMS_KEY_VALIDATION_ERROR`` and ``ROLE_VALIDATION_ERROR`` .
|
|
5933
|
+
|
|
5920
5934
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-encryptionconfiguration-configurationdetails.html#cfn-iot-encryptionconfiguration-configurationdetails-errorcode
|
|
5921
5935
|
'''
|
|
5922
5936
|
result = self._values.get("error_code")
|
|
@@ -5924,7 +5938,8 @@ class CfnEncryptionConfiguration(
|
|
|
5924
5938
|
|
|
5925
5939
|
@builtins.property
|
|
5926
5940
|
def error_message(self) -> typing.Optional[builtins.str]:
|
|
5927
|
-
'''
|
|
5941
|
+
'''The detailed error message that corresponds to the ``errorCode`` .
|
|
5942
|
+
|
|
5928
5943
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-encryptionconfiguration-configurationdetails.html#cfn-iot-encryptionconfiguration-configurationdetails-errormessage
|
|
5929
5944
|
'''
|
|
5930
5945
|
result = self._values.get("error_message")
|
|
@@ -5961,9 +5976,9 @@ class CfnEncryptionConfigurationProps:
|
|
|
5961
5976
|
) -> None:
|
|
5962
5977
|
'''Properties for defining a ``CfnEncryptionConfiguration``.
|
|
5963
5978
|
|
|
5964
|
-
:param encryption_type:
|
|
5965
|
-
:param kms_access_role_arn:
|
|
5966
|
-
:param kms_key_arn:
|
|
5979
|
+
:param encryption_type: The type of the KMS key.
|
|
5980
|
+
:param kms_access_role_arn: The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS KMS on behalf of the customer.
|
|
5981
|
+
:param kms_key_arn: The ARN of the customer managed KMS key.
|
|
5967
5982
|
|
|
5968
5983
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html
|
|
5969
5984
|
:exampleMetadata: fixture=_generated
|
|
@@ -5997,7 +6012,8 @@ class CfnEncryptionConfigurationProps:
|
|
|
5997
6012
|
|
|
5998
6013
|
@builtins.property
|
|
5999
6014
|
def encryption_type(self) -> builtins.str:
|
|
6000
|
-
'''
|
|
6015
|
+
'''The type of the KMS key.
|
|
6016
|
+
|
|
6001
6017
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-encryptiontype
|
|
6002
6018
|
'''
|
|
6003
6019
|
result = self._values.get("encryption_type")
|
|
@@ -6006,7 +6022,8 @@ class CfnEncryptionConfigurationProps:
|
|
|
6006
6022
|
|
|
6007
6023
|
@builtins.property
|
|
6008
6024
|
def kms_access_role_arn(self) -> typing.Optional[builtins.str]:
|
|
6009
|
-
'''
|
|
6025
|
+
'''The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS KMS on behalf of the customer.
|
|
6026
|
+
|
|
6010
6027
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmsaccessrolearn
|
|
6011
6028
|
'''
|
|
6012
6029
|
result = self._values.get("kms_access_role_arn")
|
|
@@ -6014,7 +6031,8 @@ class CfnEncryptionConfigurationProps:
|
|
|
6014
6031
|
|
|
6015
6032
|
@builtins.property
|
|
6016
6033
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
6017
|
-
'''
|
|
6034
|
+
'''The ARN of the customer managed KMS key.
|
|
6035
|
+
|
|
6018
6036
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmskeyarn
|
|
6019
6037
|
'''
|
|
6020
6038
|
result = self._values.get("kms_key_arn")
|