aws-cdk-lib 2.133.0__py3-none-any.whl → 2.134.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 (56) hide show
  1. aws_cdk/__init__.py +9 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.133.0.jsii.tgz → aws-cdk-lib@2.134.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +105 -3
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +155 -3
  6. aws_cdk/aws_appconfig/__init__.py +186 -8
  7. aws_cdk/aws_appintegrations/__init__.py +551 -0
  8. aws_cdk/aws_appsync/__init__.py +71 -0
  9. aws_cdk/aws_autoscaling/__init__.py +6 -4
  10. aws_cdk/aws_backup/__init__.py +23 -12
  11. aws_cdk/aws_batch/__init__.py +423 -73
  12. aws_cdk/aws_bedrock/__init__.py +197 -2
  13. aws_cdk/aws_cloudformation/__init__.py +1 -1
  14. aws_cdk/aws_cloudfront/__init__.py +2 -2
  15. aws_cdk/aws_cloudtrail/__init__.py +44 -14
  16. aws_cdk/aws_cloudwatch/__init__.py +18 -0
  17. aws_cdk/aws_codeartifact/__init__.py +812 -2
  18. aws_cdk/aws_codebuild/__init__.py +21 -5
  19. aws_cdk/aws_codepipeline/__init__.py +24 -8
  20. aws_cdk/aws_cognito/__init__.py +41 -40
  21. aws_cdk/aws_connect/__init__.py +256 -0
  22. aws_cdk/aws_datasync/__init__.py +393 -13
  23. aws_cdk/aws_dlm/__init__.py +2 -2
  24. aws_cdk/aws_docdbelastic/__init__.py +117 -0
  25. aws_cdk/aws_dynamodb/__init__.py +416 -5
  26. aws_cdk/aws_ec2/__init__.py +493 -93
  27. aws_cdk/aws_ecs/__init__.py +6 -4
  28. aws_cdk/aws_eks/__init__.py +27 -25
  29. aws_cdk/aws_elasticloadbalancingv2/__init__.py +359 -60
  30. aws_cdk/aws_entityresolution/__init__.py +91 -64
  31. aws_cdk/aws_glue/__init__.py +137 -3
  32. aws_cdk/aws_iam/__init__.py +9 -10
  33. aws_cdk/aws_internetmonitor/__init__.py +85 -0
  34. aws_cdk/aws_iotsitewise/__init__.py +110 -50
  35. aws_cdk/aws_kafkaconnect/__init__.py +1237 -162
  36. aws_cdk/aws_kendra/__init__.py +34 -24
  37. aws_cdk/aws_kinesisanalytics/__init__.py +37 -37
  38. aws_cdk/aws_kinesisanalyticsv2/__init__.py +37 -37
  39. aws_cdk/aws_kinesisfirehose/__init__.py +6 -2
  40. aws_cdk/aws_msk/__init__.py +88 -0
  41. aws_cdk/aws_opensearchservice/__init__.py +19 -17
  42. aws_cdk/aws_pinpoint/__init__.py +42 -0
  43. aws_cdk/aws_rds/__init__.py +48 -14
  44. aws_cdk/aws_sagemaker/__init__.py +2 -2
  45. aws_cdk/aws_ssm/__init__.py +3 -3
  46. aws_cdk/aws_stepfunctions_tasks/__init__.py +23 -0
  47. aws_cdk/aws_synthetics/__init__.py +74 -14
  48. aws_cdk/aws_transfer/__init__.py +4 -3
  49. aws_cdk/aws_wafv2/__init__.py +96 -46
  50. aws_cdk/cx_api/__init__.py +17 -0
  51. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/METADATA +2 -2
  52. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/RECORD +56 -56
  53. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/LICENSE +0 -0
  54. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/NOTICE +0 -0
  55. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/WHEEL +0 -0
  56. {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/top_level.txt +0 -0
@@ -1475,7 +1475,7 @@ class CfnConfigurationProfile(
1475
1475
  ) -> None:
1476
1476
  '''A validator provides a syntactic or semantic check to ensure the configuration that you want to deploy functions as intended.
1477
1477
 
1478
- To validate your application configuration data, you provide a schema or an AWS Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.
1478
+ To validate your application configuration data, you provide a schema or an AWS Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid. For more information, see `About validators <https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-profile.html#appconfig-creating-configuration-and-profile-validators>`_ in the *AWS AppConfig User Guide* .
1479
1479
 
1480
1480
  :param content: Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
1481
1481
  :param type: AWS AppConfig supports validators of type ``JSON_SCHEMA`` and ``LAMBDA``.
@@ -1791,6 +1791,11 @@ class CfnDeployment(
1791
1791
 
1792
1792
  # the properties below are optional
1793
1793
  description="description",
1794
+ dynamic_extension_parameters=[appconfig.CfnDeployment.DynamicExtensionParametersProperty(
1795
+ extension_reference="extensionReference",
1796
+ parameter_name="parameterName",
1797
+ parameter_value="parameterValue"
1798
+ )],
1794
1799
  kms_key_identifier="kmsKeyIdentifier",
1795
1800
  tags=[CfnTag(
1796
1801
  key="key",
@@ -1810,6 +1815,7 @@ class CfnDeployment(
1810
1815
  deployment_strategy_id: builtins.str,
1811
1816
  environment_id: builtins.str,
1812
1817
  description: typing.Optional[builtins.str] = None,
1818
+ dynamic_extension_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeployment.DynamicExtensionParametersProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1813
1819
  kms_key_identifier: typing.Optional[builtins.str] = None,
1814
1820
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1815
1821
  ) -> None:
@@ -1822,6 +1828,7 @@ class CfnDeployment(
1822
1828
  :param deployment_strategy_id: The deployment strategy ID.
1823
1829
  :param environment_id: The environment ID.
1824
1830
  :param description: A description of the deployment.
1831
+ :param dynamic_extension_parameters: The parameters accepted by the extension. You specify parameter values when you associate the extension to an AWS AppConfig resource by using the ``CreateExtensionAssociation`` API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.
1825
1832
  :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
1826
1833
  :param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
1827
1834
  '''
@@ -1836,6 +1843,7 @@ class CfnDeployment(
1836
1843
  deployment_strategy_id=deployment_strategy_id,
1837
1844
  environment_id=environment_id,
1838
1845
  description=description,
1846
+ dynamic_extension_parameters=dynamic_extension_parameters,
1839
1847
  kms_key_identifier=kms_key_identifier,
1840
1848
  tags=tags,
1841
1849
  )
@@ -1969,6 +1977,24 @@ class CfnDeployment(
1969
1977
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1970
1978
  jsii.set(self, "description", value)
1971
1979
 
1980
+ @builtins.property
1981
+ @jsii.member(jsii_name="dynamicExtensionParameters")
1982
+ def dynamic_extension_parameters(
1983
+ self,
1984
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDeployment.DynamicExtensionParametersProperty"]]]]:
1985
+ '''The parameters accepted by the extension.'''
1986
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDeployment.DynamicExtensionParametersProperty"]]]], jsii.get(self, "dynamicExtensionParameters"))
1987
+
1988
+ @dynamic_extension_parameters.setter
1989
+ def dynamic_extension_parameters(
1990
+ self,
1991
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDeployment.DynamicExtensionParametersProperty"]]]],
1992
+ ) -> None:
1993
+ if __debug__:
1994
+ type_hints = typing.get_type_hints(_typecheckingstub__e5a4416b6ac2f6fbc5dd497fd6aafe41844d2e927bc75ce571b37c2f1b805bfb)
1995
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1996
+ jsii.set(self, "dynamicExtensionParameters", value)
1997
+
1972
1998
  @builtins.property
1973
1999
  @jsii.member(jsii_name="kmsKeyIdentifier")
1974
2000
  def kms_key_identifier(self) -> typing.Optional[builtins.str]:
@@ -1995,6 +2021,91 @@ class CfnDeployment(
1995
2021
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1996
2022
  jsii.set(self, "tags", value)
1997
2023
 
2024
+ @jsii.data_type(
2025
+ jsii_type="aws-cdk-lib.aws_appconfig.CfnDeployment.DynamicExtensionParametersProperty",
2026
+ jsii_struct_bases=[],
2027
+ name_mapping={
2028
+ "extension_reference": "extensionReference",
2029
+ "parameter_name": "parameterName",
2030
+ "parameter_value": "parameterValue",
2031
+ },
2032
+ )
2033
+ class DynamicExtensionParametersProperty:
2034
+ def __init__(
2035
+ self,
2036
+ *,
2037
+ extension_reference: typing.Optional[builtins.str] = None,
2038
+ parameter_name: typing.Optional[builtins.str] = None,
2039
+ parameter_value: typing.Optional[builtins.str] = None,
2040
+ ) -> None:
2041
+ '''
2042
+ :param extension_reference:
2043
+ :param parameter_name:
2044
+ :param parameter_value:
2045
+
2046
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html
2047
+ :exampleMetadata: fixture=_generated
2048
+
2049
+ Example::
2050
+
2051
+ # The code below shows an example of how to instantiate this type.
2052
+ # The values are placeholders you should change.
2053
+ from aws_cdk import aws_appconfig as appconfig
2054
+
2055
+ dynamic_extension_parameters_property = appconfig.CfnDeployment.DynamicExtensionParametersProperty(
2056
+ extension_reference="extensionReference",
2057
+ parameter_name="parameterName",
2058
+ parameter_value="parameterValue"
2059
+ )
2060
+ '''
2061
+ if __debug__:
2062
+ type_hints = typing.get_type_hints(_typecheckingstub__db7299354c46559a877995ee8ab04c4fd72aaaf53cc390877fbf50f65ac43390)
2063
+ check_type(argname="argument extension_reference", value=extension_reference, expected_type=type_hints["extension_reference"])
2064
+ check_type(argname="argument parameter_name", value=parameter_name, expected_type=type_hints["parameter_name"])
2065
+ check_type(argname="argument parameter_value", value=parameter_value, expected_type=type_hints["parameter_value"])
2066
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2067
+ if extension_reference is not None:
2068
+ self._values["extension_reference"] = extension_reference
2069
+ if parameter_name is not None:
2070
+ self._values["parameter_name"] = parameter_name
2071
+ if parameter_value is not None:
2072
+ self._values["parameter_value"] = parameter_value
2073
+
2074
+ @builtins.property
2075
+ def extension_reference(self) -> typing.Optional[builtins.str]:
2076
+ '''
2077
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-extensionreference
2078
+ '''
2079
+ result = self._values.get("extension_reference")
2080
+ return typing.cast(typing.Optional[builtins.str], result)
2081
+
2082
+ @builtins.property
2083
+ def parameter_name(self) -> typing.Optional[builtins.str]:
2084
+ '''
2085
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametername
2086
+ '''
2087
+ result = self._values.get("parameter_name")
2088
+ return typing.cast(typing.Optional[builtins.str], result)
2089
+
2090
+ @builtins.property
2091
+ def parameter_value(self) -> typing.Optional[builtins.str]:
2092
+ '''
2093
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametervalue
2094
+ '''
2095
+ result = self._values.get("parameter_value")
2096
+ return typing.cast(typing.Optional[builtins.str], result)
2097
+
2098
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2099
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2100
+
2101
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2102
+ return not (rhs == self)
2103
+
2104
+ def __repr__(self) -> str:
2105
+ return "DynamicExtensionParametersProperty(%s)" % ", ".join(
2106
+ k + "=" + repr(v) for k, v in self._values.items()
2107
+ )
2108
+
1998
2109
 
1999
2110
  @jsii.data_type(
2000
2111
  jsii_type="aws-cdk-lib.aws_appconfig.CfnDeploymentProps",
@@ -2006,6 +2117,7 @@ class CfnDeployment(
2006
2117
  "deployment_strategy_id": "deploymentStrategyId",
2007
2118
  "environment_id": "environmentId",
2008
2119
  "description": "description",
2120
+ "dynamic_extension_parameters": "dynamicExtensionParameters",
2009
2121
  "kms_key_identifier": "kmsKeyIdentifier",
2010
2122
  "tags": "tags",
2011
2123
  },
@@ -2020,6 +2132,7 @@ class CfnDeploymentProps:
2020
2132
  deployment_strategy_id: builtins.str,
2021
2133
  environment_id: builtins.str,
2022
2134
  description: typing.Optional[builtins.str] = None,
2135
+ dynamic_extension_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeployment.DynamicExtensionParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
2023
2136
  kms_key_identifier: typing.Optional[builtins.str] = None,
2024
2137
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2025
2138
  ) -> None:
@@ -2031,6 +2144,7 @@ class CfnDeploymentProps:
2031
2144
  :param deployment_strategy_id: The deployment strategy ID.
2032
2145
  :param environment_id: The environment ID.
2033
2146
  :param description: A description of the deployment.
2147
+ :param dynamic_extension_parameters: The parameters accepted by the extension. You specify parameter values when you associate the extension to an AWS AppConfig resource by using the ``CreateExtensionAssociation`` API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.
2034
2148
  :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
2035
2149
  :param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
2036
2150
 
@@ -2052,6 +2166,11 @@ class CfnDeploymentProps:
2052
2166
 
2053
2167
  # the properties below are optional
2054
2168
  description="description",
2169
+ dynamic_extension_parameters=[appconfig.CfnDeployment.DynamicExtensionParametersProperty(
2170
+ extension_reference="extensionReference",
2171
+ parameter_name="parameterName",
2172
+ parameter_value="parameterValue"
2173
+ )],
2055
2174
  kms_key_identifier="kmsKeyIdentifier",
2056
2175
  tags=[CfnTag(
2057
2176
  key="key",
@@ -2067,6 +2186,7 @@ class CfnDeploymentProps:
2067
2186
  check_type(argname="argument deployment_strategy_id", value=deployment_strategy_id, expected_type=type_hints["deployment_strategy_id"])
2068
2187
  check_type(argname="argument environment_id", value=environment_id, expected_type=type_hints["environment_id"])
2069
2188
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
2189
+ check_type(argname="argument dynamic_extension_parameters", value=dynamic_extension_parameters, expected_type=type_hints["dynamic_extension_parameters"])
2070
2190
  check_type(argname="argument kms_key_identifier", value=kms_key_identifier, expected_type=type_hints["kms_key_identifier"])
2071
2191
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
2072
2192
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -2078,6 +2198,8 @@ class CfnDeploymentProps:
2078
2198
  }
2079
2199
  if description is not None:
2080
2200
  self._values["description"] = description
2201
+ if dynamic_extension_parameters is not None:
2202
+ self._values["dynamic_extension_parameters"] = dynamic_extension_parameters
2081
2203
  if kms_key_identifier is not None:
2082
2204
  self._values["kms_key_identifier"] = kms_key_identifier
2083
2205
  if tags is not None:
@@ -2144,6 +2266,19 @@ class CfnDeploymentProps:
2144
2266
  result = self._values.get("description")
2145
2267
  return typing.cast(typing.Optional[builtins.str], result)
2146
2268
 
2269
+ @builtins.property
2270
+ def dynamic_extension_parameters(
2271
+ self,
2272
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDeployment.DynamicExtensionParametersProperty]]]]:
2273
+ '''The parameters accepted by the extension.
2274
+
2275
+ You specify parameter values when you associate the extension to an AWS AppConfig resource by using the ``CreateExtensionAssociation`` API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.
2276
+
2277
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-dynamicextensionparameters
2278
+ '''
2279
+ result = self._values.get("dynamic_extension_parameters")
2280
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDeployment.DynamicExtensionParametersProperty]]]], result)
2281
+
2147
2282
  @builtins.property
