aws-cdk-lib 2.194.0__py3-none-any.whl → 2.196.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 (108) hide show
  1. aws_cdk/__init__.py +435 -20
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_amazonmq/__init__.py +2 -2
  6. aws_cdk/aws_apigateway/__init__.py +208 -70
  7. aws_cdk/aws_apigatewayv2/__init__.py +155 -24
  8. aws_cdk/aws_appconfig/__init__.py +24 -0
  9. aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
  10. aws_cdk/aws_appmesh/__init__.py +42 -0
  11. aws_cdk/aws_appsync/__init__.py +92 -20
  12. aws_cdk/aws_autoscaling/__init__.py +24 -0
  13. aws_cdk/aws_backup/__init__.py +53 -14
  14. aws_cdk/aws_batch/__init__.py +72 -0
  15. aws_cdk/aws_bedrock/__init__.py +1201 -18
  16. aws_cdk/aws_budgets/__init__.py +569 -0
  17. aws_cdk/aws_certificatemanager/__init__.py +21 -0
  18. aws_cdk/aws_chatbot/__init__.py +6 -0
  19. aws_cdk/aws_cloudfront/__init__.py +277 -120
  20. aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
  21. aws_cdk/aws_cloudtrail/__init__.py +6 -0
  22. aws_cdk/aws_cloudwatch/__init__.py +18 -0
  23. aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
  24. aws_cdk/aws_codebuild/__init__.py +48 -0
  25. aws_cdk/aws_codecommit/__init__.py +6 -0
  26. aws_cdk/aws_codedeploy/__init__.py +63 -0
  27. aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
  28. aws_cdk/aws_codepipeline/__init__.py +114 -0
  29. aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
  30. aws_cdk/aws_codestarnotifications/__init__.py +6 -0
  31. aws_cdk/aws_cognito/__init__.py +215 -10
  32. aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
  33. aws_cdk/aws_config/__init__.py +36 -0
  34. aws_cdk/aws_datazone/__init__.py +1013 -100
  35. aws_cdk/aws_docdb/__init__.py +27 -3
  36. aws_cdk/aws_dsql/__init__.py +29 -12
  37. aws_cdk/aws_dynamodb/__init__.py +25 -11
  38. aws_cdk/aws_ec2/__init__.py +408 -23
  39. aws_cdk/aws_ecr/__init__.py +22 -14
  40. aws_cdk/aws_ecr_assets/__init__.py +6 -0
  41. aws_cdk/aws_ecs/__init__.py +116 -34
  42. aws_cdk/aws_ecs_patterns/__init__.py +58 -0
  43. aws_cdk/aws_efs/__init__.py +12 -0
  44. aws_cdk/aws_eks/__init__.py +42 -0
  45. aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
  46. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
  47. aws_cdk/aws_elasticsearch/__init__.py +9 -0
  48. aws_cdk/aws_events/__init__.py +36 -0
  49. aws_cdk/aws_events_targets/__init__.py +10 -10
  50. aws_cdk/aws_fsx/__init__.py +8 -3
  51. aws_cdk/aws_globalaccelerator/__init__.py +18 -0
  52. aws_cdk/aws_iam/__init__.py +66 -0
  53. aws_cdk/aws_imagebuilder/__init__.py +181 -26
  54. aws_cdk/aws_inspector/__init__.py +6 -0
  55. aws_cdk/aws_kinesis/__init__.py +19 -1
  56. aws_cdk/aws_kinesisanalytics/__init__.py +7 -7
  57. aws_cdk/aws_kinesisanalyticsv2/__init__.py +7 -7
  58. aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
  59. aws_cdk/aws_kms/__init__.py +16 -4
  60. aws_cdk/aws_lambda/__init__.py +76 -6
  61. aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
  62. aws_cdk/aws_logs/__init__.py +155 -12
  63. aws_cdk/aws_medialive/__init__.py +4 -6
  64. aws_cdk/aws_mediatailor/__init__.py +115 -0
  65. aws_cdk/aws_oam/__init__.py +43 -10
  66. aws_cdk/aws_opensearchservice/__init__.py +12 -0
  67. aws_cdk/aws_qbusiness/__init__.py +2 -2
  68. aws_cdk/aws_quicksight/__init__.py +22 -22
  69. aws_cdk/aws_rds/__init__.py +347 -36
  70. aws_cdk/aws_redshiftserverless/__init__.py +7 -7
  71. aws_cdk/aws_route53/__init__.py +735 -33
  72. aws_cdk/aws_route53_targets/__init__.py +62 -1
  73. aws_cdk/aws_route53profiles/__init__.py +1 -1
  74. aws_cdk/aws_s3/__init__.py +37 -10
  75. aws_cdk/aws_s3_deployment/__init__.py +6 -0
  76. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  77. aws_cdk/aws_sagemaker/__init__.py +452 -8
  78. aws_cdk/aws_scheduler/__init__.py +12 -0
  79. aws_cdk/aws_secretsmanager/__init__.py +24 -0
  80. aws_cdk/aws_servicecatalog/__init__.py +24 -0
  81. aws_cdk/aws_servicediscovery/__init__.py +48 -0
  82. aws_cdk/aws_ses/__init__.py +133 -33
  83. aws_cdk/aws_signer/__init__.py +6 -0
  84. aws_cdk/aws_sns/__init__.py +18 -0
  85. aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
  86. aws_cdk/aws_sqs/__init__.py +12 -0
  87. aws_cdk/aws_ssm/__init__.py +12 -0
  88. aws_cdk/aws_ssmcontacts/__init__.py +53 -2
  89. aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
  90. aws_cdk/aws_stepfunctions/__init__.py +153 -7
  91. aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
  92. aws_cdk/aws_synthetics/__init__.py +32 -0
  93. aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
  94. aws_cdk/aws_vpclattice/__init__.py +3 -1
  95. aws_cdk/aws_wisdom/__init__.py +6 -4
  96. aws_cdk/cloud_assembly_schema/__init__.py +7 -1
  97. aws_cdk/custom_resources/__init__.py +18 -0
  98. aws_cdk/cx_api/__init__.py +33 -0
  99. aws_cdk/lambda_layer_awscli/__init__.py +6 -0
  100. aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
  101. aws_cdk/pipelines/__init__.py +10 -10
  102. aws_cdk/triggers/__init__.py +6 -0
  103. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +84 -6
  104. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +108 -107
  105. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
  106. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
  107. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
  108. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
