aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.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.

Files changed (53) hide show
  1. aws_cdk/__init__.py +246 -62
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +1 -1
  5. aws_cdk/aws_appflow/__init__.py +205 -7
  6. aws_cdk/aws_appstream/__init__.py +33 -28
  7. aws_cdk/aws_appsync/__init__.py +555 -71
  8. aws_cdk/aws_autoscaling/__init__.py +5 -11
  9. aws_cdk/aws_billingconductor/__init__.py +145 -1
  10. aws_cdk/aws_cleanrooms/__init__.py +1198 -86
  11. aws_cdk/aws_cloudformation/__init__.py +221 -55
  12. aws_cdk/aws_cloudwatch/__init__.py +325 -2
  13. aws_cdk/aws_cognito/__init__.py +9 -13
  14. aws_cdk/aws_config/__init__.py +68 -73
  15. aws_cdk/aws_connect/__init__.py +909 -164
  16. aws_cdk/aws_customerprofiles/__init__.py +44 -0
  17. aws_cdk/aws_dms/__init__.py +198 -0
  18. aws_cdk/aws_ec2/__init__.py +593 -73
  19. aws_cdk/aws_ecr/__init__.py +7 -2
  20. aws_cdk/aws_ecs/__init__.py +2 -2
  21. aws_cdk/aws_efs/__init__.py +237 -0
  22. aws_cdk/aws_emr/__init__.py +232 -0
  23. aws_cdk/aws_entityresolution/__init__.py +1702 -0
  24. aws_cdk/aws_events/__init__.py +13 -18
  25. aws_cdk/aws_fms/__init__.py +3 -3
  26. aws_cdk/aws_gamelift/__init__.py +10 -15
  27. aws_cdk/aws_grafana/__init__.py +9 -5
  28. aws_cdk/aws_guardduty/__init__.py +272 -205
  29. aws_cdk/aws_iam/__init__.py +20 -18
  30. aws_cdk/aws_iotwireless/__init__.py +38 -54
  31. aws_cdk/aws_lakeformation/__init__.py +18 -6
  32. aws_cdk/aws_lambda/__init__.py +1 -1
  33. aws_cdk/aws_lightsail/__init__.py +225 -0
  34. aws_cdk/aws_lookoutequipment/__init__.py +4 -4
  35. aws_cdk/aws_macie/__init__.py +5 -3
  36. aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
  37. aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
  38. aws_cdk/aws_quicksight/__init__.py +189 -116
  39. aws_cdk/aws_rds/__init__.py +316 -9
  40. aws_cdk/aws_resiliencehub/__init__.py +38 -21
  41. aws_cdk/aws_route53resolver/__init__.py +429 -0
  42. aws_cdk/aws_sagemaker/__init__.py +34 -34
  43. aws_cdk/aws_stepfunctions/__init__.py +111 -14
  44. aws_cdk/aws_transfer/__init__.py +2 -2
  45. aws_cdk/aws_vpclattice/__init__.py +128 -120
  46. aws_cdk/aws_workspacesweb/__init__.py +3790 -0
  47. aws_cdk/region_info/__init__.py +49 -0
  48. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
  49. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
  50. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