2148
2283
  def kms_key_identifier(self) -> typing.Optional[builtins.str]:
2149
2284
  '''The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
@@ -3108,7 +3243,7 @@ class CfnExtension(
3108
3243
  - For a custom Amazon SNS notification extension, enter the ARN of an Amazon SNS topic in the ``Uri`` field.
3109
3244
  - For a custom Amazon SQS notification extension, enter the ARN of an Amazon SQS message queue in the ``Uri`` field.
3110
3245
 
3111
- For more information about extensions, see `Working with AWS AppConfig extensions <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3246
+ For more information about extensions, see `Extending workflows <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3112
3247
 
3113
3248
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extension.html
3114
3249
  :cloudformationResource: AWS::AppConfig::Extension
@@ -3134,7 +3269,8 @@ class CfnExtension(
3134
3269
  required=False,
3135
3270
 
3136
3271
  # the properties below are optional
3137
- description="description"
3272
+ description="description",
3273
+ dynamic=False
3138
3274
  )
3139
3275
  },
3140
3276
  tags=[CfnTag(
@@ -3455,7 +3591,11 @@ class CfnExtension(
3455
3591
  @jsii.data_type(
3456
3592
  jsii_type="aws-cdk-lib.aws_appconfig.CfnExtension.ParameterProperty",
3457
3593
  jsii_struct_bases=[],
3458
- name_mapping={"required": "required", "description": "description"},
3594
+ name_mapping={
3595
+ "required": "required",
3596
+ "description": "description",
3597
+ "dynamic": "dynamic",
3598
+ },
3459
3599
  )
3460
3600
  class ParameterProperty:
3461
3601
  def __init__(
@@ -3463,13 +3603,15 @@ class CfnExtension(
3463
3603
  *,
3464
3604
  required: typing.Union[builtins.bool, _IResolvable_da3f097b],
3465
3605
  description: typing.Optional[builtins.str] = None,
3606
+ dynamic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3466
3607
  ) -> None:
3467
3608
  '''A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.