@@ -694,7 +694,7 @@ class CfnContainerRecipe(
694
694
  :param components: Build and test components that are included in the container recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
695
695
  :param container_type: Specifies the type of container, such as Docker.
696
696
  :param name: The name of the container recipe.
697
- :param parent_image: The base image for the container recipe.
697
+ :param parent_image: The base image for customizations specified in the container recipe. This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
698
698
  :param target_repository: The destination repository for the container image.
699
699
  :param version: The semantic version of the container recipe. .. epigraph:: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. *Assignment:* For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. *Patterns:* You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. *Filtering:* With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
700
700
  :param description: The description of the container recipe.
@@ -839,7 +839,7 @@ class CfnContainerRecipe(
839
839
  @builtins.property
840
840
  @jsii.member(jsii_name="parentImage")
841
841
  def parent_image(self) -> builtins.str:
842
- '''The base image for the container recipe.'''
842
+ '''The base image for customizations specified in the container recipe.'''
843
843
  return typing.cast(builtins.str, jsii.get(self, "parentImage"))
844
844
 
845
845
  @parent_image.setter
@@ -1458,7 +1458,7 @@ class CfnContainerRecipe(
1458
1458
  '''Defines a custom base AMI and block device mapping configurations of an instance used for building and testing container images.
1459
1459
 
1460
1460
  :param block_device_mappings: Defines the block devices to attach for building an instance from this Image Builder AMI.
1461
- :param image: The AMI ID to use as the base image for a container build and test instance. If not specified, Image Builder will use the appropriate ECS-optimized AMI as a base image.
1461
+ :param image: The base image for a container build and test instance. This can contain an AMI ID or it can specify an AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.
1462
1462
 
1463
1463
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-instanceconfiguration.html
1464
1464
  :exampleMetadata: fixture=_generated
@@ -1511,9 +1511,11 @@ class CfnContainerRecipe(
1511
1511
 
1512
1512
  @builtins.property
1513
1513
  def image(self) -> typing.Optional[builtins.str]:
1514
- '''The AMI ID to use as the base image for a container build and test instance.
1514
+ '''The base image for a container build and test instance.
1515
1515
 
1516
- If not specified, Image Builder will use the appropriate ECS-optimized AMI as a base image.
1516
+ This can contain an AMI ID or it can specify an AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN.
1517
+
1518
+ If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.
1517
1519
 
1518
1520
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-instanceconfiguration.html#cfn-imagebuilder-containerrecipe-instanceconfiguration-image
1519
1521
  '''
@@ -1650,7 +1652,7 @@ class CfnContainerRecipeProps:
1650
1652
  :param components: Build and test components that are included in the container recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
1651
1653
  :param container_type: Specifies the type of container, such as Docker.
1652
1654
  :param name: The name of the container recipe.
1653
- :param parent_image: The base image for the container recipe.
1655
+ :param parent_image: The base image for customizations specified in the container recipe. This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
1654
1656
  :param target_repository: The destination repository for the container image.
1655
1657
  :param version: The semantic version of the container recipe. .. epigraph:: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. *Assignment:* For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. *Patterns:* You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. *Filtering:* With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
1656
1658
  :param description: The description of the container recipe.
@@ -1800,7 +1802,9 @@ class CfnContainerRecipeProps:
1800
1802
 
1801
1803
  @builtins.property
1802
1804
  def parent_image(self) -> builtins.str:
1803
- '''The base image for the container recipe.
1805
+ '''The base image for customizations specified in the container recipe.
1806
+
1807
+ This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
1804
1808
 
1805
1809
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-containerrecipe.html#cfn-imagebuilder-containerrecipe-parentimage
1806
1810
  '''
@@ -1985,7 +1989,14 @@ class CfnDistributionConfiguration(
1985
1989
  launch_template_id="launchTemplateId",
1986
1990
  set_default_version=False
1987
1991
  )],
1988
- license_configuration_arns=["licenseConfigurationArns"]
1992
+ license_configuration_arns=["licenseConfigurationArns"],
1993
+ ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
1994
+ parameter_name="parameterName",
1995
+
1996
+ # the properties below are optional
1997
+ ami_account_id="amiAccountId",
1998
+ data_type="dataType"
1999
+ )]
1989
2000
  )],
1990
2001
  name="name",
1991
2002
 
@@ -2400,6 +2411,7 @@ class CfnDistributionConfiguration(
2400
2411
  "fast_launch_configurations": "fastLaunchConfigurations",
2401
2412
  "launch_template_configurations": "launchTemplateConfigurations",
2402
2413
  "license_configuration_arns": "licenseConfigurationArns",
2414
+ "ssm_parameter_configurations": "ssmParameterConfigurations",
2403
2415
  },
2404
2416
  )
2405
2417
  class DistributionProperty:
@@ -2412,6 +2424,7 @@ class CfnDistributionConfiguration(
2412
2424
  fast_launch_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.FastLaunchConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
2413
2425
  launch_template_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.LaunchTemplateConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
2414
2426
  license_configuration_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
2427
+ ssm_parameter_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.SsmParameterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
2415
2428
  ) -> None:
2416
2429
  '''The distribution configuration distribution defines the settings for a specific Region in the Distribution Configuration.
2417
2430
 
@@ -2426,6 +2439,7 @@ class CfnDistributionConfiguration(
2426
2439
  :param fast_launch_configurations: The Windows faster-launching configurations to use for AMI distribution.
2427
2440
  :param launch_template_configurations: A group of launchTemplateConfiguration settings that apply to image distribution for specified accounts.
2428
2441
  :param license_configuration_arns: The License Manager Configuration to associate with the AMI in the specified Region. For more information, see the `LicenseConfiguration API <https://docs.aws.amazon.com/license-manager/latest/APIReference/API_LicenseConfiguration.html>`_ .
2442
+ :param ssm_parameter_configurations: Contains settings to update AWS Systems Manager (SSM) Parameter Store Parameters with output AMI IDs from the build by target Region.
2429
2443
 
2430
2444
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-distribution.html
2431
2445
  :exampleMetadata: fixture=_generated
@@ -2463,7 +2477,14 @@ class CfnDistributionConfiguration(
2463
2477
  launch_template_id="launchTemplateId",
2464
2478
  set_default_version=False
2465
2479
  )],
2466
- license_configuration_arns=["licenseConfigurationArns"]
2480
+ license_configuration_arns=["licenseConfigurationArns"],
2481
+ ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
2482
+ parameter_name="parameterName",
2483
+
2484
+ # the properties below are optional
2485
+ ami_account_id="amiAccountId",
2486
+ data_type="dataType"
2487
+ )]
2467
2488
  )
