aws-cdk-lib 2.171.1__py3-none-any.whl → 2.173.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 +528 -161
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.171.1.jsii.tgz → aws-cdk-lib@2.173.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +1357 -120
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +163 -139
- aws_cdk/aws_autoscaling/__init__.py +96 -30
- aws_cdk/aws_bedrock/__init__.py +80 -44
- aws_cdk/aws_chatbot/__init__.py +803 -2
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudformation/__init__.py +240 -159
- aws_cdk/aws_cloudfront/__init__.py +15 -7
- aws_cdk/aws_cloudtrail/__init__.py +802 -13
- aws_cdk/aws_cloudwatch/__init__.py +51 -14
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_codepipeline/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +1032 -43
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +454 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_customerprofiles/__init__.py +3148 -0
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +976 -27
- aws_cdk/aws_ecs/__init__.py +37 -20
- aws_cdk/aws_eks/__init__.py +771 -0
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +441 -177
- aws_cdk/aws_events/__init__.py +550 -30
- aws_cdk/aws_fsx/__init__.py +134 -10
- aws_cdk/aws_imagebuilder/__init__.py +8 -8
- aws_cdk/aws_invoicing/__init__.py +651 -0
- aws_cdk/aws_iot/__init__.py +70 -26
- aws_cdk/aws_iotfleetwise/__init__.py +1033 -382
- aws_cdk/aws_iotsitewise/__init__.py +158 -0
- aws_cdk/aws_ivs/__init__.py +43 -31
- aws_cdk/aws_kendra/__init__.py +4 -0
- aws_cdk/aws_lakeformation/__init__.py +2 -1
- aws_cdk/aws_lambda/__init__.py +272 -164
- aws_cdk/aws_lambda_event_sources/__init__.py +2 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +11 -11
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +289 -0
- aws_cdk/aws_mediaconnect/__init__.py +24 -14
- aws_cdk/aws_medialive/__init__.py +2359 -5
- aws_cdk/aws_mediapackage/__init__.py +3 -9
- aws_cdk/aws_mediapackagev2/__init__.py +19 -17
- aws_cdk/aws_memorydb/__init__.py +664 -4
- aws_cdk/aws_mwaa/__init__.py +6 -6
- aws_cdk/aws_opensearchserverless/__init__.py +249 -1
- aws_cdk/aws_pipes/__init__.py +14 -30
- aws_cdk/aws_qbusiness/__init__.py +2021 -67
- aws_cdk/aws_quicksight/__init__.py +8270 -10
- aws_cdk/aws_rbin/__init__.py +53 -34
- aws_cdk/aws_rds/__init__.py +170 -8
- aws_cdk/aws_resourcegroups/__init__.py +362 -4
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +297 -91
- aws_cdk/aws_route53resolver/__init__.py +19 -8
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +421 -9
- aws_cdk/aws_sagemaker/__init__.py +905 -119
- aws_cdk/aws_secretsmanager/__init__.py +20 -6
- aws_cdk/aws_securityhub/__init__.py +64 -32
- aws_cdk/aws_servicediscovery/__init__.py +43 -0
- aws_cdk/aws_ses/__init__.py +188 -41
- aws_cdk/aws_stepfunctions_tasks/__init__.py +190 -35
- aws_cdk/aws_synthetics/__init__.py +7 -5
- aws_cdk/aws_vpclattice/__init__.py +1479 -122
- aws_cdk/aws_wisdom/__init__.py +8509 -1502
- aws_cdk/aws_workspacesweb/__init__.py +1081 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/RECORD +78 -77
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.173.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -3576,7 +3576,9 @@ class CfnDomainConfiguration(
|
|
|
3576
3576
|
domain_name="domainName",
|
|
3577
3577
|
server_certificate_arns=["serverCertificateArns"],
|
|
3578
3578
|
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
3579
|
-
enable_ocsp_check=False
|
|
3579
|
+
enable_ocsp_check=False,
|
|
3580
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
3581
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
3580
3582
|
),
|
|
3581
3583
|
service_type="serviceType",
|
|
3582
3584
|
tags=[CfnTag(
|
|
@@ -4045,19 +4047,27 @@ class CfnDomainConfiguration(
|
|
|
4045
4047
|
@jsii.data_type(
|
|
4046
4048
|
jsii_type="aws-cdk-lib.aws_iot.CfnDomainConfiguration.ServerCertificateConfigProperty",
|
|
4047
4049
|
jsii_struct_bases=[],
|
|
4048
|
-
name_mapping={
|
|
4050
|
+
name_mapping={
|
|
4051
|
+
"enable_ocsp_check": "enableOcspCheck",
|
|
4052
|
+
"ocsp_authorized_responder_arn": "ocspAuthorizedResponderArn",
|
|
4053
|
+
"ocsp_lambda_arn": "ocspLambdaArn",
|
|
4054
|
+
},
|
|
4049
4055
|
)
|
|
4050
4056
|
class ServerCertificateConfigProperty:
|
|
4051
4057
|
def __init__(
|
|
4052
4058
|
self,
|
|
4053
4059
|
*,
|
|
4054
4060
|
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4061
|
+
ocsp_authorized_responder_arn: typing.Optional[builtins.str] = None,
|
|
4062
|
+
ocsp_lambda_arn: typing.Optional[builtins.str] = None,
|
|
4055
4063
|
) -> None:
|
|
4056
4064
|
'''The server certificate configuration.
|
|
4057
4065
|
|
|
4058
4066
|
For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4059
4067
|
|
|
4060
4068
|
:param enable_ocsp_check: A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not. For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4069
|
+
:param ocsp_authorized_responder_arn:
|
|
4070
|
+
:param ocsp_lambda_arn:
|
|
4061
4071
|
|
|
4062
4072
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html
|
|
4063
4073
|
:exampleMetadata: fixture=_generated
|
|
@@ -4069,15 +4079,23 @@ class CfnDomainConfiguration(
|
|
|
4069
4079
|
from aws_cdk import aws_iot as iot
|
|
4070
4080
|
|
|
4071
4081
|
server_certificate_config_property = iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
4072
|
-
enable_ocsp_check=False
|
|
4082
|
+
enable_ocsp_check=False,
|
|
4083
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
4084
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
4073
4085
|
)
|
|
4074
4086
|
'''
|
|
4075
4087
|
if __debug__:
|
|
4076
4088
|
type_hints = typing.get_type_hints(_typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2)
|
|
4077
4089
|
check_type(argname="argument enable_ocsp_check", value=enable_ocsp_check, expected_type=type_hints["enable_ocsp_check"])
|
|
4090
|
+
check_type(argname="argument ocsp_authorized_responder_arn", value=ocsp_authorized_responder_arn, expected_type=type_hints["ocsp_authorized_responder_arn"])
|
|
4091
|
+
check_type(argname="argument ocsp_lambda_arn", value=ocsp_lambda_arn, expected_type=type_hints["ocsp_lambda_arn"])
|
|
4078
4092
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4079
4093
|
if enable_ocsp_check is not None:
|
|
4080
4094
|
self._values["enable_ocsp_check"] = enable_ocsp_check
|
|
4095
|
+
if ocsp_authorized_responder_arn is not None:
|
|
4096
|
+
self._values["ocsp_authorized_responder_arn"] = ocsp_authorized_responder_arn
|
|
4097
|
+
if ocsp_lambda_arn is not None:
|
|
4098
|
+
self._values["ocsp_lambda_arn"] = ocsp_lambda_arn
|
|
4081
4099
|
|
|
4082
4100
|
@builtins.property
|
|
4083
4101
|
def enable_ocsp_check(
|
|
@@ -4092,6 +4110,22 @@ class CfnDomainConfiguration(
|
|
|
4092
4110
|
result = self._values.get("enable_ocsp_check")
|
|
4093
4111
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
4094
4112
|
|
|
4113
|
+
@builtins.property
|
|
4114
|
+
def ocsp_authorized_responder_arn(self) -> typing.Optional[builtins.str]:
|
|
4115
|
+
'''
|
|
4116
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-ocspauthorizedresponderarn
|
|
4117
|
+
'''
|
|
4118
|
+
result = self._values.get("ocsp_authorized_responder_arn")
|
|
4119
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4120
|
+
|
|
4121
|
+
@builtins.property
|
|
4122
|
+
def ocsp_lambda_arn(self) -> typing.Optional[builtins.str]:
|
|
4123
|
+
'''
|
|
4124
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-ocsplambdaarn
|
|
4125
|
+
'''
|
|
4126
|
+
result = self._values.get("ocsp_lambda_arn")
|
|
4127
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4128
|
+
|
|
4095
4129
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4096
4130
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4097
4131
|
|
|
@@ -4327,7 +4361,9 @@ class CfnDomainConfigurationProps:
|
|
|
4327
4361
|
domain_name="domainName",
|
|
4328
4362
|
server_certificate_arns=["serverCertificateArns"],
|
|
4329
4363
|
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
4330
|
-
enable_ocsp_check=False
|
|
4364
|
+
enable_ocsp_check=False,
|
|
4365
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
4366
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
4331
4367
|
),
|
|
4332
4368
|
service_type="serviceType",
|
|
4333
4369
|
tags=[CfnTag(
|
|
@@ -12542,10 +12578,10 @@ class CfnThingType(
|
|
|
12542
12578
|
'''
|
|
12543
12579
|
:param scope: Scope in which this resource is defined.
|
|
12544
12580
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
12545
|
-
:param deprecate_thing_type: Deprecates a thing type. You can not associate new things with deprecated thing type. Requires permission to access the `DeprecateThingType <https://docs.aws.amazon.com//service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`_ action.
|
|
12581
|
+
:param deprecate_thing_type: Deprecates a thing type. You can not associate new things with deprecated thing type. You cannot update ``ThingTypeProperties`` if the thing type is deprecated. Requires permission to access the `DeprecateThingType <https://docs.aws.amazon.com//service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`_ action.
|
|
12546
12582
|
:param tags: Metadata which can be used to manage the thing type.
|
|
12547
12583
|
:param thing_type_name: The name of the thing type.
|
|
12548
|
-
:param thing_type_properties: The thing type properties for the thing type to create. It contains information about the new thing type including a description,
|
|
12584
|
+
:param thing_type_properties: The thing type properties for the thing type to create. It contains information about the new thing type including a description, a list of searchable thing attribute names, and a list of propagating attributes. After a thing type is created, you can only update ``Mqtt5Configuration`` .
|
|
12549
12585
|
'''
|
|
12550
12586
|
if __debug__:
|
|
12551
12587
|
type_hints = typing.get_type_hints(_typecheckingstub__855c3886be1512886349890e201c5566281b169c77e8a1ea7d540216ec69c482)
|
|
@@ -12624,10 +12660,7 @@ class CfnThingType(
|
|
|
12624
12660
|
def deprecate_thing_type(
|
|
12625
12661
|
self,
|
|
12626
12662
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
12627
|
-
'''Deprecates a thing type.
|
|
12628
|
-
|
|
12629
|
-
You can not associate new things with deprecated thing type.
|
|
12630
|
-
'''
|
|
12663
|
+
'''Deprecates a thing type.'''
|
|
12631
12664
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "deprecateThingType"))
|
|
12632
12665
|
|
|
12633
12666
|
@deprecate_thing_type.setter
|
|
@@ -12695,8 +12728,9 @@ class CfnThingType(
|
|
|
12695
12728
|
*,
|
|
12696
12729
|
propagating_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnThingType.PropagatingAttributeProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
12697
12730
|
) -> None:
|
|
12698
|
-
'''
|
|
12699
|
-
|
|
12731
|
+
'''The configuration to add user-defined properties to enrich MQTT 5 messages.
|
|
12732
|
+
|
|
12733
|
+
:param propagating_attributes: An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key.
|
|
12700
12734
|
|
|
12701
12735
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-mqtt5configuration.html
|
|
12702
12736
|
:exampleMetadata: fixture=_generated
|
|
@@ -12728,7 +12762,8 @@ class CfnThingType(
|
|
|
12728
12762
|
def propagating_attributes(
|
|
12729
12763
|
self,
|
|
12730
12764
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnThingType.PropagatingAttributeProperty"]]]]:
|
|
12731
|
-
'''
|
|
12765
|
+
'''An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key.
|
|
12766
|
+
|
|
12732
12767
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-mqtt5configuration.html#cfn-iot-thingtype-mqtt5configuration-propagatingattributes
|
|
12733
12768
|
'''
|
|
12734
12769
|
result = self._values.get("propagating_attributes")
|
|
@@ -12762,10 +12797,11 @@ class CfnThingType(
|
|
|
12762
12797
|
connection_attribute: typing.Optional[builtins.str] = None,
|
|
12763
12798
|
thing_attribute: typing.Optional[builtins.str] = None,
|
|
12764
12799
|
) -> None:
|
|
12765
|
-
'''
|
|
12766
|
-
|
|
12767
|
-
:param
|
|
12768
|
-
:param
|
|
12800
|
+
'''An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key.
|
|
12801
|
+
|
|
12802
|
+
:param user_property_key: The key of the MQTT 5 user property, which is a key-value pair.
|
|
12803
|
+
:param connection_attribute: The attribute associated with the connection details.
|
|
12804
|
+
:param thing_attribute: The thing attribute that is propagating for MQTT 5 message enrichment.
|
|
12769
12805
|
|
|
12770
12806
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html
|
|
12771
12807
|
:exampleMetadata: fixture=_generated
|
|
@@ -12799,7 +12835,8 @@ class CfnThingType(
|
|
|
12799
12835
|
|
|
12800
12836
|
@builtins.property
|
|
12801
12837
|
def user_property_key(self) -> builtins.str:
|
|
12802
|
-
'''
|
|
12838
|
+
'''The key of the MQTT 5 user property, which is a key-value pair.
|
|
12839
|
+
|
|
12803
12840
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html#cfn-iot-thingtype-propagatingattribute-userpropertykey
|
|
12804
12841
|
'''
|
|
12805
12842
|
result = self._values.get("user_property_key")
|
|
@@ -12808,7 +12845,8 @@ class CfnThingType(
|
|
|
12808
12845
|
|
|
12809
12846
|
@builtins.property
|
|
12810
12847
|
def connection_attribute(self) -> typing.Optional[builtins.str]:
|
|
12811
|
-
'''
|
|
12848
|
+
'''The attribute associated with the connection details.
|
|
12849
|
+
|
|
12812
12850
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html#cfn-iot-thingtype-propagatingattribute-connectionattribute
|
|
12813
12851
|
'''
|
|
12814
12852
|
result = self._values.get("connection_attribute")
|
|
@@ -12816,7 +12854,8 @@ class CfnThingType(
|
|
|
12816
12854
|
|
|
12817
12855
|
@builtins.property
|
|
12818
12856
|
def thing_attribute(self) -> typing.Optional[builtins.str]:
|
|
12819
|
-
'''
|
|
12857
|
+
'''The thing attribute that is propagating for MQTT 5 message enrichment.
|
|
12858
|
+
|
|
12820
12859
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html#cfn-iot-thingtype-propagatingattribute-thingattribute
|
|
12821
12860
|
'''
|
|
12822
12861
|
result = self._values.get("thing_attribute")
|
|
@@ -12852,7 +12891,7 @@ class CfnThingType(
|
|
|
12852
12891
|
) -> None:
|
|
12853
12892
|
'''The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
|
|
12854
12893
|
|
|
12855
|
-
:param mqtt5_configuration:
|
|
12894
|
+
:param mqtt5_configuration: The configuration to add user-defined properties to enrich MQTT 5 messages.
|
|
12856
12895
|
:param searchable_attributes: A list of searchable thing attribute names.
|
|
12857
12896
|
:param thing_type_description: The description of the thing type.
|
|
12858
12897
|
|
|
@@ -12896,7 +12935,8 @@ class CfnThingType(
|
|
|
12896
12935
|
def mqtt5_configuration(
|
|
12897
12936
|
self,
|
|
12898
12937
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnThingType.Mqtt5ConfigurationProperty"]]:
|
|
12899
|
-
'''
|
|
12938
|
+
'''The configuration to add user-defined properties to enrich MQTT 5 messages.
|
|
12939
|
+
|
|
12900
12940
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-thingtypeproperties.html#cfn-iot-thingtype-thingtypeproperties-mqtt5configuration
|
|
12901
12941
|
'''
|
|
12902
12942
|
result = self._values.get("mqtt5_configuration")
|
|
@@ -12953,10 +12993,10 @@ class CfnThingTypeProps:
|
|
|
12953
12993
|
) -> None:
|
|
12954
12994
|
'''Properties for defining a ``CfnThingType``.
|
|
12955
12995
|
|
|
12956
|
-
:param deprecate_thing_type: Deprecates a thing type. You can not associate new things with deprecated thing type. Requires permission to access the `DeprecateThingType <https://docs.aws.amazon.com//service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`_ action.
|
|
12996
|
+
:param deprecate_thing_type: Deprecates a thing type. You can not associate new things with deprecated thing type. You cannot update ``ThingTypeProperties`` if the thing type is deprecated. Requires permission to access the `DeprecateThingType <https://docs.aws.amazon.com//service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`_ action.
|
|
12957
12997
|
:param tags: Metadata which can be used to manage the thing type.
|
|
12958
12998
|
:param thing_type_name: The name of the thing type.
|
|
12959
|
-
:param thing_type_properties: The thing type properties for the thing type to create. It contains information about the new thing type including a description,
|
|
12999
|
+
:param thing_type_properties: The thing type properties for the thing type to create. It contains information about the new thing type including a description, a list of searchable thing attribute names, and a list of propagating attributes. After a thing type is created, you can only update ``Mqtt5Configuration`` .
|
|
12960
13000
|
|
|
12961
13001
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingtype.html
|
|
12962
13002
|
:exampleMetadata: fixture=_generated
|
|
@@ -13009,7 +13049,9 @@ class CfnThingTypeProps:
|
|
|
13009
13049
|
def deprecate_thing_type(
|
|
13010
13050
|
self,
|
|
13011
13051
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
13012
|
-
'''Deprecates a thing type.
|
|
13052
|
+
'''Deprecates a thing type.
|
|
13053
|
+
|
|
13054
|
+
You can not associate new things with deprecated thing type. You cannot update ``ThingTypeProperties`` if the thing type is deprecated.
|
|
13013
13055
|
|
|
13014
13056
|
Requires permission to access the `DeprecateThingType <https://docs.aws.amazon.com//service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`_ action.
|
|
13015
13057
|
|
|
@@ -13042,7 +13084,7 @@ class CfnThingTypeProps:
|
|
|
13042
13084
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnThingType.ThingTypePropertiesProperty]]:
|
|
13043
13085
|
'''The thing type properties for the thing type to create.
|
|
13044
13086
|
|
|
13045
|
-
It contains information about the new thing type including a description,
|
|
13087
|
+
It contains information about the new thing type including a description, a list of searchable thing attribute names, and a list of propagating attributes. After a thing type is created, you can only update ``Mqtt5Configuration`` .
|
|
13046
13088
|
|
|
13047
13089
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingtype.html#cfn-iot-thingtype-thingtypeproperties
|
|
13048
13090
|
'''
|
|
@@ -20476,6 +20518,8 @@ def _typecheckingstub__93b41f5617e6612d5a7947408347bc90f8d10c56bcd62276cae64a634
|
|
|
20476
20518
|
def _typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2(
|
|
20477
20519
|
*,
|
|
20478
20520
|
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
20521
|
+
ocsp_authorized_responder_arn: typing.Optional[builtins.str] = None,
|
|
20522
|
+
ocsp_lambda_arn: typing.Optional[builtins.str] = None,
|
|
20479
20523
|
) -> None:
|
|
20480
20524
|
"""Type checking stubs"""
|
|
20481
20525
|
pass
|