3468
3609
 
3469
- Parameter values are specified in an extension association. For more information about extensions, see `Working with AWS AppConfig extensions <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3610
+ Parameter values are specified in an extension association. For more information about extensions, see `Extending workflows <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3470
3611
 
3471
3612
  :param required: A parameter value must be specified in the extension association.
3472
3613
  :param description: Information about the parameter.
3614
+ :param dynamic: Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked ``Required`` .
3473
3615
 
3474
3616
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html
3475
3617
  :exampleMetadata: fixture=_generated
@@ -3484,18 +3626,22 @@ class CfnExtension(
3484
3626
  required=False,
3485
3627
 
3486
3628
  # the properties below are optional
3487
- description="description"
3629
+ description="description",
3630
+ dynamic=False
3488
3631
  )
3489
3632
  '''
3490
3633
  if __debug__:
3491
3634
  type_hints = typing.get_type_hints(_typecheckingstub__683bc731900456f8d594ddc90d3c7fc1fcdc884942410401537639fad3d02ed1)
3492
3635
  check_type(argname="argument required", value=required, expected_type=type_hints["required"])
3493
3636
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
3637
+ check_type(argname="argument dynamic", value=dynamic, expected_type=type_hints["dynamic"])
3494
3638
  self._values: typing.Dict[builtins.str, typing.Any] = {
3495
3639
  "required": required,
3496
3640
  }
3497
3641
  if description is not None:
3498
3642
  self._values["description"] = description
3643
+ if dynamic is not None:
3644
+ self._values["dynamic"] = dynamic
3499
3645
 
3500
3646
  @builtins.property
3501
3647
  def required(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
@@ -3516,6 +3662,19 @@ class CfnExtension(
3516
3662
  result = self._values.get("description")
3517
3663
  return typing.cast(typing.Optional[builtins.str], result)
3518
3664
 
3665
+ @builtins.property
3666
+ def dynamic(
3667
+ self,
3668
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
3669
+ '''Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.
3670
+
3671
+ Dynamic parameters can't be marked ``Required`` .
3672
+
3673
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html#cfn-appconfig-extension-parameter-dynamic
3674
+ '''
3675
+ result = self._values.get("dynamic")
3676
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
3677
+
3519
3678
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3520
3679
  return isinstance(rhs, self.__class__) and rhs._values == self._values
3521
3680
 
@@ -3536,7 +3695,7 @@ class CfnExtensionAssociation(
3536
3695
  ):
3537
3696
  '''When you create an extension or configure an AWS authored extension, you associate the extension with an AWS AppConfig application, environment, or configuration profile.