@@ -6673,6 +6673,17 @@ class CfnQuickConnect(
6673
6673
  '''
6674
6674
  return typing.cast(builtins.str, jsii.get(self, "attrQuickConnectArn"))
6675
6675
 
6676
+ @builtins.property
6677
+ @jsii.member(jsii_name="attrQuickConnectType")
6678
+ def attr_quick_connect_type(self) -> builtins.str:
6679
+ '''The type of quick connect.
6680
+
6681
+ In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
6682
+
6683
+ :cloudformationAttribute: QuickConnectType
6684
+ '''
6685
+ return typing.cast(builtins.str, jsii.get(self, "attrQuickConnectType"))
6686
+
6676
6687
  @builtins.property
6677
6688
  @jsii.member(jsii_name="cfnProperties")
6678
6689
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -11654,191 +11665,801 @@ class CfnUserProps:
11654
11665
  )
11655
11666
 
11656
11667
 
11657
- __all__ = [
11658
- "CfnApprovedOrigin",
11659
- "CfnApprovedOriginProps",
11660
- "CfnContactFlow",
11661
- "CfnContactFlowModule",
11662
- "CfnContactFlowModuleProps",
11663
- "CfnContactFlowProps",
11664
- "CfnEvaluationForm",
11665
- "CfnEvaluationFormProps",
11666
- "CfnHoursOfOperation",
11667
- "CfnHoursOfOperationProps",
11668
- "CfnInstance",
11669
- "CfnInstanceProps",
11670
- "CfnInstanceStorageConfig",
11671
- "CfnInstanceStorageConfigProps",
11672
- "CfnIntegrationAssociation",
11673
- "CfnIntegrationAssociationProps",
11674
- "CfnPhoneNumber",
11675
- "CfnPhoneNumberProps",
11676
- "CfnPrompt",
11677
- "CfnPromptProps",
11678
- "CfnQueue",
11679
- "CfnQueueProps",
11680
- "CfnQuickConnect",
11681
- "CfnQuickConnectProps",
11682
- "CfnRoutingProfile",
11683
- "CfnRoutingProfileProps",
11684
- "CfnRule",
11685
- "CfnRuleProps",
11686
- "CfnSecurityKey",
11687
- "CfnSecurityKeyProps",
11688
- "CfnTaskTemplate",
11689
- "CfnTaskTemplateProps",
11690
- "CfnTrafficDistributionGroup",
11691
- "CfnTrafficDistributionGroupProps",
11692
- "CfnUser",
11693
- "CfnUserHierarchyGroup",
11694
- "CfnUserHierarchyGroupProps",
11695
- "CfnUserProps",
11696
- ]
11668
+ @jsii.implements(_IInspectable_c2943556)
11669
+ class CfnView(
11670
+ _CfnResource_9df397a6,
11671
+ metaclass=jsii.JSIIMeta,
11672
+ jsii_type="aws-cdk-lib.aws_connect.CfnView",
11673
+ ):
11674
+ '''Creates a customer-managed view in the published state within the specified instance.
11697
11675
 
11698
- publication.publish()
11676
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html
11677
+ :exampleMetadata: fixture=_generated
11699
11678
 
11700
- def _typecheckingstub__44955422cb4c00b338f45e52a0d4136fdcdb94c8e433595b636f468d589e514a(
11701
- scope: _constructs_77d1e7e8.Construct,
11702
- id: builtins.str,
11703
- *,
11704
- instance_id: builtins.str,
11705
- origin: builtins.str,
11706
- ) -> None:
11707
- """Type checking stubs"""
11708
- pass
11679
+ Example::
11709
11680
 
11710
- def _typecheckingstub__15b611bd9c5a92c253c2e2b0cba97b9f73bad0cfc8494953acb694fda143bba2(
11711
- inspector: _TreeInspector_488e0dd5,
11712
- ) -> None:
11713
- """Type checking stubs"""
11714
- pass
11681
+ # The code below shows an example of how to instantiate this type.
11682
+ # The values are placeholders you should change.
11683
+ from aws_cdk import aws_connect as connect
11684
+
11685
+ # template: Any
11686
+
11687
+ cfn_view = connect.CfnView(self, "MyCfnView",
11688
+ actions=["actions"],
11689
+ instance_arn="instanceArn",
11690
+ name="name",
11691
+ template=template,
11692
+
11693
+ # the properties below are optional
11694
+ description="description",
11695
+ tags=[CfnTag(
11696
+ key="key",
11697
+ value="value"
11698
+ )]
11699
+ )
11700
+ '''
11715
11701
 
11716
- def _typecheckingstub__bc2ef7b8d5a06b007fe66bb9f5b0208e869ed47a6e5af0d6bf354f4df2d4d6c8(
11717
- props: typing.Mapping[builtins.str, typing.Any],
11718
- ) -> None:
11719
- """Type checking stubs"""
11720
- pass
11702
+ def __init__(
11703
+ self,
11704
+ scope: _constructs_77d1e7e8.Construct,
11705
+ id: builtins.str,
11706
+ *,
11707
+ actions: typing.Sequence[builtins.str],
11708
+ instance_arn: builtins.str,
11709
+ name: builtins.str,
11710
+ template: typing.Any,
11711
+ description: typing.Optional[builtins.str] = None,
11712
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
11713
+ ) -> None:
11714
+ '''
11715
+ :param scope: Scope in which this resource is defined.
11716
+ :param id: Construct identifier for this resource (unique in its scope).
11717
+ :param actions: A list of actions possible from the view.
11718
+ :param instance_arn: The Amazon Resource Name (ARN) of the instance.
11719
+ :param name: The name of the view.
11720
+ :param template: The view template representing the structure of the view.
11721
+ :param description: The description of the view.
11722
+ :param tags: The tags associated with the view resource (not specific to view version).
11723
+ '''
11724
+ if __debug__:
11725
+ type_hints = typing.get_type_hints(_typecheckingstub__94b4f2f620952c31a829f98f6f735cb6b2bcb05a7aeec0d58a9bf353e42283a3)
11726
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
11727
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
11728
+ props = CfnViewProps(
11729
+ actions=actions,
11730
+ instance_arn=instance_arn,
11731
+ name=name,
11732
+ template=template,
11733
+ description=description,
11734
+ tags=tags,
11735
+ )
11721
11736
 
11722
- def _typecheckingstub__7fd219e5b157d40fbc4254297a9308245796269c824a72c0b9db3bad7013261c(
11723
- value: builtins.str,
11724
- ) -> None:
11725
- """Type checking stubs"""
11726
- pass
11737
+ jsii.create(self.__class__, self, [scope, id, props])
11727
11738
 
11728
- def _typecheckingstub__49fb9b02cf4a1b22d6433eac9cb35377d1877512b477dbf9c030fec47fb54f75(
11729
- value: builtins.str,
11730
- ) -> None:
11731
- """Type checking stubs"""
11732
- pass
11739
+ @jsii.member(jsii_name="inspect")
11740
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
11741
+ '''Examines the CloudFormation resource and discloses attributes.
11733
11742
 
11734
- def _typecheckingstub__437fb8bad3e7665288233ec7ee3b4db6669d85ab53efddb888b5d729979a4e2f(
11735
- *,
11736
- instance_id: builtins.str,
11737
- origin: builtins.str,
11738
- ) -> None:
11739
- """Type checking stubs"""
11740
- pass
11743
+ :param inspector: tree inspector to collect and process attributes.
11744
+ '''
11745
+ if __debug__:
11746
+ type_hints = typing.get_type_hints(_typecheckingstub__a4f4d449c39fb674cb2aee4444da15965f7a738d317d39c5795787870d91cb90)
11747
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
11748
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
11741
11749
 
11742
- def _typecheckingstub__bacec198fd7006a7e922c6b62694383eb7200d23c3f8da491f520191bdc8353f(
11743
- scope: _constructs_77d1e7e8.Construct,
11744
- id: builtins.str,
11745
- *,
11746
- content: builtins.str,
11747
- instance_arn: builtins.str,
11748
- name: builtins.str,
11749
- type: builtins.str,
11750
- description: typing.Optional[builtins.str] = None,
11751
- state: typing.Optional[builtins.str] = None,
11752
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
11753
- ) -> None:
11754
- """Type checking stubs"""
11755
- pass
11750
+ @jsii.member(jsii_name="renderProperties")
11751
+ def _render_properties(
11752
+ self,
11753
+ props: typing.Mapping[builtins.str, typing.Any],
11754
+ ) -> typing.Mapping[builtins.str, typing.Any]:
11755
+ '''
11756
+ :param props: -
11757
+ '''
11758
+ if __debug__:
11759
+ type_hints = typing.get_type_hints(_typecheckingstub__2f51d9f515dc52e659fd588b6b7c69855667a4bcb91e66e6243fb55b7ce6e6d6)
11760
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
11761
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
11756
11762
 
11757
- def _typecheckingstub__aca14ea5542ff9acc3dc06746c7580c88c1e0b75d66bf0ac0a8cd785404cc173(
11758
- inspector: _TreeInspector_488e0dd5,
11759
- ) -> None:
11760
- """Type checking stubs"""
11761
- pass
11763
+ @jsii.python.classproperty
11764
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
11765
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
11766
+ '''The CloudFormation resource type name for this resource class.'''
11767
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
11762
11768
 
11763
- def _typecheckingstub__f4b3abb60d405603981215ec7d659c3d8939dbf9b5de879c8d56dfd0631f9d5b(
11764
- props: typing.Mapping[builtins.str, typing.Any],
11765
- ) -> None:
11766
- """Type checking stubs"""
11767
- pass
11769
+ @builtins.property
11770
+ @jsii.member(jsii_name="attrViewArn")
11771
+ def attr_view_arn(self) -> builtins.str:
11772
+ '''The unqualified Amazon Resource Name (ARN) of the view.
11768
11773
 
11769
- def _typecheckingstub__4a517102f202efaced50f937df38d5374d2d8ae33c5659296852d677cbe73e2a(
11770
- value: builtins.str,
11771
- ) -> None:
11772
- """Type checking stubs"""
11773
- pass
11774
+ For example:
11774
11775
 
11775
- def _typecheckingstub__20f6a7aacca6b49f3791bf907484b7af427677a1079ea79db9a45489b963b9d0(
11776
- value: builtins.str,
11777
- ) -> None:
11778
- """Type checking stubs"""
11779
- pass
11776
+ ``arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000``
11780
11777
 
11781
- def _typecheckingstub__76f576a62faffae972ec30039ac3019bddb9b613e8dd2dce2b52723ba8a64dbc(
11782
- value: builtins.str,
11783
- ) -> None:
11784
- """Type checking stubs"""
11785
- pass
11778
+ :cloudformationAttribute: ViewArn
11779
+ '''
11780
+ return typing.cast(builtins.str, jsii.get(self, "attrViewArn"))
11786
11781
 
11787
- def _typecheckingstub__213719edbc55495f331c0d1f51b7ab8a359f2c5cc563f3fa97077760121c6aa9(
11788
- value: builtins.str,
11789
- ) -> None:
11790
- """Type checking stubs"""
11791
- pass
11782
+ @builtins.property
11783
+ @jsii.member(jsii_name="attrViewContentSha256")
11784
+ def attr_view_content_sha256(self) -> builtins.str:
11785
+ '''Indicates the checksum value of the latest published view content.
11792
11786
 
11793
- def _typecheckingstub__6e4573df3b75ab7b2ea3d0cba32ff3c515f11f6cbec43c0885d9ee30d25616a0(
11794
- value: typing.Optional[builtins.str],
11795
- ) -> None:
11796
- """Type checking stubs"""
11797
- pass
11787
+ :cloudformationAttribute: ViewContentSha256
11788
+ '''
11789
+ return typing.cast(builtins.str, jsii.get(self, "attrViewContentSha256"))
11798
11790
 
11799
- def _typecheckingstub__a7b6f72cf71dca93b2b2baae1d002d73d66de8e16bec7709efdb45c4bb811336(
11800
- value: typing.Optional[builtins.str],
11801
- ) -> None:
11802
- """Type checking stubs"""
11803
- pass
11791
+ @builtins.property
11792
+ @jsii.member(jsii_name="attrViewId")
11793
+ def attr_view_id(self) -> builtins.str:
11794
+ '''The identifier of the view.
11804
11795
 
11805
- def _typecheckingstub__22bc442433d76b98a1dae3304e1215f20c67d932bbfc6f02619483fbdb5d808d(
11806
- value: typing.Optional[typing.List[_CfnTag_f6864754]],
11807
- ) -> None:
11808
- """Type checking stubs"""
11809
- pass
11796
+ :cloudformationAttribute: ViewId
11797
+ '''
11798
+ return typing.cast(builtins.str, jsii.get(self, "attrViewId"))
11810
11799
 
11811
- def _typecheckingstub__008a6ee0ce6447d7f5f7c62774a959e253bc4a69cef26848e6d3f74cf2381193(
11812
- scope: _constructs_77d1e7e8.Construct,
11813
- id: builtins.str,
11814
- *,
11815
- content: builtins.str,
11816
- instance_arn: builtins.str,
11817
- name: builtins.str,
11818
- description: typing.Optional[builtins.str] = None,
11819
- state: typing.Optional[builtins.str] = None,
11820
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
11821
- ) -> None:
11822
- """Type checking stubs"""
11823
- pass
11800
+ @builtins.property
11801
+ @jsii.member(jsii_name="cfnProperties")
11802
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
11803
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
11824
11804
 
11825
- def _typecheckingstub__82176173dbe238b7a4715d8a94792d3696ada52a4372f823ab10f4c590c6193f(
11826
- inspector: _TreeInspector_488e0dd5,
11827
- ) -> None:
11828
- """Type checking stubs"""
11829
- pass
11805
+ @builtins.property
11806
+ @jsii.member(jsii_name="actions")
11807
+ def actions(self) -> typing.List[builtins.str]:
11808
+ '''A list of actions possible from the view.'''
11809
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "actions"))
11830
11810
 
11831
- def _typecheckingstub__7f3e317a83e30b22f766c5d65c8451e4d9e5ffcd6510573aa22d0063860e7b99(
11832
- props: typing.Mapping[builtins.str, typing.Any],
11833
- ) -> None:
11834
- """Type checking stubs"""
11835
- pass
11811
+ @actions.setter
11812
+ def actions(self, value: typing.List[builtins.str]) -> None:
11813
+ if __debug__:
11814
+ type_hints = typing.get_type_hints(_typecheckingstub__bfc5249082c6d5a1446f72b2d7f603dfd56182e6160353b7c1af6ee5d04cf427)
11815
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11816
+ jsii.set(self, "actions", value)
11836
11817
 
11837
- def _typecheckingstub__1701812aa93a58317265edab1cd66b5a843fc9845a1aed0b81f83c4f738b5b0e(
11838
- value: builtins.str,
11839
- ) -> None:
11840
- """Type checking stubs"""
11841
- pass
11818
+ @builtins.property
11819
+ @jsii.member(jsii_name="instanceArn")
11820
+ def instance_arn(self) -> builtins.str:
11821
+ '''The Amazon Resource Name (ARN) of the instance.'''
11822
+ return typing.cast(builtins.str, jsii.get(self, "instanceArn"))
11823
+
11824
+ @instance_arn.setter
11825
+ def instance_arn(self, value: builtins.str) -> None:
11826
+ if __debug__:
11827
+ type_hints = typing.get_type_hints(_typecheckingstub__a93c4cb77702281173c334c90fe993226032e3fd88c9b905c29b88b91bf0506e)
11828
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11829
+ jsii.set(self, "instanceArn", value)
11830
+
11831
+ @builtins.property
11832
+ @jsii.member(jsii_name="name")
11833
+ def name(self) -> builtins.str:
11834
+ '''The name of the view.'''
11835
+ return typing.cast(builtins.str, jsii.get(self, "name"))
11836
+
11837
+ @name.setter
11838
+ def name(self, value: builtins.str) -> None:
11839
+ if __debug__:
11840
+ type_hints = typing.get_type_hints(_typecheckingstub__9119d3cb209dab8ae6d5b5cc8cb241d94d81d58771bb72d5e73cd8c92938990b)
11841
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11842
+ jsii.set(self, "name", value)
11843
+
11844
+ @builtins.property
11845
+ @jsii.member(jsii_name="template")
11846
+ def template(self) -> typing.Any:
11847
+ '''The view template representing the structure of the view.'''
11848
+ return typing.cast(typing.Any, jsii.get(self, "template"))
11849
+
11850
+ @template.setter
11851
+ def template(self, value: typing.Any) -> None:
11852
+ if __debug__:
11853
+ type_hints = typing.get_type_hints(_typecheckingstub__86e1abb3b53b3f5681b7c0d196d86154b11fafceba7b897bc6536e6d6ed70a4d)
11854
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11855
+ jsii.set(self, "template", value)
11856
+
11857
+ @builtins.property
11858
+ @jsii.member(jsii_name="description")
11859
+ def description(self) -> typing.Optional[builtins.str]:
11860
+ '''The description of the view.'''
11861
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
11862
+
11863
+ @description.setter
11864
+ def description(self, value: typing.Optional[builtins.str]) -> None:
11865
+ if __debug__:
11866
+ type_hints = typing.get_type_hints(_typecheckingstub__a4d4478679794ad5547e519ea6378b504c947ae3ba33c144dbfbd6a02f41c523)
11867
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11868
+ jsii.set(self, "description", value)
11869
+
11870
+ @builtins.property
11871
+ @jsii.member(jsii_name="tags")
11872
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
11873
+ '''The tags associated with the view resource (not specific to view version).'''
11874
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
11875
+
11876
+ @tags.setter
11877
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
11878
+ if __debug__:
11879
+ type_hints = typing.get_type_hints(_typecheckingstub__2c8717b700734d2f2ffa968661ed869e26cd339beb41934a1e4fb19cf006b80e)
11880
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
11881
+ jsii.set(self, "tags", value)
11882
+
11883
+
11884
+ @jsii.data_type(
11885
+ jsii_type="aws-cdk-lib.aws_connect.CfnViewProps",
11886
+ jsii_struct_bases=[],
11887
+ name_mapping={
11888
+ "actions": "actions",
11889
+ "instance_arn": "instanceArn",
11890
+ "name": "name",
11891
+ "template": "template",
11892
+ "description": "description",
11893
+ "tags": "tags",
11894
+ },
11895
+ )
11896
+ class CfnViewProps:
11897
+ def __init__(
11898
+ self,
11899
+ *,
11900
+ actions: typing.Sequence[builtins.str],
11901
+ instance_arn: builtins.str,
11902
+ name: builtins.str,
11903
+ template: typing.Any,
11904
+ description: typing.Optional[builtins.str] = None,
11905
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
11906
+ ) -> None:
11907
+ '''Properties for defining a ``CfnView``.
11908
+
11909
+ :param actions: A list of actions possible from the view.
11910
+ :param instance_arn: The Amazon Resource Name (ARN) of the instance.
11911
+ :param name: The name of the view.
11912
+ :param template: The view template representing the structure of the view.
11913
+ :param description: The description of the view.
11914
+ :param tags: The tags associated with the view resource (not specific to view version).
11915
+
11916
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html
11917
+ :exampleMetadata: fixture=_generated
11918
+
11919
+ Example::
11920
+
11921
+ # The code below shows an example of how to instantiate this type.
11922
+ # The values are placeholders you should change.
11923
+ from aws_cdk import aws_connect as connect
11924
+
11925
+ # template: Any
11926
+
11927
+ cfn_view_props = connect.CfnViewProps(
11928
+ actions=["actions"],
11929
+ instance_arn="instanceArn",
11930
+ name="name",
11931
+ template=template,
11932
+
11933
+ # the properties below are optional
11934
+ description="description",
11935
+ tags=[CfnTag(
11936
+ key="key",
11937
+ value="value"
11938
+ )]
11939
+ )
11940
+ '''
11941
+ if __debug__:
11942
+ type_hints = typing.get_type_hints(_typecheckingstub__f907c1817accd77cdb1d6d91c707e676a4ecb33911eb5e958e9ef56a1cda0cbd)
11943
+ check_type(argname="argument actions", value=actions, expected_type=type_hints["actions"])
11944
+ check_type(argname="argument instance_arn", value=instance_arn, expected_type=type_hints["instance_arn"])
11945
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
11946
+ check_type(argname="argument template", value=template, expected_type=type_hints["template"])
11947
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
11948
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
11949
+ self._values: typing.Dict[builtins.str, typing.Any] = {
11950
+ "actions": actions,
11951
+ "instance_arn": instance_arn,
11952
+ "name": name,
11953
+ "template": template,
11954
+ }
11955
+ if description is not None:
11956
+ self._values["description"] = description
11957
+ if tags is not None:
11958
+ self._values["tags"] = tags
11959
+
11960
+ @builtins.property
11961
+ def actions(self) -> typing.List[builtins.str]:
11962
+ '''A list of actions possible from the view.
11963
+
11964
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-actions
11965
+ '''
11966
+ result = self._values.get("actions")
11967
+ assert result is not None, "Required property 'actions' is missing"
11968
+ return typing.cast(typing.List[builtins.str], result)
11969
+
11970
+ @builtins.property
11971
+ def instance_arn(self) -> builtins.str:
11972
+ '''The Amazon Resource Name (ARN) of the instance.
11973
+
11974
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-instancearn
11975
+ '''
11976
+ result = self._values.get("instance_arn")
11977
+ assert result is not None, "Required property 'instance_arn' is missing"
11978
+ return typing.cast(builtins.str, result)
11979
+
11980
+ @builtins.property
11981
+ def name(self) -> builtins.str:
11982
+ '''The name of the view.
11983
+
11984
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-name
11985
+ '''
11986
+ result = self._values.get("name")
11987
+ assert result is not None, "Required property 'name' is missing"
11988
+ return typing.cast(builtins.str, result)
11989
+
11990
+ @builtins.property
11991
+ def template(self) -> typing.Any:
11992
+ '''The view template representing the structure of the view.
11993
+
11994
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-template
11995
+ '''
11996
+ result = self._values.get("template")
11997
+ assert result is not None, "Required property 'template' is missing"
11998
+ return typing.cast(typing.Any, result)
11999
+
12000
+ @builtins.property
12001
+ def description(self) -> typing.Optional[builtins.str]:
12002
+ '''The description of the view.
12003
+
12004
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-description
12005
+ '''
12006
+ result = self._values.get("description")
12007
+ return typing.cast(typing.Optional[builtins.str], result)
12008
+
12009
+ @builtins.property
12010
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
12011
+ '''The tags associated with the view resource (not specific to view version).
12012
+
12013
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-view.html#cfn-connect-view-tags
12014
+ '''
12015
+ result = self._values.get("tags")
12016
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
12017
+
12018
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
12019
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
12020
+
12021
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
12022
+ return not (rhs == self)
12023
+
12024
+ def __repr__(self) -> str:
12025
+ return "CfnViewProps(%s)" % ", ".join(
12026
+ k + "=" + repr(v) for k, v in self._values.items()
12027
+ )
12028
+
12029
+
12030
+ @jsii.implements(_IInspectable_c2943556)
12031
+ class CfnViewVersion(
12032
+ _CfnResource_9df397a6,
12033
+ metaclass=jsii.JSIIMeta,
12034
+ jsii_type="aws-cdk-lib.aws_connect.CfnViewVersion",
12035
+ ):
12036
+ '''Creates a version for the specified customer-managed view within the specified instance.
12037
+
12038
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.html
12039
+ :exampleMetadata: fixture=_generated
12040
+
12041
+ Example::
12042
+
12043
+ # The code below shows an example of how to instantiate this type.
12044
+ # The values are placeholders you should change.
12045
+ from aws_cdk import aws_connect as connect
12046
+
12047
+ cfn_view_version = connect.CfnViewVersion(self, "MyCfnViewVersion",
12048
+ view_arn="viewArn",
12049
+
12050
+ # the properties below are optional
12051
+ version_description="versionDescription",
12052
+ view_content_sha256="viewContentSha256"
12053
+ )
12054
+ '''
12055
+
12056
+ def __init__(
12057
+ self,
12058
+ scope: _constructs_77d1e7e8.Construct,
12059
+ id: builtins.str,
12060
+ *,
12061
+ view_arn: builtins.str,
12062
+ version_description: typing.Optional[builtins.str] = None,
12063
+ view_content_sha256: typing.Optional[builtins.str] = None,
12064
+ ) -> None:
12065
+ '''
12066
+ :param scope: Scope in which this resource is defined.
12067
+ :param id: Construct identifier for this resource (unique in its scope).
12068
+ :param view_arn: The unqualified Amazon Resource Name (ARN) of the view. For example: ``arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000``
12069
+ :param version_description: The description of the view version.
12070
+ :param view_content_sha256: Indicates the checksum value of the latest published view content.
12071
+ '''
12072
+ if __debug__:
12073
+ type_hints = typing.get_type_hints(_typecheckingstub__c352cc20d21de3ffee67568db6d5f70cd6bd44413ffa25ab4bc4e5003607525b)
12074
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
12075
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
12076
+ props = CfnViewVersionProps(
12077
+ view_arn=view_arn,
12078
+ version_description=version_description,
12079
+ view_content_sha256=view_content_sha256,
12080
+ )
12081
+
12082
+ jsii.create(self.__class__, self, [scope, id, props])
12083
+
12084
+ @jsii.member(jsii_name="inspect")
12085
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
12086
+ '''Examines the CloudFormation resource and discloses attributes.
12087
+
12088
+ :param inspector: tree inspector to collect and process attributes.
12089
+ '''
12090
+ if __debug__:
12091
+ type_hints = typing.get_type_hints(_typecheckingstub__0ef9e1adb9742a5b6528d05803eabeacc107cda0e7efd2b616937827060f15dc)
12092
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
12093
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
12094
+
12095
+ @jsii.member(jsii_name="renderProperties")
12096
+ def _render_properties(
12097
+ self,
12098
+ props: typing.Mapping[builtins.str, typing.Any],
12099
+ ) -> typing.Mapping[builtins.str, typing.Any]:
12100
+ '''
12101
+ :param props: -
12102
+ '''
12103
+ if __debug__:
12104
+ type_hints = typing.get_type_hints(_typecheckingstub__3d2a010c19b8e9477becc17b769517ffe7c4a777f027b14b967df4e38557bdb8)
12105
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
12106
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
12107
+
12108
+ @jsii.python.classproperty
12109
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
12110
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
12111
+ '''The CloudFormation resource type name for this resource class.'''
12112
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
12113
+
12114
+ @builtins.property
12115
+ @jsii.member(jsii_name="attrVersion")
12116
+ def attr_version(self) -> jsii.Number:
12117
+ '''Current version of the view.
12118
+
12119
+ :cloudformationAttribute: Version
12120
+ '''
12121
+ return typing.cast(jsii.Number, jsii.get(self, "attrVersion"))
12122
+
12123
+ @builtins.property
12124
+ @jsii.member(jsii_name="attrViewVersionArn")
12125
+ def attr_view_version_arn(self) -> builtins.str:
12126
+ '''The Amazon Resource Name (ARN) of the view version.
12127
+
12128
+ :cloudformationAttribute: ViewVersionArn
12129
+ '''
12130
+ return typing.cast(builtins.str, jsii.get(self, "attrViewVersionArn"))
12131
+
12132
+ @builtins.property
12133
+ @jsii.member(jsii_name="cfnProperties")
12134
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
12135
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
12136
+
12137
+ @builtins.property
12138
+ @jsii.member(jsii_name="viewArn")
12139
+ def view_arn(self) -> builtins.str:
12140
+ '''The unqualified Amazon Resource Name (ARN) of the view.'''
12141
+ return typing.cast(builtins.str, jsii.get(self, "viewArn"))
12142
+
12143
+ @view_arn.setter
12144
+ def view_arn(self, value: builtins.str) -> None:
12145
+ if __debug__:
12146
+ type_hints = typing.get_type_hints(_typecheckingstub__454401f63226a9befa6bffaf911f023a073fd0c5eae570a9b29be7d3f7ff94af)
12147
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
12148
+ jsii.set(self, "viewArn", value)
12149
+
12150
+ @builtins.property
12151
+ @jsii.member(jsii_name="versionDescription")
12152
+ def version_description(self) -> typing.Optional[builtins.str]:
12153
+ '''The description of the view version.'''
12154
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "versionDescription"))
12155
+
12156
+ @version_description.setter
12157
+ def version_description(self, value: typing.Optional[builtins.str]) -> None:
12158
+ if __debug__:
12159
+ type_hints = typing.get_type_hints(_typecheckingstub__640f2264538b9f6d41074375157692bd7450e4e39efbea1384afb1f1f12d0b44)
12160
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
12161
+ jsii.set(self, "versionDescription", value)
12162
+
12163
+ @builtins.property
12164
+ @jsii.member(jsii_name="viewContentSha256")
12165
+ def view_content_sha256(self) -> typing.Optional[builtins.str]:
12166
+ '''Indicates the checksum value of the latest published view content.'''
12167
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "viewContentSha256"))
12168
+
12169
+ @view_content_sha256.setter
12170
+ def view_content_sha256(self, value: typing.Optional[builtins.str]) -> None:
12171
+ if __debug__:
12172
+ type_hints = typing.get_type_hints(_typecheckingstub__c5c8aa5e5d6802692a03611724808d85ab729895ff6180601dee7f8b5c3cbc23)
12173
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
12174
+ jsii.set(self, "viewContentSha256", value)
12175
+
12176
+
12177
+ @jsii.data_type(
12178
+ jsii_type="aws-cdk-lib.aws_connect.CfnViewVersionProps",
12179
+ jsii_struct_bases=[],
12180
+ name_mapping={
12181
+ "view_arn": "viewArn",
12182
+ "version_description": "versionDescription",
12183
+ "view_content_sha256": "viewContentSha256",
12184
+ },
12185
+ )
12186
+ class CfnViewVersionProps:
12187
+ def __init__(
12188
+ self,
12189
+ *,
12190
+ view_arn: builtins.str,
12191
+ version_description: typing.Optional[builtins.str] = None,
12192
+ view_content_sha256: typing.Optional[builtins.str] = None,
12193
+ ) -> None:
12194
+ '''Properties for defining a ``CfnViewVersion``.
12195
+
12196
+ :param view_arn: The unqualified Amazon Resource Name (ARN) of the view. For example: ``arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000``
12197
+ :param version_description: The description of the view version.
12198
+ :param view_content_sha256: Indicates the checksum value of the latest published view content.
12199
+
12200
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.html
12201
+ :exampleMetadata: fixture=_generated
12202
+
12203
+ Example::
12204
+
12205
+ # The code below shows an example of how to instantiate this type.
12206
+ # The values are placeholders you should change.
12207
+ from aws_cdk import aws_connect as connect
12208
+
12209
+ cfn_view_version_props = connect.CfnViewVersionProps(
12210
+ view_arn="viewArn",
12211
+
12212
+ # the properties below are optional
12213
+ version_description="versionDescription",
12214
+ view_content_sha256="viewContentSha256"
12215
+ )
12216
+ '''
12217
+ if __debug__:
12218
+ type_hints = typing.get_type_hints(_typecheckingstub__625c576cd29cfea7eb8a7d7197edcd80462fd0eac7870bac9066ac9fee2ad619)
12219
+ check_type(argname="argument view_arn", value=view_arn, expected_type=type_hints["view_arn"])
12220
+ check_type(argname="argument version_description", value=version_description, expected_type=type_hints["version_description"])
12221
+ check_type(argname="argument view_content_sha256", value=view_content_sha256, expected_type=type_hints["view_content_sha256"])
12222
+ self._values: typing.Dict[builtins.str, typing.Any] = {
12223
+ "view_arn": view_arn,
12224
+ }
12225
+ if version_description is not None:
12226
+ self._values["version_description"] = version_description
12227
+ if view_content_sha256 is not None:
12228
+ self._values["view_content_sha256"] = view_content_sha256
12229
+
12230
+ @builtins.property
12231
+ def view_arn(self) -> builtins.str:
12232
+ '''The unqualified Amazon Resource Name (ARN) of the view.
12233
+
12234
+ For example:
12235
+
12236
+ ``arn:<partition>:connect:<region>:<accountId>:instance/00000000-0000-0000-0000-000000000000/view/00000000-0000-0000-0000-000000000000``
12237
+
12238
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.html#cfn-connect-viewversion-viewarn
12239
+ '''
12240
+ result = self._values.get("view_arn")
12241
+ assert result is not None, "Required property 'view_arn' is missing"
12242
+ return typing.cast(builtins.str, result)
12243
+
12244
+ @builtins.property
12245
+ def version_description(self) -> typing.Optional[builtins.str]:
12246
+ '''The description of the view version.
12247
+
12248
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.html#cfn-connect-viewversion-versiondescription
12249
+ '''
12250
+ result = self._values.get("version_description")
12251
+ return typing.cast(typing.Optional[builtins.str], result)
12252
+
12253
+ @builtins.property
12254
+ def view_content_sha256(self) -> typing.Optional[builtins.str]:
12255
+ '''Indicates the checksum value of the latest published view content.
12256
+
12257
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-viewversion.html#cfn-connect-viewversion-viewcontentsha256
12258
+ '''
12259
+ result = self._values.get("view_content_sha256")
12260
+ return typing.cast(typing.Optional[builtins.str], result)
12261
+
12262
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
12263
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
12264
+
12265
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
12266
+ return not (rhs == self)
12267
+
12268
+ def __repr__(self) -> str:
12269
+ return "CfnViewVersionProps(%s)" % ", ".join(
12270
+ k + "=" + repr(v) for k, v in self._values.items()
12271
+ )
12272
+
12273
+
12274
+ __all__ = [
12275
+ "CfnApprovedOrigin",
12276
+ "CfnApprovedOriginProps",
12277
+ "CfnContactFlow",
12278
+ "CfnContactFlowModule",
12279
+ "CfnContactFlowModuleProps",
12280
+ "CfnContactFlowProps",
12281
+ "CfnEvaluationForm",
12282
+ "CfnEvaluationFormProps",
12283
+ "CfnHoursOfOperation",
12284
+ "CfnHoursOfOperationProps",
12285
+ "CfnInstance",
12286
+ "CfnInstanceProps",
12287
+ "CfnInstanceStorageConfig",
12288
+ "CfnInstanceStorageConfigProps",
12289
+ "CfnIntegrationAssociation",
12290
+ "CfnIntegrationAssociationProps",
12291
+ "CfnPhoneNumber",
12292
+ "CfnPhoneNumberProps",
12293
+ "CfnPrompt",
12294
+ "CfnPromptProps",
12295
+ "CfnQueue",
12296
+ "CfnQueueProps",
12297
+ "CfnQuickConnect",
12298
+ "CfnQuickConnectProps",
12299
+ "CfnRoutingProfile",
12300
+ "CfnRoutingProfileProps",
12301
+ "CfnRule",
12302
+ "CfnRuleProps",
12303
+ "CfnSecurityKey",
12304
+ "CfnSecurityKeyProps",
12305
+ "CfnTaskTemplate",
12306
+ "CfnTaskTemplateProps",
12307
+ "CfnTrafficDistributionGroup",
12308
+ "CfnTrafficDistributionGroupProps",
12309
+ "CfnUser",
12310
+ "CfnUserHierarchyGroup",
12311
+ "CfnUserHierarchyGroupProps",
12312
+ "CfnUserProps",
12313
+ "CfnView",
12314
+ "CfnViewProps",
12315
+ "CfnViewVersion",
12316
+ "CfnViewVersionProps",
12317
+ ]
12318
+
12319
+ publication.publish()
12320
+
12321
+ def _typecheckingstub__44955422cb4c00b338f45e52a0d4136fdcdb94c8e433595b636f468d589e514a(
12322
+ scope: _constructs_77d1e7e8.Construct,
12323
+ id: builtins.str,
12324
+ *,
12325
+ instance_id: builtins.str,
12326
+ origin: builtins.str,
12327
+ ) -> None:
12328
+ """Type checking stubs"""
12329
+ pass
12330
+
12331
+ def _typecheckingstub__15b611bd9c5a92c253c2e2b0cba97b9f73bad0cfc8494953acb694fda143bba2(
12332
+ inspector: _TreeInspector_488e0dd5,
12333
+ ) -> None:
12334
+ """Type checking stubs"""
12335
+ pass
12336
+
12337
+ def _typecheckingstub__bc2ef7b8d5a06b007fe66bb9f5b0208e869ed47a6e5af0d6bf354f4df2d4d6c8(
12338
+ props: typing.Mapping[builtins.str, typing.Any],
12339
+ ) -> None:
12340
+ """Type checking stubs"""
12341
+ pass
12342
+
12343
+ def _typecheckingstub__7fd219e5b157d40fbc4254297a9308245796269c824a72c0b9db3bad7013261c(
12344
+ value: builtins.str,
12345
+ ) -> None:
12346
+ """Type checking stubs"""
12347
+ pass
12348
+
12349
+ def _typecheckingstub__49fb9b02cf4a1b22d6433eac9cb35377d1877512b477dbf9c030fec47fb54f75(
12350
+ value: builtins.str,
12351
+ ) -> None:
12352
+ """Type checking stubs"""
12353
+ pass
12354
+
12355
+ def _typecheckingstub__437fb8bad3e7665288233ec7ee3b4db6669d85ab53efddb888b5d729979a4e2f(
12356
+ *,
12357
+ instance_id: builtins.str,
12358
+ origin: builtins.str,
12359
+ ) -> None:
12360
+ """Type checking stubs"""
12361
+ pass
12362
+
12363
+ def _typecheckingstub__bacec198fd7006a7e922c6b62694383eb7200d23c3f8da491f520191bdc8353f(
12364
+ scope: _constructs_77d1e7e8.Construct,
12365
+ id: builtins.str,
12366
+ *,
12367
+ content: builtins.str,
12368
+ instance_arn: builtins.str,
12369
+ name: builtins.str,
12370
+ type: builtins.str,
12371
+ description: typing.Optional[builtins.str] = None,
12372
+ state: typing.Optional[builtins.str] = None,
12373
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
12374
+ ) -> None:
12375
+ """Type checking stubs"""
12376
+ pass
12377
+
12378
+ def _typecheckingstub__aca14ea5542ff9acc3dc06746c7580c88c1e0b75d66bf0ac0a8cd785404cc173(
12379
+ inspector: _TreeInspector_488e0dd5,
12380
+ ) -> None:
12381
+ """Type checking stubs"""
12382
+ pass
12383
+
12384
+ def _typecheckingstub__f4b3abb60d405603981215ec7d659c3d8939dbf9b5de879c8d56dfd0631f9d5b(
12385
+ props: typing.Mapping[builtins.str, typing.Any],
12386
+ ) -> None:
12387
+ """Type checking stubs"""
12388
+ pass
12389
+
12390
+ def _typecheckingstub__4a517102f202efaced50f937df38d5374d2d8ae33c5659296852d677cbe73e2a(
12391
+ value: builtins.str,
12392
+ ) -> None:
12393
+ """Type checking stubs"""
12394
+ pass
12395
+
12396
+ def _typecheckingstub__20f6a7aacca6b49f3791bf907484b7af427677a1079ea79db9a45489b963b9d0(
12397
+ value: builtins.str,
12398
+ ) -> None:
12399
+ """Type checking stubs"""
12400
+ pass
12401
+
12402
+ def _typecheckingstub__76f576a62faffae972ec30039ac3019bddb9b613e8dd2dce2b52723ba8a64dbc(
12403
+ value: builtins.str,
12404
+ ) -> None:
12405
+ """Type checking stubs"""
12406
+ pass
12407
+
12408
+ def _typecheckingstub__213719edbc55495f331c0d1f51b7ab8a359f2c5cc563f3fa97077760121c6aa9(
12409
+ value: builtins.str,
12410
+ ) -> None:
12411
+ """Type checking stubs"""
12412
+ pass
12413
+
12414
+ def _typecheckingstub__6e4573df3b75ab7b2ea3d0cba32ff3c515f11f6cbec43c0885d9ee30d25616a0(
12415
+ value: typing.Optional[builtins.str],
12416
+ ) -> None:
12417
+ """Type checking stubs"""
12418
+ pass
12419
+
12420
+ def _typecheckingstub__a7b6f72cf71dca93b2b2baae1d002d73d66de8e16bec7709efdb45c4bb811336(
12421
+ value: typing.Optional[builtins.str],
12422
+ ) -> None:
12423
+ """Type checking stubs"""
12424
+ pass
12425
+
12426
+ def _typecheckingstub__22bc442433d76b98a1dae3304e1215f20c67d932bbfc6f02619483fbdb5d808d(
12427
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
12428
+ ) -> None:
12429
+ """Type checking stubs"""
12430
+ pass
12431
+
12432
+ def _typecheckingstub__008a6ee0ce6447d7f5f7c62774a959e253bc4a69cef26848e6d3f74cf2381193(
12433
+ scope: _constructs_77d1e7e8.Construct,
12434
+ id: builtins.str,
12435
+ *,
12436
+ content: builtins.str,
12437
+ instance_arn: builtins.str,
12438
+ name: builtins.str,
12439
+ description: typing.Optional[builtins.str] = None,
12440
+ state: typing.Optional[builtins.str] = None,
12441
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
12442
+ ) -> None:
12443
+ """Type checking stubs"""
12444
+ pass
12445
+
12446
+ def _typecheckingstub__82176173dbe238b7a4715d8a94792d3696ada52a4372f823ab10f4c590c6193f(
12447
+ inspector: _TreeInspector_488e0dd5,
12448
+ ) -> None:
12449
+ """Type checking stubs"""
12450
+ pass
12451
+
12452
+ def _typecheckingstub__7f3e317a83e30b22f766c5d65c8451e4d9e5ffcd6510573aa22d0063860e7b99(
12453
+ props: typing.Mapping[builtins.str, typing.Any],
12454
+ ) -> None:
12455
+ """Type checking stubs"""
12456
+ pass
12457
+
12458
+ def _typecheckingstub__1701812aa93a58317265edab1cd66b5a843fc9845a1aed0b81f83c4f738b5b0e(
12459
+ value: builtins.str,
12460
+ ) -> None:
12461
+ """Type checking stubs"""
12462
+ pass
11842
12463
 
11843
12464
  def _typecheckingstub__68b9231af4bcfc40233b3b8fbbd6acd02fe21a59b2f962738d2ce93d6ffa7fa7(
11844
12465
  value: builtins.str,
@@ -13485,3 +14106,127 @@ def _typecheckingstub__494987ef0f9b905c50c1efbd53f96fb396b7f25b5354dfbb4027a32db
13485
14106
  ) -> None:
13486
14107
  """Type checking stubs"""
13487
14108
  pass
14109
+
14110
+ def _typecheckingstub__94b4f2f620952c31a829f98f6f735cb6b2bcb05a7aeec0d58a9bf353e42283a3(
14111
+ scope: _constructs_77d1e7e8.Construct,
14112
+ id: builtins.str,
14113
+ *,
14114
+ actions: typing.Sequence[builtins.str],
14115
+ instance_arn: builtins.str,
14116
+ name: builtins.str,
14117
+ template: typing.Any,
14118
+ description: typing.Optional[builtins.str] = None,
14119
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
14120
+ ) -> None:
14121
+ """Type checking stubs"""
14122
+ pass
14123
+
14124
+ def _typecheckingstub__a4f4d449c39fb674cb2aee4444da15965f7a738d317d39c5795787870d91cb90(
14125
+ inspector: _TreeInspector_488e0dd5,
14126
+ ) -> None:
14127
+ """Type checking stubs"""
14128
+ pass
14129
+
14130
+ def _typecheckingstub__2f51d9f515dc52e659fd588b6b7c69855667a4bcb91e66e6243fb55b7ce6e6d6(
14131
+ props: typing.Mapping[builtins.str, typing.Any],
14132
+ ) -> None:
14133
+ """Type checking stubs"""
14134
+ pass
14135
+
14136
+ def _typecheckingstub__bfc5249082c6d5a1446f72b2d7f603dfd56182e6160353b7c1af6ee5d04cf427(
14137
+ value: typing.List[builtins.str],
14138
+ ) -> None:
14139
+ """Type checking stubs"""
14140
+ pass
14141
+
14142
+ def _typecheckingstub__a93c4cb77702281173c334c90fe993226032e3fd88c9b905c29b88b91bf0506e(
14143
+ value: builtins.str,
14144
+ ) -> None:
14145
+ """Type checking stubs"""
14146
+ pass
14147
+
14148
+ def _typecheckingstub__9119d3cb209dab8ae6d5b5cc8cb241d94d81d58771bb72d5e73cd8c92938990b(
14149
+ value: builtins.str,
14150
+ ) -> None:
14151
+ """Type checking stubs"""
14152
+ pass
14153
+
14154
+ def _typecheckingstub__86e1abb3b53b3f5681b7c0d196d86154b11fafceba7b897bc6536e6d6ed70a4d(
14155
+ value: typing.Any,
14156
+ ) -> None:
14157
+ """Type checking stubs"""
14158
+ pass
14159
+
14160
+ def _typecheckingstub__a4d4478679794ad5547e519ea6378b504c947ae3ba33c144dbfbd6a02f41c523(
14161
+ value: typing.Optional[builtins.str],
14162
+ ) -> None:
14163
+ """Type checking stubs"""
14164
+ pass
14165
+
14166
+ def _typecheckingstub__2c8717b700734d2f2ffa968661ed869e26cd339beb41934a1e4fb19cf006b80e(
14167
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
14168
+ ) -> None:
14169
+ """Type checking stubs"""
14170
+ pass
14171
+
14172
+ def _typecheckingstub__f907c1817accd77cdb1d6d91c707e676a4ecb33911eb5e958e9ef56a1cda0cbd(
14173
+ *,
14174
+ actions: typing.Sequence[builtins.str],
14175
+ instance_arn: builtins.str,
14176
+ name: builtins.str,
14177
+ template: typing.Any,
14178
+ description: typing.Optional[builtins.str] = None,
14179
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
14180
+ ) -> None:
14181
+ """Type checking stubs"""
14182
+ pass
14183
+
14184
+ def _typecheckingstub__c352cc20d21de3ffee67568db6d5f70cd6bd44413ffa25ab4bc4e5003607525b(
14185
+ scope: _constructs_77d1e7e8.Construct,
14186
+ id: builtins.str,
14187
+ *,
14188
+ view_arn: builtins.str,
14189
+ version_description: typing.Optional[builtins.str] = None,
14190
+ view_content_sha256: typing.Optional[builtins.str] = None,
14191
+ ) -> None:
14192
+ """Type checking stubs"""
14193
+ pass
14194
+
14195
+ def _typecheckingstub__0ef9e1adb9742a5b6528d05803eabeacc107cda0e7efd2b616937827060f15dc(
14196
+ inspector: _TreeInspector_488e0dd5,
14197
+ ) -> None:
14198
+ """Type checking stubs"""
14199
+ pass
14200
+
14201
+ def _typecheckingstub__3d2a010c19b8e9477becc17b769517ffe7c4a777f027b14b967df4e38557bdb8(
14202
+ props: typing.Mapping[builtins.str, typing.Any],
14203
+ ) -> None:
14204
+ """Type checking stubs"""
14205
+ pass
14206
+
14207
+ def _typecheckingstub__454401f63226a9befa6bffaf911f023a073fd0c5eae570a9b29be7d3f7ff94af(
14208
+ value: builtins.str,
14209
+ ) -> None:
14210
+ """Type checking stubs"""
14211
+ pass
14212
+
14213
+ def _typecheckingstub__640f2264538b9f6d41074375157692bd7450e4e39efbea1384afb1f1f12d0b44(
14214
+ value: typing.Optional[builtins.str],
14215
+ ) -> None:
14216
+ """Type checking stubs"""
14217
+ pass
14218
+
14219
+ def _typecheckingstub__c5c8aa5e5d6802692a03611724808d85ab729895ff6180601dee7f8b5c3cbc23(
14220
+ value: typing.Optional[builtins.str],
14221
+ ) -> None:
14222
+ """Type checking stubs"""
14223
+ pass
14224
+
14225
+ def _typecheckingstub__625c576cd29cfea7eb8a7d7197edcd80462fd0eac7870bac9066ac9fee2ad619(
14226
+ *,
14227
+ view_arn: builtins.str,
14228
+ version_description: typing.Optional[builtins.str] = None,
14229
+ view_content_sha256: typing.Optional[builtins.str] = None,
14230
+ ) -> None:
14231
+ """Type checking stubs"""
14232
+ pass