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

Files changed (60) hide show
  1. aws_cdk/__init__.py +1 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.165.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +9 -0
  5. aws_cdk/aws_appsync/__init__.py +2271 -359
  6. aws_cdk/aws_backup/__init__.py +57 -31
  7. aws_cdk/aws_bedrock/__init__.py +994 -197
  8. aws_cdk/aws_cleanrooms/__init__.py +66 -5
  9. aws_cdk/aws_cloudfront/__init__.py +21 -3
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
  11. aws_cdk/aws_codebuild/__init__.py +59 -29
  12. aws_cdk/aws_codepipeline/__init__.py +98 -5
  13. aws_cdk/aws_codestar/__init__.py +1 -1
  14. aws_cdk/aws_cognito/__init__.py +0 -8
  15. aws_cdk/aws_connect/__init__.py +1 -1
  16. aws_cdk/aws_datasync/__init__.py +60 -7
  17. aws_cdk/aws_devopsguru/__init__.py +2 -2
  18. aws_cdk/aws_dms/__init__.py +762 -0
  19. aws_cdk/aws_dynamodb/__init__.py +13 -8
  20. aws_cdk/aws_ec2/__init__.py +316 -11
  21. aws_cdk/aws_ecs/__init__.py +20 -7
  22. aws_cdk/aws_elasticache/__init__.py +16 -9
  23. aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
  24. aws_cdk/aws_emrserverless/__init__.py +35 -33
  25. aws_cdk/aws_events/__init__.py +25 -30
  26. aws_cdk/aws_gamelift/__init__.py +52 -40
  27. aws_cdk/aws_inspectorv2/__init__.py +6 -12
  28. aws_cdk/aws_kinesis/__init__.py +297 -1
  29. aws_cdk/aws_kms/__init__.py +2 -0
  30. aws_cdk/aws_lambda/__init__.py +339 -22
  31. aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
  32. aws_cdk/aws_logs/__init__.py +214 -0
  33. aws_cdk/aws_m2/__init__.py +58 -58
  34. aws_cdk/aws_mediapackagev2/__init__.py +191 -0
  35. aws_cdk/aws_networkfirewall/__init__.py +14 -5
  36. aws_cdk/aws_nimblestudio/__init__.py +6 -103
  37. aws_cdk/aws_opensearchservice/__init__.py +969 -0
  38. aws_cdk/aws_pipes/__init__.py +1 -1
  39. aws_cdk/aws_qbusiness/__init__.py +2 -0
  40. aws_cdk/aws_quicksight/__init__.py +481 -10
  41. aws_cdk/aws_rds/__init__.py +667 -16
  42. aws_cdk/aws_route53/__init__.py +38 -12
  43. aws_cdk/aws_s3_assets/__init__.py +37 -0
  44. aws_cdk/aws_s3_deployment/__init__.py +18 -7
  45. aws_cdk/aws_sagemaker/__init__.py +61 -25
  46. aws_cdk/aws_secretsmanager/__init__.py +2 -1
  47. aws_cdk/aws_servicecatalog/__init__.py +52 -4
  48. aws_cdk/aws_ses/__init__.py +22 -1
  49. aws_cdk/aws_sqs/__init__.py +12 -9
  50. aws_cdk/aws_stepfunctions/__init__.py +8 -0
  51. aws_cdk/aws_synthetics/__init__.py +133 -1
  52. aws_cdk/aws_timestream/__init__.py +41 -0
  53. aws_cdk/aws_wisdom/__init__.py +2348 -54
  54. aws_cdk/triggers/__init__.py +3 -3
  55. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
  56. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +60 -60
  57. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
  58. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
  59. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
  60. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
@@ -559,9 +559,9 @@ class CfnApplication(
559
559
  *,
560
560
  enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
561
561
  ) -> None:
562
- '''Configuration for Auto Start of Application.
562
+ '''The configuration for an application to automatically start on job submission.
563
563
 
564
- :param enabled: If set to true, the Application will automatically start. Defaults to true. Default: - true
564
+ :param enabled: Enables the application to automatically start on job submission. Default: - true
565
565
 