3538
3697
 
3539
- For example, you can choose to run the ``AWS AppConfig deployment events to Amazon SNS`` AWS authored extension and receive notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application. Defining which extension to associate with an AWS AppConfig resource is called an *extension association* . An extension association is a specified relationship between an extension and an AWS AppConfig resource, such as an application or a configuration profile. For more information about extensions and associations, see `Working with AWS AppConfig extensions <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3698
+ For example, you can choose to run the ``AWS AppConfig deployment events to Amazon SNS`` AWS authored extension and receive notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application. Defining which extension to associate with an AWS AppConfig resource is called an *extension association* . An extension association is a specified relationship between an extension and an AWS AppConfig resource, such as an application or a configuration profile. For more information about extensions and associations, see `Extending workflows <https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html>`_ in the *AWS AppConfig User Guide* .
3540
3699
 
3541
3700
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html
3542
3701
  :cloudformationResource: AWS::AppConfig::ExtensionAssociation
@@ -3934,7 +4093,8 @@ class CfnExtensionProps:
3934
4093
  required=False,
3935
4094
 
3936
4095
  # the properties below are optional
3937
- description="description"
4096
+ description="description",
4097
+ dynamic=False
3938
4098
  )
3939
4099
  },
3940
4100
  tags=[CfnTag(
@@ -12664,6 +12824,7 @@ def _typecheckingstub__f1b3c15ba63fb6169371007d7bae981d061f49c21042389030326b9ae
12664
12824
  deployment_strategy_id: builtins.str,
12665
12825
  environment_id: builtins.str,
12666
12826
  description: typing.Optional[builtins.str] = None,
12827
+ dynamic_extension_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeployment.DynamicExtensionParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
12667
12828
  kms_key_identifier: typing.Optional[builtins.str] = None,
12668
12829
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
12669
12830
  ) -> None:
@@ -12718,6 +12879,12 @@ def _typecheckingstub__96f77dd19f2c1b41d04318bc8aa9cc8f75808190471ba4922eb58652c
12718
12879
  """Type checking stubs"""
12719
12880
  pass
12720
12881
 
12882
+ def _typecheckingstub__e5a4416b6ac2f6fbc5dd497fd6aafe41844d2e927bc75ce571b37c2f1b805bfb(
12883
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDeployment.DynamicExtensionParametersProperty]]]],
12884
+ ) -> None:
12885
+ """Type checking stubs"""
12886
+ pass
12887
+
12721
12888
  def _typecheckingstub__98b30f15af8144546829026dccf1aaf4fedd94b59dabeb6c8e8d7bc2b71e2efb(
12722
12889
  value: typing.Optional[builtins.str],
12723
12890
  ) -> None:
@@ -12730,6 +12897,15 @@ def _typecheckingstub__12211b05040a4e1a62df97a0128f266db1c0380eba8db0726824e99ad
12730
12897
  """Type checking stubs"""
12731
12898
  pass
12732
12899
 
12900
+ def _typecheckingstub__db7299354c46559a877995ee8ab04c4fd72aaaf53cc390877fbf50f65ac43390(
12901
+ *,
12902
+ extension_reference: typing.Optional[builtins.str] = None,
12903
+ parameter_name: typing.Optional[builtins.str] = None,
12904
+ parameter_value: typing.Optional[builtins.str] = None,
12905
+ ) -> None:
12906
+ """Type checking stubs"""
12907
+ pass
12908
+
12733
12909
  def _typecheckingstub__8289d78d65be12b91a60529d6c53d8a4385f73c87b2a23cfef86efebc1e00914(
12734
12910
  *,
12735
12911
  application_id: builtins.str,
@@ -12738,6 +12914,7 @@ def _typecheckingstub__8289d78d65be12b91a60529d6c53d8a4385f73c87b2a23cfef86efebc
12738
12914
  deployment_strategy_id: builtins.str,
12739
12915
  environment_id: builtins.str,
12740
12916
  description: typing.Optional[builtins.str] = None,
12917
+ dynamic_extension_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeployment.DynamicExtensionParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
12741
12918
  kms_key_identifier: typing.Optional[builtins.str] = None,
12742
12919
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
12743
12920
  ) -> None:
@@ -12992,6 +13169,7 @@ def _typecheckingstub__683bc731900456f8d594ddc90d3c7fc1fcdc884942410401537639fad
12992
13169
  *,
12993
13170
  required: typing.Union[builtins.bool, _IResolvable_da3f097b],
12994
13171
  description: typing.Optional[builtins.str] = None,
13172
+ dynamic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
12995
13173
  ) -> None:
12996
13174
  """Type checking stubs"""
12997
13175
  pass