aws-cdk-lib 2.156.0__py3-none-any.whl → 2.157.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 +26 -22
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.156.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +10 -75
- aws_cdk/aws_amplify/__init__.py +106 -0
- aws_cdk/aws_apigatewayv2/__init__.py +81 -13
- aws_cdk/aws_appintegrations/__init__.py +14 -14
- aws_cdk/aws_applicationsignals/__init__.py +750 -1
- aws_cdk/aws_appsync/__init__.py +50 -18
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_backup/__init__.py +39 -0
- aws_cdk/aws_batch/__init__.py +41 -0
- aws_cdk/aws_bedrock/__init__.py +1513 -94
- aws_cdk/aws_chatbot/__init__.py +6 -6
- aws_cdk/aws_cloudformation/__init__.py +22 -22
- aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
- aws_cdk/aws_datasync/__init__.py +40 -29
- aws_cdk/aws_ec2/__init__.py +373 -49
- aws_cdk/aws_ecs/__init__.py +253 -87
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -4
- aws_cdk/aws_entityresolution/__init__.py +117 -4
- aws_cdk/aws_glue/__init__.py +0 -8
- aws_cdk/aws_groundstation/__init__.py +27 -16
- aws_cdk/aws_guardduty/__init__.py +26 -14
- aws_cdk/aws_iotfleetwise/__init__.py +108 -0
- aws_cdk/aws_lambda/__init__.py +147 -17
- aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
- aws_cdk/aws_macie/__init__.py +4 -4
- aws_cdk/aws_medialive/__init__.py +348 -0
- aws_cdk/aws_mediapackagev2/__init__.py +38 -38
- aws_cdk/aws_neptune/__init__.py +14 -8
- aws_cdk/aws_opensearchservice/__init__.py +194 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
- aws_cdk/aws_personalize/__init__.py +2 -2
- aws_cdk/aws_pipes/__init__.py +22 -22
- aws_cdk/aws_qbusiness/__init__.py +675 -6
- aws_cdk/aws_quicksight/__init__.py +3285 -0
- aws_cdk/aws_rds/__init__.py +18 -0
- aws_cdk/aws_sagemaker/__init__.py +1167 -0
- aws_cdk/aws_secretsmanager/__init__.py +2 -3
- aws_cdk/aws_securityhub/__init__.py +108 -103
- aws_cdk/aws_ses/__init__.py +31 -0
- aws_cdk/aws_sns/__init__.py +19 -13
- aws_cdk/aws_ssm/__init__.py +10 -6
- aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -4
- aws_cdk/triggers/__init__.py +30 -3
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +53 -51
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.156.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
|
@@ -98,6 +98,10 @@ class CfnCampaign(
|
|
|
98
98
|
# the properties below are optional
|
|
99
99
|
compression="compression",
|
|
100
100
|
data_destination_configs=[iotfleetwise.CfnCampaign.DataDestinationConfigProperty(
|
|
101
|
+
mqtt_topic_config=iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
|
|
102
|
+
execution_role_arn="executionRoleArn",
|
|
103
|
+
mqtt_topic_arn="mqttTopicArn"
|
|
104
|
+
),
|
|
101
105
|
s3_config=iotfleetwise.CfnCampaign.S3ConfigProperty(
|
|
102
106
|
bucket_arn="bucketArn",
|
|
103
107
|
|
|
@@ -733,6 +737,7 @@ class CfnCampaign(
|
|
|
733
737
|
jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnCampaign.DataDestinationConfigProperty",
|
|
734
738
|
jsii_struct_bases=[],
|
|
735
739
|
name_mapping={
|
|
740
|
+
"mqtt_topic_config": "mqttTopicConfig",
|
|
736
741
|
"s3_config": "s3Config",
|
|
737
742
|
"timestream_config": "timestreamConfig",
|
|
738
743
|
},
|
|
@@ -741,6 +746,7 @@ class CfnCampaign(
|
|
|
741
746
|
def __init__(
|
|
742
747
|
self,
|
|
743
748
|
*,
|
|
749
|
+
mqtt_topic_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.MqttTopicConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
744
750
|
s3_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.S3ConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
745
751
|
timestream_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCampaign.TimestreamConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
746
752
|
) -> None:
|
|
@@ -748,6 +754,7 @@ class CfnCampaign(
|
|
|
748
754
|
|
|
749
755
|
You can send data to be stored in Amazon S3 or Amazon Timestream .
|
|
750
756
|
|
|
757
|
+
:param mqtt_topic_config:
|
|
751
758
|
:param s3_config: (Optional) The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data.
|
|
752
759
|
:param timestream_config: (Optional) The Amazon Timestream table where the campaign sends data.
|
|
753
760
|
|
|
@@ -761,6 +768,10 @@ class CfnCampaign(
|
|
|
761
768
|
from aws_cdk import aws_iotfleetwise as iotfleetwise
|
|
762
769
|
|
|
763
770
|
data_destination_config_property = iotfleetwise.CfnCampaign.DataDestinationConfigProperty(
|
|
771
|
+
mqtt_topic_config=iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
|
|
772
|
+
execution_role_arn="executionRoleArn",
|
|
773
|
+
mqtt_topic_arn="mqttTopicArn"
|
|
774
|
+
),
|
|
764
775
|
s3_config=iotfleetwise.CfnCampaign.S3ConfigProperty(
|
|
765
776
|
bucket_arn="bucketArn",
|
|
766
777
|
|
|
@@ -777,14 +788,27 @@ class CfnCampaign(
|
|
|
777
788
|
'''
|
|
778
789
|
if __debug__:
|
|
779
790
|
type_hints = typing.get_type_hints(_typecheckingstub__a76d3ecac8a3286ba64142d7bb2621dd82495be58438bdb339be1559bb8129f3)
|
|
791
|
+
check_type(argname="argument mqtt_topic_config", value=mqtt_topic_config, expected_type=type_hints["mqtt_topic_config"])
|
|
780
792
|
check_type(argname="argument s3_config", value=s3_config, expected_type=type_hints["s3_config"])
|
|
781
793
|
check_type(argname="argument timestream_config", value=timestream_config, expected_type=type_hints["timestream_config"])
|
|
782
794
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
795
|
+
if mqtt_topic_config is not None:
|
|
796
|
+
self._values["mqtt_topic_config"] = mqtt_topic_config
|
|
783
797
|
if s3_config is not None:
|
|
784
798
|
self._values["s3_config"] = s3_config
|
|
785
799
|
if timestream_config is not None:
|
|
786
800
|
self._values["timestream_config"] = timestream_config
|
|
787
801
|
|
|
802
|
+
@builtins.property
|
|
803
|
+
def mqtt_topic_config(
|
|
804
|
+
self,
|
|
805
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.MqttTopicConfigProperty"]]:
|
|
806
|
+
'''
|
|
807
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datadestinationconfig.html#cfn-iotfleetwise-campaign-datadestinationconfig-mqtttopicconfig
|
|
808
|
+
'''
|
|
809
|
+
result = self._values.get("mqtt_topic_config")
|
|
810
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCampaign.MqttTopicConfigProperty"]], result)
|
|
811
|
+
|
|
788
812
|
@builtins.property
|
|
789
813
|
def s3_config(
|
|
790
814
|
self,
|
|
@@ -818,6 +842,77 @@ class CfnCampaign(
|
|
|
818
842
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
819
843
|
)
|
|
820
844
|
|
|
845
|
+
@jsii.data_type(
|
|
846
|
+
jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnCampaign.MqttTopicConfigProperty",
|
|
847
|
+
jsii_struct_bases=[],
|
|
848
|
+
name_mapping={
|
|
849
|
+
"execution_role_arn": "executionRoleArn",
|
|
850
|
+
"mqtt_topic_arn": "mqttTopicArn",
|
|
851
|
+
},
|
|
852
|
+
)
|
|
853
|
+
class MqttTopicConfigProperty:
|
|
854
|
+
def __init__(
|
|
855
|
+
self,
|
|
856
|
+
*,
|
|
857
|
+
execution_role_arn: builtins.str,
|
|
858
|
+
mqtt_topic_arn: builtins.str,
|
|
859
|
+
) -> None:
|
|
860
|
+
'''
|
|
861
|
+
:param execution_role_arn:
|
|
862
|
+
:param mqtt_topic_arn:
|
|
863
|
+
|
|
864
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-mqtttopicconfig.html
|
|
865
|
+
:exampleMetadata: fixture=_generated
|
|
866
|
+
|
|
867
|
+
Example::
|
|
868
|
+
|
|
869
|
+
# The code below shows an example of how to instantiate this type.
|
|
870
|
+
# The values are placeholders you should change.
|
|
871
|
+
from aws_cdk import aws_iotfleetwise as iotfleetwise
|
|
872
|
+
|
|
873
|
+
mqtt_topic_config_property = iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
|
|
874
|
+
execution_role_arn="executionRoleArn",
|
|
875
|
+
mqtt_topic_arn="mqttTopicArn"
|
|
876
|
+
)
|
|
877
|
+
'''
|
|
878
|
+
if __debug__:
|
|
879
|
+
type_hints = typing.get_type_hints(_typecheckingstub__209686ec18cb4107b2d1b131e663816da747fda2930c62c84213e6efecdbbb97)
|
|
880
|
+
check_type(argname="argument execution_role_arn", value=execution_role_arn, expected_type=type_hints["execution_role_arn"])
|
|
881
|
+
check_type(argname="argument mqtt_topic_arn", value=mqtt_topic_arn, expected_type=type_hints["mqtt_topic_arn"])
|
|
882
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
883
|
+
"execution_role_arn": execution_role_arn,
|
|
884
|
+
"mqtt_topic_arn": mqtt_topic_arn,
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
@builtins.property
|
|
888
|
+
def execution_role_arn(self) -> builtins.str:
|
|
889
|
+
'''
|
|
890
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-mqtttopicconfig.html#cfn-iotfleetwise-campaign-mqtttopicconfig-executionrolearn
|
|
891
|
+
'''
|
|
892
|
+
result = self._values.get("execution_role_arn")
|
|
893
|
+
assert result is not None, "Required property 'execution_role_arn' is missing"
|
|
894
|
+
return typing.cast(builtins.str, result)
|
|
895
|
+
|
|
896
|
+
@builtins.property
|
|
897
|
+
def mqtt_topic_arn(self) -> builtins.str:
|
|
898
|
+
'''
|
|
899
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-mqtttopicconfig.html#cfn-iotfleetwise-campaign-mqtttopicconfig-mqtttopicarn
|
|
900
|
+
'''
|
|
901
|
+
result = self._values.get("mqtt_topic_arn")
|
|
902
|
+
assert result is not None, "Required property 'mqtt_topic_arn' is missing"
|
|
903
|
+
return typing.cast(builtins.str, result)
|
|
904
|
+
|
|
905
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
906
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
907
|
+
|
|
908
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
909
|
+
return not (rhs == self)
|
|
910
|
+
|
|
911
|
+
def __repr__(self) -> str:
|
|
912
|
+
return "MqttTopicConfigProperty(%s)" % ", ".join(
|
|
913
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
914
|
+
)
|
|
915
|
+
|
|
821
916
|
@jsii.data_type(
|
|
822
917
|
jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnCampaign.S3ConfigProperty",
|
|
823
918
|
jsii_struct_bases=[],
|
|
@@ -1260,6 +1355,10 @@ class CfnCampaignProps:
|
|
|
1260
1355
|
# the properties below are optional
|
|
1261
1356
|
compression="compression",
|
|
1262
1357
|
data_destination_configs=[iotfleetwise.CfnCampaign.DataDestinationConfigProperty(
|
|
1358
|
+
mqtt_topic_config=iotfleetwise.CfnCampaign.MqttTopicConfigProperty(
|
|
1359
|
+
execution_role_arn="executionRoleArn",
|
|
1360
|
+
mqtt_topic_arn="mqttTopicArn"
|
|
1361
|
+
),
|
|
1263
1362
|
s3_config=iotfleetwise.CfnCampaign.S3ConfigProperty(
|
|
1264
1363
|
bucket_arn="bucketArn",
|
|
1265
1364
|
|
|
@@ -6037,12 +6136,21 @@ def _typecheckingstub__dd3351de9470a98f13f006dd95deedef6c30dbfc08cdfe7bde2b9d950
|
|
|
6037
6136
|
|
|
6038
6137
|
def _typecheckingstub__a76d3ecac8a3286ba64142d7bb2621dd82495be58438bdb339be1559bb8129f3(
|
|
6039
6138
|
*,
|
|
6139
|
+
mqtt_topic_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.MqttTopicConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6040
6140
|
s3_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.S3ConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6041
6141
|
timestream_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCampaign.TimestreamConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6042
6142
|
) -> None:
|
|
6043
6143
|
"""Type checking stubs"""
|
|
6044
6144
|
pass
|
|
6045
6145
|
|
|
6146
|
+
def _typecheckingstub__209686ec18cb4107b2d1b131e663816da747fda2930c62c84213e6efecdbbb97(
|
|
6147
|
+
*,
|
|
6148
|
+
execution_role_arn: builtins.str,
|
|
6149
|
+
mqtt_topic_arn: builtins.str,
|
|
6150
|
+
) -> None:
|
|
6151
|
+
"""Type checking stubs"""
|
|
6152
|
+
pass
|
|
6153
|
+
|
|
6046
6154
|
def _typecheckingstub__cb82e0c92a9fdd48764ec7ba91d5dabd16d19776d63621d9b09fba43e604eb8a(
|
|
6047
6155
|
*,
|
|
6048
6156
|
bucket_arn: builtins.str,
|