566
566
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-autostartconfiguration.html
567
567
  :exampleMetadata: fixture=_generated
@@ -587,9 +587,7 @@ class CfnApplication(
587
587
  def enabled(
588
588
  self,
589
589
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
590
- '''If set to true, the Application will automatically start.
591
-
592
- Defaults to true.
590
+ '''Enables the application to automatically start on job submission.
593
591
 
594
592
  :default: - true
595
593
 
@@ -624,10 +622,10 @@ class CfnApplication(
624
622
  enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
625
623
  idle_timeout_minutes: typing.Optional[jsii.Number] = None,
626
624
  ) -> None:
627
- '''Configuration for Auto Stop of Application.
625
+ '''The configuration for an application to automatically stop after a certain amount of time being idle.
628
626
 
629
- :param enabled: If set to true, the Application will automatically stop after being idle. Defaults to true. Default: - true
630
- :param idle_timeout_minutes: The amount of time [in minutes] to wait before auto stopping the Application when idle. Defaults to 15 minutes.
627
+ :param enabled: Enables the application to automatically stop after a certain amount of time being idle. Defaults to true. Default: - true
628
+ :param idle_timeout_minutes: The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.
631
629
 
632
630
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-autostopconfiguration.html
633
631
  :exampleMetadata: fixture=_generated
@@ -657,7 +655,7 @@ class CfnApplication(
657
655
  def enabled(
658
656
  self,
659
657
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
660
- '''If set to true, the Application will automatically stop after being idle.
658
+ '''Enables the application to automatically stop after a certain amount of time being idle.
661
659
 
662
660
  Defaults to true.
663
661
 
@@ -670,7 +668,7 @@ class CfnApplication(
670
668
 
671
669
  @builtins.property
672
670
  def idle_timeout_minutes(self) -> typing.Optional[jsii.Number]:
673
- '''The amount of time [in minutes] to wait before auto stopping the Application when idle.
671
+ '''The amount of idle time in minutes after which your application will automatically stop.
674
672
 
675
673
  Defaults to 15 minutes.
676
674
 
@@ -839,11 +837,13 @@ class CfnApplication(
839
837
  configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.ConfigurationObjectProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
840
838
  properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
841
839
  ) -> None:
842
- '''Configuration for a JobRun.
840
+ '''A configuration specification to be used when provisioning an application.
843
841
 
844
- :param classification:
845
- :param configurations:
846
- :param properties:
842
+ A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
843
+
844
+ :param classification: The classification within a configuration.
845
+ :param configurations: A list of additional configurations to apply within a configuration object.
846
+ :param properties: A set of properties specified within a configuration classification.
847
847
 
848
848
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html
849
849
  :exampleMetadata: fixture=_generated
@@ -881,7 +881,8 @@ class CfnApplication(
881
881
 
882
882
  @builtins.property
883
883
  def classification(self) -> builtins.str:
884
- '''
884
+ '''The classification within a configuration.
885
+
885
886
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html#cfn-emrserverless-application-configurationobject-classification
886
887
  '''
887
888
  result = self._values.get("classification")
@@ -892,7 +893,8 @@ class CfnApplication(
892
893
  def configurations(
893
894
  self,
894
895
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnApplication.ConfigurationObjectProperty"]]]]:
895
- '''
896
+ '''A list of additional configurations to apply within a configuration object.
897
+
896
898
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html#cfn-emrserverless-application-configurationobject-configurations
897
899
  '''
898
900
  result = self._values.get("configurations")
@@ -902,7 +904,8 @@ class CfnApplication(
902
904
  def properties(
903
905
  self,
904
906
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
905
- '''
907
+ '''A set of properties specified within a configuration classification.
908
+
906
909
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-configurationobject.html#cfn-emrserverless-application-configurationobject-properties
907
910
  '''
908
911
  result = self._values.get("properties")
@@ -1469,7 +1472,7 @@ class CfnApplication(
1469
1472
  managed_persistence_monitoring_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.ManagedPersistenceMonitoringConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1470
1473
  s3_monitoring_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.S3MonitoringConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1471
1474
  ) -> None:
1472
- '''The configuration setting for monitoring.
1475
+ '''The configuration setting for monitoring logs.
1473
1476
 
1474
1477
  :param cloud_watch_logging_configuration: The Amazon CloudWatch configuration for monitoring logs. You can configure your jobs to send log information to CloudWatch.
1475
1478
  :param managed_persistence_monitoring_configuration: The managed log persistence configuration for a job run.
@@ -1728,11 +1731,14 @@ class CfnApplication(
1728
1731
  disk: typing.Optional[builtins.str] = None,
1729
1732
  disk_type: typing.Optional[builtins.str] = None,
1730
1733
  ) -> None:
1731
- '''
1732
- :param cpu: Per worker CPU resource. vCPU is the only supported unit and specifying vCPU is optional.
1733
- :param memory: Per worker memory resource. GB is the only supported unit and specifying GB is optional.
1734
- :param disk: Per worker Disk resource. GB is the only supported unit and specifying GB is optional
1735
- :param disk_type: Per worker DiskType resource. Shuffle optimized and Standard are only supported types and specifying diskType is optional
1734
+ '''The configuration of a worker.
1735
+
1736
+ For more information, see `Supported worker configurations <https://docs.aws.amazon.com/emr/latest/EMR-Serverless-UserGuide/app-behavior.html#worker-configs>`_ .
1737
+
1738
+ :param cpu: The CPU requirements of the worker configuration. Each worker can have 1, 2, 4, 8, or 16 vCPUs.
1739
+ :param memory: The memory requirements of the worker configuration.
1740
+ :param disk: The disk requirements of the worker configuration.
1741
+ :param disk_type: The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance characteristics and are better for shuffle heavy workloads. Default is ``STANDARD`` .
1736
1742
 
1737
1743
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-workerconfiguration.html
1738
1744
  :exampleMetadata: fixture=_generated
@@ -1769,9 +1775,9 @@ class CfnApplication(
1769
1775
 
1770
1776
  @builtins.property
1771
1777
  def cpu(self) -> builtins.str:
1772
- '''Per worker CPU resource.
1778
+ '''The CPU requirements of the worker configuration.
1773
1779
 
1774
- vCPU is the only supported unit and specifying vCPU is optional.
1780
+ Each worker can have 1, 2, 4, 8, or 16 vCPUs.
1775
1781
 
1776
1782
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-workerconfiguration.html#cfn-emrserverless-application-workerconfiguration-cpu
1777
1783
  '''
@@ -1781,9 +1787,7 @@ class CfnApplication(
1781
1787
 
1782
1788
  @builtins.property
1783
1789
  def memory(self) -> builtins.str:
1784
- '''Per worker memory resource.
1785
-
1786
- GB is the only supported unit and specifying GB is optional.
1790
+ '''The memory requirements of the worker configuration.
1787
1791
 
1788
1792
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-workerconfiguration.html#cfn-emrserverless-application-workerconfiguration-memory
1789
1793
  '''
@@ -1793,9 +1797,7 @@ class CfnApplication(
1793
1797
 
1794
1798
  @builtins.property
1795
1799
  def disk(self) -> typing.Optional[builtins.str]:
1796
- '''Per worker Disk resource.
1797
-
1798
- GB is the only supported unit and specifying GB is optional
1800
+ '''The disk requirements of the worker configuration.
1799
1801
 
1800
1802
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-workerconfiguration.html#cfn-emrserverless-application-workerconfiguration-disk
1801
1803
  '''
@@ -1804,9 +1806,9 @@ class CfnApplication(
1804
1806
 
1805
1807
  @builtins.property
1806
1808
  def disk_type(self) -> typing.Optional[builtins.str]:
1807
- '''Per worker DiskType resource.
1809
+ '''The disk type for every worker instance of the work type.
1808
1810
 
1809
- Shuffle optimized and Standard are only supported types and specifying diskType is optional
1811
+ Shuffle optimized disks have higher performance characteristics and are better for shuffle heavy workloads. Default is ``STANDARD`` .
1810
1812
 
1811
1813
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-workerconfiguration.html#cfn-emrserverless-application-workerconfiguration-disktype
1812
1814
  '''
@@ -1604,8 +1604,6 @@ class CfnConnection(
1604
1604
  )
1605
1605
  )
1606
1606
  ),
1607
-
1608
- # the properties below are optional
1609
1607
  description="description",
1610
1608
  name="name"
1611
1609
  )
@@ -1616,8 +1614,8 @@ class CfnConnection(
1616
1614
  scope: _constructs_77d1e7e8.Construct,
1617
1615
  id: builtins.str,
1618
1616
  *,
1619
- authorization_type: builtins.str,
1620
- auth_parameters: typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnection.AuthParametersProperty", typing.Dict[builtins.str, typing.Any]]],
1617
+ authorization_type: typing.Optional[builtins.str] = None,
1618
+ auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnection.AuthParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1621
1619
  description: typing.Optional[builtins.str] = None,
1622
1620
  name: typing.Optional[builtins.str] = None,
1623
1621
  ) -> None:
@@ -1697,12 +1695,12 @@ class CfnConnection(
1697
1695
 
1698
1696
  @builtins.property
1699
1697
  @jsii.member(jsii_name="authorizationType")
1700
- def authorization_type(self) -> builtins.str:
1698
+ def authorization_type(self) -> typing.Optional[builtins.str]:
1701
1699
  '''The type of authorization to use for the connection.'''
1702
- return typing.cast(builtins.str, jsii.get(self, "authorizationType"))
1700
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "authorizationType"))
1703
1701
 
1704
1702
  @authorization_type.setter
1705
- def authorization_type(self, value: builtins.str) -> None:
1703
+ def authorization_type(self, value: typing.Optional[builtins.str]) -> None:
1706
1704
  if __debug__:
1707
1705
  type_hints = typing.get_type_hints(_typecheckingstub__4f51f33cc16a16fcb52edb95bbc7ef5dd0bb5f97e31dd1f331adaf42e9cd3668)
1708
1706
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
@@ -1712,14 +1710,14 @@ class CfnConnection(
1712
1710
  @jsii.member(jsii_name="authParameters")
1713
1711
  def auth_parameters(
1714
1712
  self,
1715
- ) -> typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"]:
1713
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"]]:
1716
1714
  '''A ``CreateConnectionAuthRequestParameters`` object that contains the authorization parameters to use to authorize with the endpoint.'''
1717
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"], jsii.get(self, "authParameters"))
1715
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"]], jsii.get(self, "authParameters"))
1718
1716
 
1719
1717
  @auth_parameters.setter
1720
1718
  def auth_parameters(
1721
1719
  self,
1722
- value: typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"],
1720
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConnection.AuthParametersProperty"]],
1723
1721
  ) -> None:
1724
1722
  if __debug__:
1725
1723
  type_hints = typing.get_type_hints(_typecheckingstub__57b3dc84742623dcc9dcc433aac0b117093002aa9686131e642748038958b67c)
@@ -2496,8 +2494,8 @@ class CfnConnectionProps:
2496
2494
  def __init__(
2497
2495
  self,
2498
2496
  *,
2499
- authorization_type: builtins.str,
2500
- auth_parameters: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]],
2497
+ authorization_type: typing.Optional[builtins.str] = None,
2498
+ auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2501
2499
  description: typing.Optional[builtins.str] = None,
2502
2500
  name: typing.Optional[builtins.str] = None,
2503
2501
  ) -> None:
@@ -2585,8 +2583,6 @@ class CfnConnectionProps:
2585
2583
  )
2586
2584
  )
2587
2585
  ),
2588
-
2589
- # the properties below are optional
2590
2586
  description="description",
2591
2587
  name="name"
2592
2588
  )
@@ -2597,17 +2593,18 @@ class CfnConnectionProps:
2597
2593
  check_type(argname="argument auth_parameters", value=auth_parameters, expected_type=type_hints["auth_parameters"])
2598
2594
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
2599
2595
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
2600
- self._values: typing.Dict[builtins.str, typing.Any] = {
2601
- "authorization_type": authorization_type,
2602
- "auth_parameters": auth_parameters,
2603
- }
2596
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2597
+ if authorization_type is not None:
2598
+ self._values["authorization_type"] = authorization_type
2599
+ if auth_parameters is not None:
2600
+ self._values["auth_parameters"] = auth_parameters
2604
2601
  if description is not None:
2605
2602
  self._values["description"] = description
2606
2603
  if name is not None:
2607
2604
  self._values["name"] = name
2608
2605
 
2609
2606
  @builtins.property
2610
- def authorization_type(self) -> builtins.str:
2607
+ def authorization_type(self) -> typing.Optional[builtins.str]:
2611
2608
  '''The type of authorization to use for the connection.
2612
2609
 
2613
2610
  .. epigraph::
@@ -2617,20 +2614,18 @@ class CfnConnectionProps:
2617
2614
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-authorizationtype
2618
2615
  '''
2619
2616
  result = self._values.get("authorization_type")
2620
- assert result is not None, "Required property 'authorization_type' is missing"
2621
- return typing.cast(builtins.str, result)
2617
+ return typing.cast(typing.Optional[builtins.str], result)
2622
2618
 
2623
2619
  @builtins.property
2624
2620
  def auth_parameters(
2625
2621
  self,
2626
- ) -> typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty]:
2622
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty]]:
2627
2623
  '''A ``CreateConnectionAuthRequestParameters`` object that contains the authorization parameters to use to authorize with the endpoint.
2628
2624
 
2629
2625
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-authparameters
2630
2626
  '''
2631
2627
  result = self._values.get("auth_parameters")
2632
- assert result is not None, "Required property 'auth_parameters' is missing"
2633
- return typing.cast(typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty], result)
2628
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty]], result)
2634
2629
 
2635
2630
  @builtins.property
2636
2631
  def description(self) -> typing.Optional[builtins.str]:
@@ -11937,8 +11932,8 @@ def _typecheckingstub__65bde9b35de094b905dd335652d04503af85c50ac027a006a1d7ec926
11937
11932
  scope: _constructs_77d1e7e8.Construct,
11938
11933
  id: builtins.str,
11939
11934
  *,
11940
- authorization_type: builtins.str,
11941
- auth_parameters: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]],
11935
+ authorization_type: typing.Optional[builtins.str] = None,
11936
+ auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11942
11937
  description: typing.Optional[builtins.str] = None,
11943
11938
  name: typing.Optional[builtins.str] = None,
11944
11939
  ) -> None:
@@ -11958,13 +11953,13 @@ def _typecheckingstub__9baa06fe2df5d5855b8fea8613ae753f8301c4cdb9f83ba3f45fd5407
11958
11953
  pass
11959
11954
 
11960
11955
  def _typecheckingstub__4f51f33cc16a16fcb52edb95bbc7ef5dd0bb5f97e31dd1f331adaf42e9cd3668(
11961
- value: builtins.str,
11956
+ value: typing.Optional[builtins.str],
11962
11957
  ) -> None:
11963
11958
  """Type checking stubs"""
11964
11959
  pass
11965
11960
 
11966
11961
  def _typecheckingstub__57b3dc84742623dcc9dcc433aac0b117093002aa9686131e642748038958b67c(
11967
- value: typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty],
11962
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConnection.AuthParametersProperty]],
11968
11963
  ) -> None:
11969
11964
  """Type checking stubs"""
11970
11965
  pass
@@ -12045,8 +12040,8 @@ def _typecheckingstub__8ef124487a6c31dc58a802230e7bf50f962f08be9cde1fb39c45b429d
12045
12040
 
12046
12041
  def _typecheckingstub__2b32e6c6e8c1c2772bb604474216b07683c108c349058e240d272750b95ff394(
12047
12042
  *,
12048
- authorization_type: builtins.str,
12049
- auth_parameters: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]],
12043
+ authorization_type: typing.Optional[builtins.str] = None,
12044
+ auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
12050
12045
  description: typing.Optional[builtins.str] = None,
12051
12046
  name: typing.Optional[builtins.str] = None,
12052
12047
  ) -> None: