aws-cdk-lib 2.171.1__py3-none-any.whl → 2.172.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 +471 -161
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.171.1.jsii.tgz → aws-cdk-lib@2.172.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +1314 -124
- aws_cdk/aws_appsync/__init__.py +159 -136
- aws_cdk/aws_autoscaling/__init__.py +81 -24
- aws_cdk/aws_bedrock/__init__.py +48 -0
- aws_cdk/aws_chatbot/__init__.py +775 -0
- aws_cdk/aws_cloudformation/__init__.py +240 -159
- aws_cdk/aws_cloudfront/__init__.py +11 -5
- aws_cdk/aws_cloudtrail/__init__.py +753 -0
- aws_cdk/aws_cognito/__init__.py +825 -4
- aws_cdk/aws_connect/__init__.py +429 -0
- aws_cdk/aws_customerprofiles/__init__.py +3148 -0
- aws_cdk/aws_ec2/__init__.py +872 -5
- aws_cdk/aws_ecs/__init__.py +12 -7
- aws_cdk/aws_eks/__init__.py +709 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +309 -55
- aws_cdk/aws_events/__init__.py +515 -8
- aws_cdk/aws_iot/__init__.py +42 -4
- aws_cdk/aws_iotfleetwise/__init__.py +510 -0
- aws_cdk/aws_iotsitewise/__init__.py +156 -0
- aws_cdk/aws_lambda/__init__.py +14 -8
- aws_cdk/aws_lambda_event_sources/__init__.py +2 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +11 -11
- aws_cdk/aws_m2/__init__.py +289 -0
- 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 +3 -1
- aws_cdk/aws_quicksight/__init__.py +8270 -10
- aws_cdk/aws_rbin/__init__.py +53 -34
- aws_cdk/aws_rds/__init__.py +140 -8
- aws_cdk/aws_resourcegroups/__init__.py +349 -0
- aws_cdk/aws_route53_targets/__init__.py +82 -0
- aws_cdk/aws_route53resolver/__init__.py +15 -6
- aws_cdk/aws_s3express/__init__.py +403 -2
- aws_cdk/aws_sagemaker/__init__.py +124 -112
- aws_cdk/aws_ses/__init__.py +79 -41
- aws_cdk/aws_wisdom/__init__.py +4713 -172
- aws_cdk/aws_workspacesweb/__init__.py +1024 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.171.1.dist-info → aws_cdk_lib-2.172.0.dist-info}/top_level.txt +0 -0
|
@@ -64,6 +64,7 @@ from .. import (
|
|
|
64
64
|
IInspectable as _IInspectable_c2943556,
|
|
65
65
|
IResolvable as _IResolvable_da3f097b,
|
|
66
66
|
ITaggable as _ITaggable_36806126,
|
|
67
|
+
ITaggableV2 as _ITaggableV2_4e6798f8,
|
|
67
68
|
TagManager as _TagManager_0a598cb3,
|
|
68
69
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
69
70
|
)
|
|
@@ -2599,6 +2600,7 @@ class CfnDecoderManifest(
|
|
|
2599
2600
|
name="name",
|
|
2600
2601
|
|
|
2601
2602
|
# the properties below are optional
|
|
2603
|
+
default_for_unmapped_signals="defaultForUnmappedSignals",
|
|
2602
2604
|
description="description",
|
|
2603
2605
|
network_interfaces=[iotfleetwise.CfnDecoderManifest.NetworkInterfacesItemsProperty(
|
|
2604
2606
|
interface_id="interfaceId",
|
|
@@ -2671,6 +2673,7 @@ class CfnDecoderManifest(
|
|
|
2671
2673
|
*,
|
|
2672
2674
|
model_manifest_arn: builtins.str,
|
|
2673
2675
|
name: builtins.str,
|
|
2676
|
+
default_for_unmapped_signals: typing.Optional[builtins.str] = None,
|
|
2674
2677
|
description: typing.Optional[builtins.str] = None,
|
|
2675
2678
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDecoderManifest.NetworkInterfacesItemsProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2676
2679
|
signal_decoders: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDecoderManifest.SignalDecodersItemsProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -2682,6 +2685,7 @@ class CfnDecoderManifest(
|
|
|
2682
2685
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2683
2686
|
:param model_manifest_arn: The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
|
|
2684
2687
|
:param name: The name of the decoder manifest.
|
|
2688
|
+
:param default_for_unmapped_signals:
|
|
2685
2689
|
:param description: (Optional) A brief description of the decoder manifest.
|
|
2686
2690
|
:param network_interfaces: (Optional) A list of information about available network interfaces.
|
|
2687
2691
|
:param signal_decoders: (Optional) A list of information about signal decoders.
|
|
@@ -2695,6 +2699,7 @@ class CfnDecoderManifest(
|
|
|
2695
2699
|
props = CfnDecoderManifestProps(
|
|
2696
2700
|
model_manifest_arn=model_manifest_arn,
|
|
2697
2701
|
name=name,
|
|
2702
|
+
default_for_unmapped_signals=default_for_unmapped_signals,
|
|
2698
2703
|
description=description,
|
|
2699
2704
|
network_interfaces=network_interfaces,
|
|
2700
2705
|
signal_decoders=signal_decoders,
|
|
@@ -2798,6 +2803,21 @@ class CfnDecoderManifest(
|
|
|
2798
2803
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2799
2804
|
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2800
2805
|
|
|
2806
|
+
@builtins.property
|
|
2807
|
+
@jsii.member(jsii_name="defaultForUnmappedSignals")
|
|
2808
|
+
def default_for_unmapped_signals(self) -> typing.Optional[builtins.str]:
|
|
2809
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "defaultForUnmappedSignals"))
|
|
2810
|
+
|
|
2811
|
+
@default_for_unmapped_signals.setter
|
|
2812
|
+
def default_for_unmapped_signals(
|
|
2813
|
+
self,
|
|
2814
|
+
value: typing.Optional[builtins.str],
|
|
2815
|
+
) -> None:
|
|
2816
|
+
if __debug__:
|
|
2817
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3d210b3f11bc1efe8c19f629b502c0e1e1fbcf1c23ae2d514eb28d3b59482cfc)
|
|
2818
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2819
|
+
jsii.set(self, "defaultForUnmappedSignals", value) # pyright: ignore[reportArgumentType]
|
|
2820
|
+
|
|
2801
2821
|
@builtins.property
|
|
2802
2822
|
@jsii.member(jsii_name="description")
|
|
2803
2823
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -4208,6 +4228,7 @@ class CfnDecoderManifest(
|
|
|
4208
4228
|
name_mapping={
|
|
4209
4229
|
"model_manifest_arn": "modelManifestArn",
|
|
4210
4230
|
"name": "name",
|
|
4231
|
+
"default_for_unmapped_signals": "defaultForUnmappedSignals",
|
|
4211
4232
|
"description": "description",
|
|
4212
4233
|
"network_interfaces": "networkInterfaces",
|
|
4213
4234
|
"signal_decoders": "signalDecoders",
|
|
@@ -4221,6 +4242,7 @@ class CfnDecoderManifestProps:
|
|
|
4221
4242
|
*,
|
|
4222
4243
|
model_manifest_arn: builtins.str,
|
|
4223
4244
|
name: builtins.str,
|
|
4245
|
+
default_for_unmapped_signals: typing.Optional[builtins.str] = None,
|
|
4224
4246
|
description: typing.Optional[builtins.str] = None,
|
|
4225
4247
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.NetworkInterfacesItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4226
4248
|
signal_decoders: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.SignalDecodersItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -4231,6 +4253,7 @@ class CfnDecoderManifestProps:
|
|
|
4231
4253
|
|
|
4232
4254
|
:param model_manifest_arn: The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
|
|
4233
4255
|
:param name: The name of the decoder manifest.
|
|
4256
|
+
:param default_for_unmapped_signals:
|
|
4234
4257
|
:param description: (Optional) A brief description of the decoder manifest.
|
|
4235
4258
|
:param network_interfaces: (Optional) A list of information about available network interfaces.
|
|
4236
4259
|
:param signal_decoders: (Optional) A list of information about signal decoders.
|
|
@@ -4251,6 +4274,7 @@ class CfnDecoderManifestProps:
|
|
|
4251
4274
|
name="name",
|
|
4252
4275
|
|
|
4253
4276
|
# the properties below are optional
|
|
4277
|
+
default_for_unmapped_signals="defaultForUnmappedSignals",
|
|
4254
4278
|
description="description",
|
|
4255
4279
|
network_interfaces=[iotfleetwise.CfnDecoderManifest.NetworkInterfacesItemsProperty(
|
|
4256
4280
|
interface_id="interfaceId",
|
|
@@ -4319,6 +4343,7 @@ class CfnDecoderManifestProps:
|
|
|
4319
4343
|
type_hints = typing.get_type_hints(_typecheckingstub__1be5cfb3ca0441a2fdb0856303c08c4449592f7472588f5c0659c42af4d89e2c)
|
|
4320
4344
|
check_type(argname="argument model_manifest_arn", value=model_manifest_arn, expected_type=type_hints["model_manifest_arn"])
|
|
4321
4345
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4346
|
+
check_type(argname="argument default_for_unmapped_signals", value=default_for_unmapped_signals, expected_type=type_hints["default_for_unmapped_signals"])
|
|
4322
4347
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4323
4348
|
check_type(argname="argument network_interfaces", value=network_interfaces, expected_type=type_hints["network_interfaces"])
|
|
4324
4349
|
check_type(argname="argument signal_decoders", value=signal_decoders, expected_type=type_hints["signal_decoders"])
|
|
@@ -4328,6 +4353,8 @@ class CfnDecoderManifestProps:
|
|
|
4328
4353
|
"model_manifest_arn": model_manifest_arn,
|
|
4329
4354
|
"name": name,
|
|
4330
4355
|
}
|
|
4356
|
+
if default_for_unmapped_signals is not None:
|
|
4357
|
+
self._values["default_for_unmapped_signals"] = default_for_unmapped_signals
|
|
4331
4358
|
if description is not None:
|
|
4332
4359
|
self._values["description"] = description
|
|
4333
4360
|
if network_interfaces is not None:
|
|
@@ -4359,6 +4386,14 @@ class CfnDecoderManifestProps:
|
|
|
4359
4386
|
assert result is not None, "Required property 'name' is missing"
|
|
4360
4387
|
return typing.cast(builtins.str, result)
|
|
4361
4388
|
|
|
4389
|
+
@builtins.property
|
|
4390
|
+
def default_for_unmapped_signals(self) -> typing.Optional[builtins.str]:
|
|
4391
|
+
'''
|
|
4392
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-decodermanifest.html#cfn-iotfleetwise-decodermanifest-defaultforunmappedsignals
|
|
4393
|
+
'''
|
|
4394
|
+
result = self._values.get("default_for_unmapped_signals")
|
|
4395
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4396
|
+
|
|
4362
4397
|
@builtins.property
|
|
4363
4398
|
def description(self) -> typing.Optional[builtins.str]:
|
|
4364
4399
|
'''(Optional) A brief description of the decoder manifest.
|
|
@@ -6471,6 +6506,389 @@ class CfnSignalCatalogProps:
|
|
|
6471
6506
|
)
|
|
6472
6507
|
|
|
6473
6508
|
|
|
6509
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
6510
|
+
class CfnStateTemplate(
|
|
6511
|
+
_CfnResource_9df397a6,
|
|
6512
|
+
metaclass=jsii.JSIIMeta,
|
|
6513
|
+
jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnStateTemplate",
|
|
6514
|
+
):
|
|
6515
|
+
'''Definition of AWS::IoTFleetWise::StateTemplate Resource Type.
|
|
6516
|
+
|
|
6517
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html
|
|
6518
|
+
:cloudformationResource: AWS::IoTFleetWise::StateTemplate
|
|
6519
|
+
:exampleMetadata: fixture=_generated
|
|
6520
|
+
|
|
6521
|
+
Example::
|
|
6522
|
+
|
|
6523
|
+
# The code below shows an example of how to instantiate this type.
|
|
6524
|
+
# The values are placeholders you should change.
|
|
6525
|
+
from aws_cdk import aws_iotfleetwise as iotfleetwise
|
|
6526
|
+
|
|
6527
|
+
cfn_state_template = iotfleetwise.CfnStateTemplate(self, "MyCfnStateTemplate",
|
|
6528
|
+
name="name",
|
|
6529
|
+
signal_catalog_arn="signalCatalogArn",
|
|
6530
|
+
state_template_properties=["stateTemplateProperties"],
|
|
6531
|
+
|
|
6532
|
+
# the properties below are optional
|
|
6533
|
+
data_extra_dimensions=["dataExtraDimensions"],
|
|
6534
|
+
description="description",
|
|
6535
|
+
metadata_extra_dimensions=["metadataExtraDimensions"],
|
|
6536
|
+
tags=[CfnTag(
|
|
6537
|
+
key="key",
|
|
6538
|
+
value="value"
|
|
6539
|
+
)]
|
|
6540
|
+
)
|
|
6541
|
+
'''
|
|
6542
|
+
|
|
6543
|
+
def __init__(
|
|
6544
|
+
self,
|
|
6545
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6546
|
+
id: builtins.str,
|
|
6547
|
+
*,
|
|
6548
|
+
name: builtins.str,
|
|
6549
|
+
signal_catalog_arn: builtins.str,
|
|
6550
|
+
state_template_properties: typing.Sequence[builtins.str],
|
|
6551
|
+
data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6552
|
+
description: typing.Optional[builtins.str] = None,
|
|
6553
|
+
metadata_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6554
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6555
|
+
) -> None:
|
|
6556
|
+
'''
|
|
6557
|
+
:param scope: Scope in which this resource is defined.
|
|
6558
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
6559
|
+
:param name:
|
|
6560
|
+
:param signal_catalog_arn:
|
|
6561
|
+
:param state_template_properties:
|
|
6562
|
+
:param data_extra_dimensions:
|
|
6563
|
+
:param description:
|
|
6564
|
+
:param metadata_extra_dimensions:
|
|
6565
|
+
:param tags:
|
|
6566
|
+
'''
|
|
6567
|
+
if __debug__:
|
|
6568
|
+
type_hints = typing.get_type_hints(_typecheckingstub__abb7c39bd72174c6927a0144336547ba8eb6d6e1a1e3b03c36137d528cc0517e)
|
|
6569
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
6570
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
6571
|
+
props = CfnStateTemplateProps(
|
|
6572
|
+
name=name,
|
|
6573
|
+
signal_catalog_arn=signal_catalog_arn,
|
|
6574
|
+
state_template_properties=state_template_properties,
|
|
6575
|
+
data_extra_dimensions=data_extra_dimensions,
|
|
6576
|
+
description=description,
|
|
6577
|
+
metadata_extra_dimensions=metadata_extra_dimensions,
|
|
6578
|
+
tags=tags,
|
|
6579
|
+
)
|
|
6580
|
+
|
|
6581
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
6582
|
+
|
|
6583
|
+
@jsii.member(jsii_name="inspect")
|
|
6584
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
6585
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
6586
|
+
|
|
6587
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
6588
|
+
'''
|
|
6589
|
+
if __debug__:
|
|
6590
|
+
type_hints = typing.get_type_hints(_typecheckingstub__023876b0892019068eae11329147db15c493a19f3c3aaa1f07c72970b12e3bda)
|
|
6591
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
6592
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
6593
|
+
|
|
6594
|
+
@jsii.member(jsii_name="renderProperties")
|
|
6595
|
+
def _render_properties(
|
|
6596
|
+
self,
|
|
6597
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6598
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
6599
|
+
'''
|
|
6600
|
+
:param props: -
|
|
6601
|
+
'''
|
|
6602
|
+
if __debug__:
|
|
6603
|
+
type_hints = typing.get_type_hints(_typecheckingstub__240ffae6c05a011b97e9e81ad3f007590f273d8b4efcb1e11ad4b4323e088ff0)
|
|
6604
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
6605
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
6606
|
+
|
|
6607
|
+
@jsii.python.classproperty
|
|
6608
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
6609
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
6610
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
6611
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
6612
|
+
|
|
6613
|
+
@builtins.property
|
|
6614
|
+
@jsii.member(jsii_name="attrArn")
|
|
6615
|
+
def attr_arn(self) -> builtins.str:
|
|
6616
|
+
'''
|
|
6617
|
+
:cloudformationAttribute: Arn
|
|
6618
|
+
'''
|
|
6619
|
+
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
6620
|
+
|
|
6621
|
+
@builtins.property
|
|
6622
|
+
@jsii.member(jsii_name="attrCreationTime")
|
|
6623
|
+
def attr_creation_time(self) -> builtins.str:
|
|
6624
|
+
'''
|
|
6625
|
+
:cloudformationAttribute: CreationTime
|
|
6626
|
+
'''
|
|
6627
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
6628
|
+
|
|
6629
|
+
@builtins.property
|
|
6630
|
+
@jsii.member(jsii_name="attrLastModificationTime")
|
|
6631
|
+
def attr_last_modification_time(self) -> builtins.str:
|
|
6632
|
+
'''
|
|
6633
|
+
:cloudformationAttribute: LastModificationTime
|
|
6634
|
+
'''
|
|
6635
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLastModificationTime"))
|
|
6636
|
+
|
|
6637
|
+
@builtins.property
|
|
6638
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
6639
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
6640
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
6641
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
6642
|
+
|
|
6643
|
+
@builtins.property
|
|
6644
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
6645
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
6646
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
6647
|
+
|
|
6648
|
+
@builtins.property
|
|
6649
|
+
@jsii.member(jsii_name="name")
|
|
6650
|
+
def name(self) -> builtins.str:
|
|
6651
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
6652
|
+
|
|
6653
|
+
@name.setter
|
|
6654
|
+
def name(self, value: builtins.str) -> None:
|
|
6655
|
+
if __debug__:
|
|
6656
|
+
type_hints = typing.get_type_hints(_typecheckingstub__36385bddc5b397b7f956fb1c0b04069c9ebf5960aab30ef12f2493e28595e1f1)
|
|
6657
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6658
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
6659
|
+
|
|
6660
|
+
@builtins.property
|
|
6661
|
+
@jsii.member(jsii_name="signalCatalogArn")
|
|
6662
|
+
def signal_catalog_arn(self) -> builtins.str:
|
|
6663
|
+
return typing.cast(builtins.str, jsii.get(self, "signalCatalogArn"))
|
|
6664
|
+
|
|
6665
|
+
@signal_catalog_arn.setter
|
|
6666
|
+
def signal_catalog_arn(self, value: builtins.str) -> None:
|
|
6667
|
+
if __debug__:
|
|
6668
|
+
type_hints = typing.get_type_hints(_typecheckingstub__27a840727f29e62be6bbd510f866836050b8857803605fea1417134dea96d266)
|
|
6669
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6670
|
+
jsii.set(self, "signalCatalogArn", value) # pyright: ignore[reportArgumentType]
|
|
6671
|
+
|
|
6672
|
+
@builtins.property
|
|
6673
|
+
@jsii.member(jsii_name="stateTemplateProperties")
|
|
6674
|
+
def state_template_properties(self) -> typing.List[builtins.str]:
|
|
6675
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "stateTemplateProperties"))
|
|
6676
|
+
|
|
6677
|
+
@state_template_properties.setter
|
|
6678
|
+
def state_template_properties(self, value: typing.List[builtins.str]) -> None:
|
|
6679
|
+
if __debug__:
|
|
6680
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5965939ee8e58624ca94131bf3a1a550feb2416fc464e55dbb973bea62bc3ea0)
|
|
6681
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6682
|
+
jsii.set(self, "stateTemplateProperties", value) # pyright: ignore[reportArgumentType]
|
|
6683
|
+
|
|
6684
|
+
@builtins.property
|
|
6685
|
+
@jsii.member(jsii_name="dataExtraDimensions")
|
|
6686
|
+
def data_extra_dimensions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
6687
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "dataExtraDimensions"))
|
|
6688
|
+
|
|
6689
|
+
@data_extra_dimensions.setter
|
|
6690
|
+
def data_extra_dimensions(
|
|
6691
|
+
self,
|
|
6692
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
6693
|
+
) -> None:
|
|
6694
|
+
if __debug__:
|
|
6695
|
+
type_hints = typing.get_type_hints(_typecheckingstub__19421b7dfae3a07d6c498f1f38a62544c446c06d6e43b6a9ae138bca4a765472)
|
|
6696
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6697
|
+
jsii.set(self, "dataExtraDimensions", value) # pyright: ignore[reportArgumentType]
|
|
6698
|
+
|
|
6699
|
+
@builtins.property
|
|
6700
|
+
@jsii.member(jsii_name="description")
|
|
6701
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
6702
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
6703
|
+
|
|
6704
|
+
@description.setter
|
|
6705
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
6706
|
+
if __debug__:
|
|
6707
|
+
type_hints = typing.get_type_hints(_typecheckingstub__efec27c415a19def60c4cdf390d49a1cfe3a88e80f44e798e0a30ca90f7f44b2)
|
|
6708
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6709
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
6710
|
+
|
|
6711
|
+
@builtins.property
|
|
6712
|
+
@jsii.member(jsii_name="metadataExtraDimensions")
|
|
6713
|
+
def metadata_extra_dimensions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
6714
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "metadataExtraDimensions"))
|
|
6715
|
+
|
|
6716
|
+
@metadata_extra_dimensions.setter
|
|
6717
|
+
def metadata_extra_dimensions(
|
|
6718
|
+
self,
|
|
6719
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
6720
|
+
) -> None:
|
|
6721
|
+
if __debug__:
|
|
6722
|
+
type_hints = typing.get_type_hints(_typecheckingstub__54306b96085449c8906b2e1feda97b6033703ecaf9d0f0ba4130192827b1521a)
|
|
6723
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6724
|
+
jsii.set(self, "metadataExtraDimensions", value) # pyright: ignore[reportArgumentType]
|
|
6725
|
+
|
|
6726
|
+
@builtins.property
|
|
6727
|
+
@jsii.member(jsii_name="tags")
|
|
6728
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
6729
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
6730
|
+
|
|
6731
|
+
@tags.setter
|
|
6732
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
6733
|
+
if __debug__:
|
|
6734
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5ef4f2ac55a1c6e0b59ca37f1b5ee09c02856c397d9352b10181d8135c6c0f1a)
|
|
6735
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6736
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
6737
|
+
|
|
6738
|
+
|
|
6739
|
+
@jsii.data_type(
|
|
6740
|
+
jsii_type="aws-cdk-lib.aws_iotfleetwise.CfnStateTemplateProps",
|
|
6741
|
+
jsii_struct_bases=[],
|
|
6742
|
+
name_mapping={
|
|
6743
|
+
"name": "name",
|
|
6744
|
+
"signal_catalog_arn": "signalCatalogArn",
|
|
6745
|
+
"state_template_properties": "stateTemplateProperties",
|
|
6746
|
+
"data_extra_dimensions": "dataExtraDimensions",
|
|
6747
|
+
"description": "description",
|
|
6748
|
+
"metadata_extra_dimensions": "metadataExtraDimensions",
|
|
6749
|
+
"tags": "tags",
|
|
6750
|
+
},
|
|
6751
|
+
)
|
|
6752
|
+
class CfnStateTemplateProps:
|
|
6753
|
+
def __init__(
|
|
6754
|
+
self,
|
|
6755
|
+
*,
|
|
6756
|
+
name: builtins.str,
|
|
6757
|
+
signal_catalog_arn: builtins.str,
|
|
6758
|
+
state_template_properties: typing.Sequence[builtins.str],
|
|
6759
|
+
data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6760
|
+
description: typing.Optional[builtins.str] = None,
|
|
6761
|
+
metadata_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6762
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6763
|
+
) -> None:
|
|
6764
|
+
'''Properties for defining a ``CfnStateTemplate``.
|
|
6765
|
+
|
|
6766
|
+
:param name:
|
|
6767
|
+
:param signal_catalog_arn:
|
|
6768
|
+
:param state_template_properties:
|
|
6769
|
+
:param data_extra_dimensions:
|
|
6770
|
+
:param description:
|
|
6771
|
+
:param metadata_extra_dimensions:
|
|
6772
|
+
:param tags:
|
|
6773
|
+
|
|
6774
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html
|
|
6775
|
+
:exampleMetadata: fixture=_generated
|
|
6776
|
+
|
|
6777
|
+
Example::
|
|
6778
|
+
|
|
6779
|
+
# The code below shows an example of how to instantiate this type.
|
|
6780
|
+
# The values are placeholders you should change.
|
|
6781
|
+
from aws_cdk import aws_iotfleetwise as iotfleetwise
|
|
6782
|
+
|
|
6783
|
+
cfn_state_template_props = iotfleetwise.CfnStateTemplateProps(
|
|
6784
|
+
name="name",
|
|
6785
|
+
signal_catalog_arn="signalCatalogArn",
|
|
6786
|
+
state_template_properties=["stateTemplateProperties"],
|
|
6787
|
+
|
|
6788
|
+
# the properties below are optional
|
|
6789
|
+
data_extra_dimensions=["dataExtraDimensions"],
|
|
6790
|
+
description="description",
|
|
6791
|
+
metadata_extra_dimensions=["metadataExtraDimensions"],
|
|
6792
|
+
tags=[CfnTag(
|
|
6793
|
+
key="key",
|
|
6794
|
+
value="value"
|
|
6795
|
+
)]
|
|
6796
|
+
)
|
|
6797
|
+
'''
|
|
6798
|
+
if __debug__:
|
|
6799
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d460b80d8ef556736d4731940c4f3633bb3bc5319ff699845840b25f0e684be4)
|
|
6800
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
6801
|
+
check_type(argname="argument signal_catalog_arn", value=signal_catalog_arn, expected_type=type_hints["signal_catalog_arn"])
|
|
6802
|
+
check_type(argname="argument state_template_properties", value=state_template_properties, expected_type=type_hints["state_template_properties"])
|
|
6803
|
+
check_type(argname="argument data_extra_dimensions", value=data_extra_dimensions, expected_type=type_hints["data_extra_dimensions"])
|
|
6804
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
6805
|
+
check_type(argname="argument metadata_extra_dimensions", value=metadata_extra_dimensions, expected_type=type_hints["metadata_extra_dimensions"])
|
|
6806
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
6807
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
6808
|
+
"name": name,
|
|
6809
|
+
"signal_catalog_arn": signal_catalog_arn,
|
|
6810
|
+
"state_template_properties": state_template_properties,
|
|
6811
|
+
}
|
|
6812
|
+
if data_extra_dimensions is not None:
|
|
6813
|
+
self._values["data_extra_dimensions"] = data_extra_dimensions
|
|
6814
|
+
if description is not None:
|
|
6815
|
+
self._values["description"] = description
|
|
6816
|
+
if metadata_extra_dimensions is not None:
|
|
6817
|
+
self._values["metadata_extra_dimensions"] = metadata_extra_dimensions
|
|
6818
|
+
if tags is not None:
|
|
6819
|
+
self._values["tags"] = tags
|
|
6820
|
+
|
|
6821
|
+
@builtins.property
|
|
6822
|
+
def name(self) -> builtins.str:
|
|
6823
|
+
'''
|
|
6824
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-name
|
|
6825
|
+
'''
|
|
6826
|
+
result = self._values.get("name")
|
|
6827
|
+
assert result is not None, "Required property 'name' is missing"
|
|
6828
|
+
return typing.cast(builtins.str, result)
|
|
6829
|
+
|
|
6830
|
+
@builtins.property
|
|
6831
|
+
def signal_catalog_arn(self) -> builtins.str:
|
|
6832
|
+
'''
|
|
6833
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-signalcatalogarn
|
|
6834
|
+
'''
|
|
6835
|
+
result = self._values.get("signal_catalog_arn")
|
|
6836
|
+
assert result is not None, "Required property 'signal_catalog_arn' is missing"
|
|
6837
|
+
return typing.cast(builtins.str, result)
|
|
6838
|
+
|
|
6839
|
+
@builtins.property
|
|
6840
|
+
def state_template_properties(self) -> typing.List[builtins.str]:
|
|
6841
|
+
'''
|
|
6842
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-statetemplateproperties
|
|
6843
|
+
'''
|
|
6844
|
+
result = self._values.get("state_template_properties")
|
|
6845
|
+
assert result is not None, "Required property 'state_template_properties' is missing"
|
|
6846
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
6847
|
+
|
|
6848
|
+
@builtins.property
|
|
6849
|
+
def data_extra_dimensions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
6850
|
+
'''
|
|
6851
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-dataextradimensions
|
|
6852
|
+
'''
|
|
6853
|
+
result = self._values.get("data_extra_dimensions")
|
|
6854
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
6855
|
+
|
|
6856
|
+
@builtins.property
|
|
6857
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
6858
|
+
'''
|
|
6859
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-description
|
|
6860
|
+
'''
|
|
6861
|
+
result = self._values.get("description")
|
|
6862
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6863
|
+
|
|
6864
|
+
@builtins.property
|
|
6865
|
+
def metadata_extra_dimensions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
6866
|
+
'''
|
|
6867
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-metadataextradimensions
|
|
6868
|
+
'''
|
|
6869
|
+
result = self._values.get("metadata_extra_dimensions")
|
|
6870
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
6871
|
+
|
|
6872
|
+
@builtins.property
|
|
6873
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
6874
|
+
'''
|
|
6875
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#cfn-iotfleetwise-statetemplate-tags
|
|
6876
|
+
'''
|
|
6877
|
+
result = self._values.get("tags")
|
|
6878
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
6879
|
+
|
|
6880
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6881
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6882
|
+
|
|
6883
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6884
|
+
return not (rhs == self)
|
|
6885
|
+
|
|
6886
|
+
def __repr__(self) -> str:
|
|
6887
|
+
return "CfnStateTemplateProps(%s)" % ", ".join(
|
|
6888
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6889
|
+
)
|
|
6890
|
+
|
|
6891
|
+
|
|
6474
6892
|
@jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
|
|
6475
6893
|
class CfnVehicle(
|
|
6476
6894
|
_CfnResource_9df397a6,
|
|
@@ -6863,6 +7281,8 @@ __all__ = [
|
|
|
6863
7281
|
"CfnModelManifestProps",
|
|
6864
7282
|
"CfnSignalCatalog",
|
|
6865
7283
|
"CfnSignalCatalogProps",
|
|
7284
|
+
"CfnStateTemplate",
|
|
7285
|
+
"CfnStateTemplateProps",
|
|
6866
7286
|
"CfnVehicle",
|
|
6867
7287
|
"CfnVehicleProps",
|
|
6868
7288
|
]
|
|
@@ -7198,6 +7618,7 @@ def _typecheckingstub__bd0d8efce6baca0fa606fb0cf95bebcdeda196fcde2fb7e1854233433
|
|
|
7198
7618
|
*,
|
|
7199
7619
|
model_manifest_arn: builtins.str,
|
|
7200
7620
|
name: builtins.str,
|
|
7621
|
+
default_for_unmapped_signals: typing.Optional[builtins.str] = None,
|
|
7201
7622
|
description: typing.Optional[builtins.str] = None,
|
|
7202
7623
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.NetworkInterfacesItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7203
7624
|
signal_decoders: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.SignalDecodersItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -7231,6 +7652,12 @@ def _typecheckingstub__9a5a43cce0da85f8ef5934babccfc93088317c19ae303a38ae3adc573
|
|
|
7231
7652
|
"""Type checking stubs"""
|
|
7232
7653
|
pass
|
|
7233
7654
|
|
|
7655
|
+
def _typecheckingstub__3d210b3f11bc1efe8c19f629b502c0e1e1fbcf1c23ae2d514eb28d3b59482cfc(
|
|
7656
|
+
value: typing.Optional[builtins.str],
|
|
7657
|
+
) -> None:
|
|
7658
|
+
"""Type checking stubs"""
|
|
7659
|
+
pass
|
|
7660
|
+
|
|
7234
7661
|
def _typecheckingstub__b1e4501ad7312a6dac9b29817aed239a25a724386677541e036223da190a2d9b(
|
|
7235
7662
|
value: typing.Optional[builtins.str],
|
|
7236
7663
|
) -> None:
|
|
@@ -7375,6 +7802,7 @@ def _typecheckingstub__1be5cfb3ca0441a2fdb0856303c08c4449592f7472588f5c0659c42af
|
|
|
7375
7802
|
*,
|
|
7376
7803
|
model_manifest_arn: builtins.str,
|
|
7377
7804
|
name: builtins.str,
|
|
7805
|
+
default_for_unmapped_signals: typing.Optional[builtins.str] = None,
|
|
7378
7806
|
description: typing.Optional[builtins.str] = None,
|
|
7379
7807
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.NetworkInterfacesItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7380
7808
|
signal_decoders: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDecoderManifest.SignalDecodersItemsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -7653,6 +8081,88 @@ def _typecheckingstub__9bd41091fa8f71325a3bfb8a9da99b2637a4ed068a31b5c7427bae209
|
|
|
7653
8081
|
"""Type checking stubs"""
|
|
7654
8082
|
pass
|
|
7655
8083
|
|
|
8084
|
+
def _typecheckingstub__abb7c39bd72174c6927a0144336547ba8eb6d6e1a1e3b03c36137d528cc0517e(
|
|
8085
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
8086
|
+
id: builtins.str,
|
|
8087
|
+
*,
|
|
8088
|
+
name: builtins.str,
|
|
8089
|
+
signal_catalog_arn: builtins.str,
|
|
8090
|
+
state_template_properties: typing.Sequence[builtins.str],
|
|
8091
|
+
data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8092
|
+
description: typing.Optional[builtins.str] = None,
|
|
8093
|
+
metadata_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8094
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8095
|
+
) -> None:
|
|
8096
|
+
"""Type checking stubs"""
|
|
8097
|
+
pass
|
|
8098
|
+
|
|
8099
|
+
def _typecheckingstub__023876b0892019068eae11329147db15c493a19f3c3aaa1f07c72970b12e3bda(
|
|
8100
|
+
inspector: _TreeInspector_488e0dd5,
|
|
8101
|
+
) -> None:
|
|
8102
|
+
"""Type checking stubs"""
|
|
8103
|
+
pass
|
|
8104
|
+
|
|
8105
|
+
def _typecheckingstub__240ffae6c05a011b97e9e81ad3f007590f273d8b4efcb1e11ad4b4323e088ff0(
|
|
8106
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
8107
|
+
) -> None:
|
|
8108
|
+
"""Type checking stubs"""
|
|
8109
|
+
pass
|
|
8110
|
+
|
|
8111
|
+
def _typecheckingstub__36385bddc5b397b7f956fb1c0b04069c9ebf5960aab30ef12f2493e28595e1f1(
|
|
8112
|
+
value: builtins.str,
|
|
8113
|
+
) -> None:
|
|
8114
|
+
"""Type checking stubs"""
|
|
8115
|
+
pass
|
|
8116
|
+
|
|
8117
|
+
def _typecheckingstub__27a840727f29e62be6bbd510f866836050b8857803605fea1417134dea96d266(
|
|
8118
|
+
value: builtins.str,
|
|
8119
|
+
) -> None:
|
|
8120
|
+
"""Type checking stubs"""
|
|
8121
|
+
pass
|
|
8122
|
+
|
|
8123
|
+
def _typecheckingstub__5965939ee8e58624ca94131bf3a1a550feb2416fc464e55dbb973bea62bc3ea0(
|
|
8124
|
+
value: typing.List[builtins.str],
|
|
8125
|
+
) -> None:
|
|
8126
|
+
"""Type checking stubs"""
|
|
8127
|
+
pass
|
|
8128
|
+
|
|
8129
|
+
def _typecheckingstub__19421b7dfae3a07d6c498f1f38a62544c446c06d6e43b6a9ae138bca4a765472(
|
|
8130
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
8131
|
+
) -> None:
|
|
8132
|
+
"""Type checking stubs"""
|
|
8133
|
+
pass
|
|
8134
|
+
|
|
8135
|
+
def _typecheckingstub__efec27c415a19def60c4cdf390d49a1cfe3a88e80f44e798e0a30ca90f7f44b2(
|
|
8136
|
+
value: typing.Optional[builtins.str],
|
|
8137
|
+
) -> None:
|
|
8138
|
+
"""Type checking stubs"""
|
|
8139
|
+
pass
|
|
8140
|
+
|
|
8141
|
+
def _typecheckingstub__54306b96085449c8906b2e1feda97b6033703ecaf9d0f0ba4130192827b1521a(
|
|
8142
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
8143
|
+
) -> None:
|
|
8144
|
+
"""Type checking stubs"""
|
|
8145
|
+
pass
|
|
8146
|
+
|
|
8147
|
+
def _typecheckingstub__5ef4f2ac55a1c6e0b59ca37f1b5ee09c02856c397d9352b10181d8135c6c0f1a(
|
|
8148
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
8149
|
+
) -> None:
|
|
8150
|
+
"""Type checking stubs"""
|
|
8151
|
+
pass
|
|
8152
|
+
|
|
8153
|
+
def _typecheckingstub__d460b80d8ef556736d4731940c4f3633bb3bc5319ff699845840b25f0e684be4(
|
|
8154
|
+
*,
|
|
8155
|
+
name: builtins.str,
|
|
8156
|
+
signal_catalog_arn: builtins.str,
|
|
8157
|
+
state_template_properties: typing.Sequence[builtins.str],
|
|
8158
|
+
data_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8159
|
+
description: typing.Optional[builtins.str] = None,
|
|
8160
|
+
metadata_extra_dimensions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8161
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8162
|
+
) -> None:
|
|
8163
|
+
"""Type checking stubs"""
|
|
8164
|
+
pass
|
|
8165
|
+
|
|
7656
8166
|
def _typecheckingstub__c7269c48709f71a558e1053c22bd1ef391024711944714eff09133981d39ff54(
|
|
7657
8167
|
scope: _constructs_77d1e7e8.Construct,
|
|
7658
8168
|
id: builtins.str,
|