2468
2489
  '''
2469
2490
  if __debug__:
@@ -2474,6 +2495,7 @@ class CfnDistributionConfiguration(
2474
2495
  check_type(argname="argument fast_launch_configurations", value=fast_launch_configurations, expected_type=type_hints["fast_launch_configurations"])
2475
2496
  check_type(argname="argument launch_template_configurations", value=launch_template_configurations, expected_type=type_hints["launch_template_configurations"])
2476
2497
  check_type(argname="argument license_configuration_arns", value=license_configuration_arns, expected_type=type_hints["license_configuration_arns"])
2498
+ check_type(argname="argument ssm_parameter_configurations", value=ssm_parameter_configurations, expected_type=type_hints["ssm_parameter_configurations"])
2477
2499
  self._values: typing.Dict[builtins.str, typing.Any] = {
2478
2500
  "region": region,
2479
2501
  }
@@ -2487,6 +2509,8 @@ class CfnDistributionConfiguration(
2487
2509
  self._values["launch_template_configurations"] = launch_template_configurations
2488
2510
  if license_configuration_arns is not None:
2489
2511
  self._values["license_configuration_arns"] = license_configuration_arns
2512
+ if ssm_parameter_configurations is not None:
2513
+ self._values["ssm_parameter_configurations"] = ssm_parameter_configurations
2490
2514
 
2491
2515
  @builtins.property
2492
2516
  def region(self) -> builtins.str:
@@ -2557,6 +2581,17 @@ class CfnDistributionConfiguration(
2557
2581
  result = self._values.get("license_configuration_arns")
2558
2582
  return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2559
2583
 
2584
+ @builtins.property
2585
+ def ssm_parameter_configurations(
2586
+ self,
2587
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionConfiguration.SsmParameterConfigurationProperty"]]]]:
2588
+ '''Contains settings to update AWS Systems Manager (SSM) Parameter Store Parameters with output AMI IDs from the build by target Region.
2589
+
2590
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-distribution.html#cfn-imagebuilder-distributionconfiguration-distribution-ssmparameterconfigurations
2591
+ '''
2592
+ result = self._values.get("ssm_parameter_configurations")
2593
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionConfiguration.SsmParameterConfigurationProperty"]]]], result)
2594
+
2560
2595
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
2561
2596
  return isinstance(rhs, self.__class__) and rhs._values == self._values
2562
2597
 
@@ -3055,6 +3090,104 @@ class CfnDistributionConfiguration(
3055
3090
  k + "=" + repr(v) for k, v in self._values.items()
3056
3091
  )
3057
3092
 
3093
+ @jsii.data_type(
3094
+ jsii_type="aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty",
3095
+ jsii_struct_bases=[],
3096
+ name_mapping={
3097
+ "parameter_name": "parameterName",
3098
+ "ami_account_id": "amiAccountId",
3099
+ "data_type": "dataType",
3100
+ },
3101
+ )
3102
+ class SsmParameterConfigurationProperty:
3103
+ def __init__(
3104
+ self,
3105
+ *,
3106
+ parameter_name: builtins.str,
3107
+ ami_account_id: typing.Optional[builtins.str] = None,
3108
+ data_type: typing.Optional[builtins.str] = None,
3109
+ ) -> None:
3110
+ '''Configuration for a single Parameter in the AWS Systems Manager (SSM) Parameter Store in a given Region.
3111
+
3112
+ :param parameter_name: This is the name of the Parameter in the target Region or account. The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.
3113
+ :param ami_account_id: Specify the account that will own the Parameter in a given Region. During distribution, this account must be specified in distribution settings as a target account for the Region.
3114
+ :param data_type: The data type specifies what type of value the Parameter contains. We recommend that you use data type ``aws:ec2:image`` .
3115
+
3116
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html
3117
+ :exampleMetadata: fixture=_generated
3118
+
3119
+ Example::
3120
+
3121
+ # The code below shows an example of how to instantiate this type.
3122
+ # The values are placeholders you should change.
3123
+ from aws_cdk import aws_imagebuilder as imagebuilder
3124
+
3125
+ ssm_parameter_configuration_property = imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
3126
+ parameter_name="parameterName",
3127
+
3128
+ # the properties below are optional
3129
+ ami_account_id="amiAccountId",
3130
+ data_type="dataType"
3131
+ )
3132
+ '''
3133
+ if __debug__:
3134
+ type_hints = typing.get_type_hints(_typecheckingstub__7078c821101535ab38d1fc3a5eaf267586f8ba156c0c7208c49773a19d7406c9)
3135
+ check_type(argname="argument parameter_name", value=parameter_name, expected_type=type_hints["parameter_name"])
3136
+ check_type(argname="argument ami_account_id", value=ami_account_id, expected_type=type_hints["ami_account_id"])
3137
+ check_type(argname="argument data_type", value=data_type, expected_type=type_hints["data_type"])
3138
+ self._values: typing.Dict[builtins.str, typing.Any] = {
3139
+ "parameter_name": parameter_name,
3140
+ }
3141
+ if ami_account_id is not None:
3142
+ self._values["ami_account_id"] = ami_account_id
3143
+ if data_type is not None:
3144
+ self._values["data_type"] = data_type
3145
+
3146
+ @builtins.property
3147
+ def parameter_name(self) -> builtins.str:
3148
+ '''This is the name of the Parameter in the target Region or account.
3149
+
3150
+ The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.
3151
+
3152
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-parametername
3153
+ '''
3154
+ result = self._values.get("parameter_name")
3155
+ assert result is not None, "Required property 'parameter_name' is missing"
3156
+ return typing.cast(builtins.str, result)
3157
+
3158
+ @builtins.property
3159
+ def ami_account_id(self) -> typing.Optional[builtins.str]:
3160
+ '''Specify the account that will own the Parameter in a given Region.
3161
+
3162
+ During distribution, this account must be specified in distribution settings as a target account for the Region.
3163
+
3164
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-amiaccountid
3165
+ '''
3166
+ result = self._values.get("ami_account_id")
3167
+ return typing.cast(typing.Optional[builtins.str], result)
3168
+
3169
+ @builtins.property
3170
+ def data_type(self) -> typing.Optional[builtins.str]:
3171
+ '''The data type specifies what type of value the Parameter contains.
3172
+
3173
+ We recommend that you use data type ``aws:ec2:image`` .
3174
+
3175
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-datatype
3176
+ '''
3177
+ result = self._values.get("data_type")
3178
+ return typing.cast(typing.Optional[builtins.str], result)
3179
+
3180
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3181
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3182
+
3183
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3184
+ return not (rhs == self)
3185
+
3186
+ def __repr__(self) -> str:
3187
+ return "SsmParameterConfigurationProperty(%s)" % ", ".join(
3188
+ k + "=" + repr(v) for k, v in self._values.items()
3189
+ )
3190
+
3058
3191
  @jsii.data_type(
3059
3192
  jsii_type="aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration.TargetContainerRepositoryProperty",
3060
3193
  jsii_struct_bases=[],
@@ -3191,7 +3324,14 @@ class CfnDistributionConfigurationProps:
3191
3324
  launch_template_id="launchTemplateId",
3192
3325
  set_default_version=False
3193
3326
  )],
3194
- license_configuration_arns=["licenseConfigurationArns"]
3327
+ license_configuration_arns=["licenseConfigurationArns"],
3328
+ ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
3329
+ parameter_name="parameterName",
3330
+
3331
+ # the properties below are optional
3332
+ ami_account_id="amiAccountId",
3333
+ data_type="dataType"
3334
+ )]
3195
3335
  )],
3196
3336
  name="name",
3197
3337
 
@@ -5475,9 +5615,9 @@ class CfnImageRecipe(
5475
5615
  metaclass=jsii.JSIIMeta,
5476
5616
  jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImageRecipe",
5477
5617
  ):
5478
- '''An Image Builder image recipe is a document that defines the base image and the components to be applied to the base image to produce the desired configuration for the output image.
5618
+ '''Creates a new image recipe.
5479
5619
 
5480
- You can use an image recipe to duplicate builds. Image Builder image recipes can be shared, branched, and edited using the console wizard, the AWS CLI , or the API. You can use image recipes with your version control software to maintain shareable versioned image recipes.
5620
+ Image recipes define how images are configured, tested, and assessed.
5481
5621
 
5482
5622
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html
5483
5623
  :cloudformationResource: AWS::ImageBuilder::ImageRecipe
@@ -5549,10 +5689,10 @@ class CfnImageRecipe(
5549
5689
  '''
5550
5690
  :param scope: Scope in which this resource is defined.
5551
5691
  :param id: Construct identifier for this resource (unique in its scope).
5552
- :param components: The components of the image recipe. Components are orchestration documents that define a sequence of steps for downloading, installing, configuring, and testing software packages. They also define validation and security hardening steps. A component is defined using a YAML document format.
5692
+ :param components: The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
5553
5693
  :param name: The name of the image recipe.
5554
- :param parent_image: The parent image of the image recipe. The string must be either an Image ARN or an AMI ID.
5555
- :param version: The semantic version of the image recipe.
5694
+ :param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
5695
+ :param version: The version of the image recipe.
5556
5696
  :param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
5557
5697
  :param block_device_mappings: The block device mappings to apply when creating images from this recipe.
5558
5698
  :param description: The description of the image recipe.
@@ -5643,7 +5783,7 @@ class CfnImageRecipe(
5643
5783
  def components(
5644
5784
  self,
5645
5785
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImageRecipe.ComponentConfigurationProperty"]]]:
5646
- '''The components of the image recipe.'''
5786
+ '''The components that are included in the image recipe.'''
5647
5787
  return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImageRecipe.ComponentConfigurationProperty"]]], jsii.get(self, "components"))
5648
5788
 
5649
5789
  @components.setter
@@ -5672,7 +5812,7 @@ class CfnImageRecipe(
5672
5812
  @builtins.property
5673
5813
  @jsii.member(jsii_name="parentImage")
5674
5814
  def parent_image(self) -> builtins.str:
5675
- '''The parent image of the image recipe.'''
5815
+ '''The base image for customizations specified in the image recipe.'''
5676
5816
  return typing.cast(builtins.str, jsii.get(self, "parentImage"))
5677
5817
 
5678
5818
  @parent_image.setter
@@ -5685,7 +5825,7 @@ class CfnImageRecipe(
5685
5825
  @builtins.property
5686
5826
  @jsii.member(jsii_name="version")
5687
5827
  def version(self) -> builtins.str:
5688
- '''The semantic version of the image recipe.'''
5828
+ '''The version of the image recipe.'''
5689
5829
  return typing.cast(builtins.str, jsii.get(self, "version"))
5690
5830
 
5691
5831
  @version.setter
@@ -6395,10 +6535,10 @@ class CfnImageRecipeProps:
6395
6535
  ) -> None:
6396
6536
  '''Properties for defining a ``CfnImageRecipe``.
6397
6537
 
6398
- :param components: The components of the image recipe. Components are orchestration documents that define a sequence of steps for downloading, installing, configuring, and testing software packages. They also define validation and security hardening steps. A component is defined using a YAML document format.
6538
+ :param components: The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
6399
6539
  :param name: The name of the image recipe.
6400
- :param parent_image: The parent image of the image recipe. The string must be either an Image ARN or an AMI ID.
6401
- :param version: The semantic version of the image recipe.
6540
+ :param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
6541
+ :param version: The version of the image recipe.
6402
6542
  :param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
6403
6543
  :param block_device_mappings: The block device mappings to apply when creating images from this recipe.
6404
6544
  :param description: The description of the image recipe.
@@ -6487,9 +6627,9 @@ class CfnImageRecipeProps:
6487
6627
  def components(
6488
6628
  self,
6489
6629
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImageRecipe.ComponentConfigurationProperty]]]:
6490
- '''The components of the image recipe.
6630
+ '''The components that are included in the image recipe.
6491
6631
 
6492
- Components are orchestration documents that define a sequence of steps for downloading, installing, configuring, and testing software packages. They also define validation and security hardening steps. A component is defined using a YAML document format.
6632
+ Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
6493
6633
 
6494
6634
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-components
6495
6635
  '''
@@ -6509,9 +6649,14 @@ class CfnImageRecipeProps:
6509
6649
 
6510
6650
  @builtins.property
6511
6651
  def parent_image(self) -> builtins.str:
6512
- '''The parent image of the image recipe.
6652
+ '''The base image for customizations specified in the image recipe.
6513
6653
 
6514
- The string must be either an Image ARN or an AMI ID.
6654
+ You can specify the parent image using one of the following options:
6655
+
6656
+ - AMI ID
6657
+ - Image Builder image Amazon Resource Name (ARN)
6658
+ - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN.
6659
+ - AWS Marketplace product ID
6515
6660
 
6516
6661
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage
6517
6662
  '''
@@ -6521,7 +6666,7 @@ class CfnImageRecipeProps:
6521
6666
 
6522
6667
  @builtins.property
6523
6668
  def version(self) -> builtins.str:
6524
- '''The semantic version of the image recipe.
6669
+ '''The version of the image recipe.
6525
6670
 
6526
6671
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version
6527
6672
  '''
@@ -9871,6 +10016,7 @@ def _typecheckingstub__29d1f34d5faec16ba828ad2333ee9218a18df31808a5a350be9b29d04
9871
10016
  fast_launch_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.FastLaunchConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9872
10017
  launch_template_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.LaunchTemplateConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9873
10018
  license_configuration_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
10019
+ ssm_parameter_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.SsmParameterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9874
10020
  ) -> None:
9875
10021
  """Type checking stubs"""
9876
10022
  pass
@@ -9921,6 +10067,15 @@ def _typecheckingstub__0b4c1c669ce6e1367a73060d15f089faa5ce58e96063ee38204bf9af1
9921
10067
  """Type checking stubs"""
9922
10068
  pass
9923
10069
 
10070
+ def _typecheckingstub__7078c821101535ab38d1fc3a5eaf267586f8ba156c0c7208c49773a19d7406c9(
10071
+ *,
10072
+ parameter_name: builtins.str,
10073
+ ami_account_id: typing.Optional[builtins.str] = None,
10074
+ data_type: typing.Optional[builtins.str] = None,
10075
+ ) -> None:
10076
+ """Type checking stubs"""
10077
+ pass
10078
+
9924
10079
  def _typecheckingstub__fd67a7cda75ae308d03a62ceb5b017b8de54cd08fd47374326a441ec680438a5(
9925
10080
  *,
9926
10081
  repository_name: typing.Optional[builtins.str] = None,
@@ -153,6 +153,12 @@ class AssessmentTemplate(
153
153
  check_type(argname="argument template", value=template, expected_type=type_hints["template"])
154
154
  return typing.cast("IAssessmentTemplate", jsii.sinvoke(cls, "fromCfnAssessmentTemplate", [scope, id, template]))
155
155
 
156
+ @jsii.python.classproperty
157
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
158
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
159
+ '''Uniquely identifies this class.'''
160
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
161
+
156
162
 
157
163
  @jsii.data_type(
158
164
  jsii_type="aws-cdk-lib.aws_inspector.AssessmentTemplateProps",
@@ -948,7 +948,7 @@ class CfnStreamConsumer(
948
948
 
949
949
  The consumer you register can then call `SubscribeToShard <https://docs.aws.amazon.com/kinesis/latest/APIReference/API_SubscribeToShard.html>`_ to receive data from the stream using enhanced fan-out, at a rate of up to 2 MiB per second for every shard you subscribe to. This rate is unaffected by the total number of consumers that read from the same stream.
950
950
 
951
- You can register up to five consumers per stream. However, you can request a limit increase using the `Kinesis Data Streams limits form <https://docs.aws.amazon.com/support/v1?#/>`_ . A given consumer can only be registered with one stream at a time.
951
+ You can register up to 20 consumers per stream. However, you can request a limit increase using the `Kinesis Data Streams limits form <https://docs.aws.amazon.com/support/v1?#/>`_ . A given consumer can only be registered with one stream at a time.
952
952
 
953
953
  For more information, see `Using Consumers with Enhanced Fan-Out <https://docs.aws.amazon.com/streams/latest/dev/introduction-to-enhanced-consumers.html>`_ .
954
954
 
@@ -3427,6 +3427,12 @@ class ResourcePolicy(
3427
3427
 
3428
3428
  jsii.create(self.__class__, self, [scope, id, props])
3429
3429
 
3430
+ @jsii.python.classproperty
3431
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
3432
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
3433
+ '''Uniquely identifies this class.'''
3434
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
3435
+
3430
3436
  @builtins.property
3431
3437
  @jsii.member(jsii_name="document")
3432
3438
  def document(self) -> _PolicyDocument_3ac34393:
@@ -4684,6 +4690,12 @@ class Stream(
4684
4690
 
4685
4691
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteProvisionedThroughputExceeded", [props]))
4686
4692
 
4693
+ @jsii.python.classproperty
4694
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
4695
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
4696
+ '''Uniquely identifies this class.'''
4697
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
4698
+
4687
4699
  @builtins.property
4688
4700
  @jsii.member(jsii_name="autoCreatePolicy")
4689
4701
  def _auto_create_policy(self) -> builtins.bool:
@@ -4923,6 +4935,12 @@ class StreamConsumer(
4923
4935
  check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
4924
4936
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantRead", [grantee]))
4925
4937
 
4938
+ @jsii.python.classproperty
4939
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
4940
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
4941
+ '''Uniquely identifies this class.'''
4942
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
4943
+
4926
4944
  @builtins.property
4927
4945
  @jsii.member(jsii_name="autoCreatePolicy")
4928
4946
  def _auto_create_policy(self) -> builtins.bool:
@@ -5256,7 +5256,7 @@ class CfnApplicationV2(
5256
5256
  :param service_execution_role: Specifies the IAM role that the application uses to access external resources.
5257
5257
  :param application_configuration: Use this parameter to configure the application.
5258
5258
  :param application_description: The description of the application. Default: - ""
5259
- :param application_maintenance_configuration: Describes the maintenance configuration for the application.
5259
+ :param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
5260
5260
  :param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
5261
5261
  :param application_name: The name of the application.
5262
5262
  :param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
@@ -5383,7 +5383,7 @@ class CfnApplicationV2(
5383
5383
  def application_maintenance_configuration(
5384
5384
  self,
5385
5385
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]]:
5386
- '''Describes the maintenance configuration for the application.'''
5386
+ '''Specifies the maintenance window parameters for a Kinesis Data Analytics application.'''
5387
5387
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]], jsii.get(self, "applicationMaintenanceConfiguration"))
5388
5388
 
5389
5389
  @application_maintenance_configuration.setter
@@ -5868,9 +5868,9 @@ class CfnApplicationV2(
5868
5868
  *,
5869
5869
  application_maintenance_window_start_time: builtins.str,
5870
5870
  ) -> None:
5871
- '''Specifies the maintence window parameters for a Kinesis Data Analytics application.
5871
+ '''Describes the maintenance configuration for the application.
5872
5872
 
5873
- :param application_maintenance_window_start_time: Specifies the start time of the maintence window.
5873
+ :param application_maintenance_window_start_time: The start time for the maintenance window.
5874
5874
 
5875
5875
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html
5876
5876
  :exampleMetadata: fixture=_generated
@@ -5894,7 +5894,7 @@ class CfnApplicationV2(
5894
5894
 
5895
5895
  @builtins.property
5896
5896
  def application_maintenance_window_start_time(self) -> builtins.str:
5897
- '''Specifies the start time of the maintence window.
5897
+ '''The start time for the maintenance window.
5898
5898
 
5899
5899
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration-applicationmaintenancewindowstarttime
5900
5900
  '''
@@ -8888,7 +8888,7 @@ class CfnApplicationV2Props:
8888
8888
  :param service_execution_role: Specifies the IAM role that the application uses to access external resources.
8889
8889
  :param application_configuration: Use this parameter to configure the application.
8890
8890
  :param application_description: The description of the application. Default: - ""
8891
- :param application_maintenance_configuration: Describes the maintenance configuration for the application.
8891
+ :param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
8892
8892
  :param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
8893
8893
  :param application_name: The name of the application.
8894
8894
  :param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
@@ -9148,7 +9148,7 @@ class CfnApplicationV2Props:
9148
9148
  def application_maintenance_configuration(
9149
9149
  self,
9150
9150
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplicationV2.ApplicationMaintenanceConfigurationProperty]]:
9151
- '''Describes the maintenance configuration for the application.
9151
+ '''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
9152
9152
 
9153
9153
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration
9154
9154
  '''
@@ -281,7 +281,7 @@ class CfnApplication(
281
281
  :param service_execution_role: Specifies the IAM role that the application uses to access external resources.
282
282
  :param application_configuration: Use this parameter to configure the application.
283
283
  :param application_description: The description of the application. Default: - ""
284
- :param application_maintenance_configuration: Describes the maintenance configuration for the application.
284
+ :param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
285
285
  :param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
286
286
  :param application_name: The name of the application.
287
287
  :param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
@@ -408,7 +408,7 @@ class CfnApplication(
408
408
  def application_maintenance_configuration(
409
409
  self,
410
410
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.ApplicationMaintenanceConfigurationProperty"]]:
411
- '''Describes the maintenance configuration for the application.'''
411
+ '''Specifies the maintenance window parameters for a Kinesis Data Analytics application.'''
412
412
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.ApplicationMaintenanceConfigurationProperty"]], jsii.get(self, "applicationMaintenanceConfiguration"))
413
413
 
414
414
  @application_maintenance_configuration.setter
@@ -893,9 +893,9 @@ class CfnApplication(
893
893
  *,
894
894
  application_maintenance_window_start_time: builtins.str,
895
895
  ) -> None:
896
- '''Specifies the maintence window parameters for a Kinesis Data Analytics application.
896
+ '''Describes the maintenance configuration for the application.
897
897
 
898
- :param application_maintenance_window_start_time: Specifies the start time of the maintence window.
898
+ :param application_maintenance_window_start_time: The start time for the maintenance window.
899
899
 
900
900
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html
901
901
  :exampleMetadata: fixture=_generated
@@ -919,7 +919,7 @@ class CfnApplication(
919
919
 
920
920
  @builtins.property
921
921
  def application_maintenance_window_start_time(self) -> builtins.str:
922
- '''Specifies the start time of the maintence window.
922
+ '''The start time for the maintenance window.
923
923
 
924
924
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration-applicationmaintenancewindowstarttime
925
925
  '''
@@ -4777,7 +4777,7 @@ class CfnApplicationProps:
4777
4777
  :param service_execution_role: Specifies the IAM role that the application uses to access external resources.
4778
4778
  :param application_configuration: Use this parameter to configure the application.
4779
4779
  :param application_description: The description of the application. Default: - ""
4780
- :param application_maintenance_configuration: Describes the maintenance configuration for the application.
4780
+ :param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
4781
4781
  :param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
4782
4782
  :param application_name: The name of the application.
4783
4783
  :param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
@@ -5037,7 +5037,7 @@ class CfnApplicationProps:
5037
5037
  def application_maintenance_configuration(
5038
5038
  self,
5039
5039
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.ApplicationMaintenanceConfigurationProperty]]:
5040
- '''Describes the maintenance configuration for the application.
5040
+ '''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
5041
5041
 
5042
5042
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration
5043
5043
  '''
@@ -12528,6 +12528,12 @@ class DeliveryStream(
12528
12528
 
12529
12529
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingRecords", [props]))
12530
12530
 
12531
+ @jsii.python.classproperty
12532
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
12533
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
12534
+ '''Uniquely identifies this class.'''
12535
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
12536
+
12531
12537
  @builtins.property
12532
12538
  @jsii.member(jsii_name="connections")
12533
12539
  def connections(self) -> _Connections_0f31fce8: