aws-cdk-lib 2.173.3__py3-none-any.whl → 2.174.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 (88) hide show
  1. aws_cdk/__init__.py +210 -181
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.173.3.jsii.tgz → aws-cdk-lib@2.174.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +127 -168
  5. aws_cdk/aws_appconfig/__init__.py +498 -1
  6. aws_cdk/aws_applicationautoscaling/__init__.py +4 -1
  7. aws_cdk/aws_appsync/__init__.py +4 -0
  8. aws_cdk/aws_autoscaling/__init__.py +96 -0
  9. aws_cdk/aws_batch/__init__.py +1084 -233
  10. aws_cdk/aws_bedrock/__init__.py +2119 -181
  11. aws_cdk/aws_cassandra/__init__.py +476 -4
  12. aws_cdk/aws_cleanrooms/__init__.py +543 -17
  13. aws_cdk/aws_cloudformation/__init__.py +172 -169
  14. aws_cdk/aws_cloudfront/__init__.py +773 -26
  15. aws_cdk/aws_cloudtrail/__init__.py +8 -2
  16. aws_cdk/aws_codebuild/__init__.py +83 -0
  17. aws_cdk/aws_codepipeline/__init__.py +2 -1
  18. aws_cdk/aws_cognito/__init__.py +232 -200
  19. aws_cdk/aws_connect/__init__.py +187 -36
  20. aws_cdk/aws_connectcampaignsv2/__init__.py +106 -12
  21. aws_cdk/aws_databrew/__init__.py +69 -1
  22. aws_cdk/aws_datasync/__init__.py +33 -28
  23. aws_cdk/aws_datazone/__init__.py +141 -41
  24. aws_cdk/aws_dlm/__init__.py +20 -10
  25. aws_cdk/aws_dms/__init__.py +722 -30
  26. aws_cdk/aws_dynamodb/__init__.py +76 -4
  27. aws_cdk/aws_ec2/__init__.py +1233 -65
  28. aws_cdk/aws_ecr/__init__.py +31 -0
  29. aws_cdk/aws_ecr_assets/__init__.py +5 -0
  30. aws_cdk/aws_ecs/__init__.py +88 -11
  31. aws_cdk/aws_efs/__init__.py +15 -8
  32. aws_cdk/aws_eks/__init__.py +114 -45
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  34. aws_cdk/aws_emrserverless/__init__.py +143 -0
  35. aws_cdk/aws_events/__init__.py +50 -30
  36. aws_cdk/aws_fis/__init__.py +33 -33
  37. aws_cdk/aws_fsx/__init__.py +20 -10
  38. aws_cdk/aws_glue/__init__.py +34 -11
  39. aws_cdk/aws_greengrass/__init__.py +8 -8
  40. aws_cdk/aws_guardduty/__init__.py +1 -1
  41. aws_cdk/aws_imagebuilder/__init__.py +45 -47
  42. aws_cdk/aws_internetmonitor/__init__.py +3 -3
  43. aws_cdk/aws_invoicing/__init__.py +55 -30
  44. aws_cdk/aws_iot/__init__.py +1117 -4
  45. aws_cdk/aws_iot1click/__init__.py +17 -7
  46. aws_cdk/aws_kendra/__init__.py +4 -6
  47. aws_cdk/aws_lambda/__init__.py +15 -1
  48. aws_cdk/aws_logs/__init__.py +4011 -86
  49. aws_cdk/aws_m2/__init__.py +41 -0
  50. aws_cdk/aws_mediaconnect/__init__.py +202 -7
  51. aws_cdk/aws_memorydb/__init__.py +22 -22
  52. aws_cdk/aws_networkmanager/__init__.py +758 -0
  53. aws_cdk/aws_opensearchservice/__init__.py +222 -0
  54. aws_cdk/aws_organizations/__init__.py +5 -3
  55. aws_cdk/aws_pcs/__init__.py +3038 -0
  56. aws_cdk/aws_pipes/__init__.py +10 -10
  57. aws_cdk/aws_qbusiness/__init__.py +415 -140
  58. aws_cdk/aws_quicksight/__init__.py +15932 -6448
  59. aws_cdk/aws_ram/__init__.py +5 -11
  60. aws_cdk/aws_rbin/__init__.py +28 -16
  61. aws_cdk/aws_rds/__init__.py +184 -24
  62. aws_cdk/aws_redshiftserverless/__init__.py +156 -0
  63. aws_cdk/aws_resiliencehub/__init__.py +2 -1
  64. aws_cdk/aws_route53_targets/__init__.py +5 -5
  65. aws_cdk/aws_s3/__init__.py +25 -15
  66. aws_cdk/aws_s3express/__init__.py +7 -7
  67. aws_cdk/aws_s3tables/__init__.py +683 -0
  68. aws_cdk/aws_sagemaker/__init__.py +574 -189
  69. aws_cdk/aws_secretsmanager/__init__.py +2 -0
  70. aws_cdk/aws_securityhub/__init__.py +41 -165
  71. aws_cdk/aws_servicediscovery/__init__.py +10 -3
  72. aws_cdk/aws_ses/__init__.py +190 -5
  73. aws_cdk/aws_sns/__init__.py +7 -3
  74. aws_cdk/aws_synthetics/__init__.py +29 -4
  75. aws_cdk/aws_transfer/__init__.py +8 -0
  76. aws_cdk/aws_vpclattice/__init__.py +147 -77
  77. aws_cdk/aws_wafv2/__init__.py +20 -8
  78. aws_cdk/aws_wisdom/__init__.py +162 -111
  79. aws_cdk/aws_workspaces/__init__.py +10 -4
  80. aws_cdk/cloud_assembly_schema/__init__.py +22 -0
  81. aws_cdk/custom_resources/__init__.py +31 -0
  82. aws_cdk/cx_api/__init__.py +19 -0
  83. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/LICENSE +1 -1
  84. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/METADATA +2 -2
  85. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/NOTICE +1 -1
  86. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/RECORD +88 -86
  87. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/WHEEL +0 -0
  88. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/top_level.txt +0 -0
@@ -3289,9 +3289,6 @@ class CfnImage(
3289
3289
  from aws_cdk import aws_imagebuilder as imagebuilder
3290
3290
 
3291
3291
  cfn_image = imagebuilder.CfnImage(self, "MyCfnImage",
3292
- infrastructure_configuration_arn="infrastructureConfigurationArn",
3293
-
3294
- # the properties below are optional
3295
3292
  container_recipe_arn="containerRecipeArn",
3296
3293
  distribution_configuration_arn="distributionConfigurationArn",
3297
3294
  enhanced_image_metadata_enabled=False,
@@ -3308,6 +3305,7 @@ class CfnImage(
3308
3305
  image_tests_enabled=False,
3309
3306
  timeout_minutes=123
3310
3307
  ),
3308
+ infrastructure_configuration_arn="infrastructureConfigurationArn",
3311
3309
  tags={
3312
3310
  "tags_key": "tags"
3313
3311
  },
@@ -3328,7 +3326,6 @@ class CfnImage(
3328
3326
  scope: _constructs_77d1e7e8.Construct,
3329
3327
  id: builtins.str,
3330
3328
  *,
3331
- infrastructure_configuration_arn: builtins.str,
3332
3329
  container_recipe_arn: typing.Optional[builtins.str] = None,
3333
3330
  distribution_configuration_arn: typing.Optional[builtins.str] = None,
3334
3331
  enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -3336,13 +3333,13 @@ class CfnImage(
3336
3333
  image_recipe_arn: typing.Optional[builtins.str] = None,
3337
3334
  image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3338
3335
  image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3336
+ infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
3339
3337
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3340
3338
  workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.WorkflowConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
3341
3339
  ) -> None:
3342
3340
  '''
3343
3341
  :param scope: Scope in which this resource is defined.
3344
3342
  :param id: Construct identifier for this resource (unique in its scope).
3345
- :param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
3346
3343
  :param container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
3347
3344
  :param distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration that defines and configures the outputs of your pipeline.
3348
3345
  :param enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
@@ -3350,6 +3347,7 @@ class CfnImage(
3350
3347
  :param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
3351
3348
  :param image_scanning_configuration: Contains settings for vulnerability scans.
3352
3349
  :param image_tests_configuration: The image tests configuration of the image.
3350
+ :param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
3353
3351
  :param tags: The tags of the image.
3354
3352
  :param workflows: Contains an array of workflow configuration objects.
3355
3353
  '''
@@ -3358,7 +3356,6 @@ class CfnImage(
3358
3356
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
3359
3357
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3360
3358
  props = CfnImageProps(
3361
- infrastructure_configuration_arn=infrastructure_configuration_arn,
3362
3359
  container_recipe_arn=container_recipe_arn,
3363
3360
  distribution_configuration_arn=distribution_configuration_arn,
3364
3361
  enhanced_image_metadata_enabled=enhanced_image_metadata_enabled,
@@ -3366,6 +3363,7 @@ class CfnImage(
3366
3363
  image_recipe_arn=image_recipe_arn,
3367
3364
  image_scanning_configuration=image_scanning_configuration,
3368
3365
  image_tests_configuration=image_tests_configuration,
3366
+ infrastructure_configuration_arn=infrastructure_configuration_arn,
3369
3367
  tags=tags,
3370
3368
  workflows=workflows,
3371
3369
  )
@@ -3455,19 +3453,6 @@ class CfnImage(
3455
3453
  '''Tag Manager which manages the tags for this resource.'''
3456
3454
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
3457
3455
 
3458
- @builtins.property
3459
- @jsii.member(jsii_name="infrastructureConfigurationArn")
3460
- def infrastructure_configuration_arn(self) -> builtins.str:
3461
- '''The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.'''
3462
- return typing.cast(builtins.str, jsii.get(self, "infrastructureConfigurationArn"))
3463
-
3464
- @infrastructure_configuration_arn.setter
3465
- def infrastructure_configuration_arn(self, value: builtins.str) -> None:
3466
- if __debug__:
3467
- type_hints = typing.get_type_hints(_typecheckingstub__a190431e330e97015561230a0d9b0477abed6793472228169b2ce3d498e18c8e)
3468
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3469
- jsii.set(self, "infrastructureConfigurationArn", value) # pyright: ignore[reportArgumentType]
3470
-
3471
3456
  @builtins.property
3472
3457
  @jsii.member(jsii_name="containerRecipeArn")
3473
3458
  def container_recipe_arn(self) -> typing.Optional[builtins.str]:
@@ -3577,6 +3562,22 @@ class CfnImage(
3577
3562
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3578
3563
  jsii.set(self, "imageTestsConfiguration", value) # pyright: ignore[reportArgumentType]
3579
3564
 
3565
+ @builtins.property
3566
+ @jsii.member(jsii_name="infrastructureConfigurationArn")
3567
+ def infrastructure_configuration_arn(self) -> typing.Optional[builtins.str]:
3568
+ '''The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.'''
3569
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "infrastructureConfigurationArn"))
3570
+
3571
+ @infrastructure_configuration_arn.setter
3572
+ def infrastructure_configuration_arn(
3573
+ self,
3574
+ value: typing.Optional[builtins.str],
3575
+ ) -> None:
3576
+ if __debug__:
3577
+ type_hints = typing.get_type_hints(_typecheckingstub__a190431e330e97015561230a0d9b0477abed6793472228169b2ce3d498e18c8e)
3578
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3579
+ jsii.set(self, "infrastructureConfigurationArn", value) # pyright: ignore[reportArgumentType]
3580
+
3580
3581
  @builtins.property
3581
3582
  @jsii.member(jsii_name="tagsRaw")
3582
3583
  def tags_raw(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
@@ -5240,7 +5241,6 @@ class CfnImagePipelineProps:
5240
5241
  jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImageProps",
5241
5242
  jsii_struct_bases=[],
5242
5243
  name_mapping={
5243
- "infrastructure_configuration_arn": "infrastructureConfigurationArn",
5244
5244
  "container_recipe_arn": "containerRecipeArn",
5245
5245
  "distribution_configuration_arn": "distributionConfigurationArn",
5246
5246
  "enhanced_image_metadata_enabled": "enhancedImageMetadataEnabled",
@@ -5248,6 +5248,7 @@ class CfnImagePipelineProps:
5248
5248
  "image_recipe_arn": "imageRecipeArn",
5249
5249
  "image_scanning_configuration": "imageScanningConfiguration",
5250
5250
  "image_tests_configuration": "imageTestsConfiguration",
5251
+ "infrastructure_configuration_arn": "infrastructureConfigurationArn",
5251
5252
  "tags": "tags",
5252
5253
  "workflows": "workflows",
5253
5254
  },
@@ -5256,7 +5257,6 @@ class CfnImageProps:
5256
5257
  def __init__(
5257
5258
  self,
5258
5259
  *,
5259
- infrastructure_configuration_arn: builtins.str,
5260
5260
  container_recipe_arn: typing.Optional[builtins.str] = None,
5261
5261
  distribution_configuration_arn: typing.Optional[builtins.str] = None,
5262
5262
  enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -5264,12 +5264,12 @@ class CfnImageProps:
5264
5264
  image_recipe_arn: typing.Optional[builtins.str] = None,
5265
5265
  image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5266
5266
  image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5267
+ infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
5267
5268
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5268
5269
  workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
5269
5270
  ) -> None:
5270
5271
  '''Properties for defining a ``CfnImage``.
5271
5272
 
5272
- :param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
5273
5273
  :param container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
5274
5274
  :param distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration that defines and configures the outputs of your pipeline.
5275
5275
  :param enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
@@ -5277,6 +5277,7 @@ class CfnImageProps:
5277
5277
  :param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
5278
5278
  :param image_scanning_configuration: Contains settings for vulnerability scans.
5279
5279
  :param image_tests_configuration: The image tests configuration of the image.
5280
+ :param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
5280
5281
  :param tags: The tags of the image.
5281
5282
  :param workflows: Contains an array of workflow configuration objects.
5282
5283
 
@@ -5290,9 +5291,6 @@ class CfnImageProps:
5290
5291
  from aws_cdk import aws_imagebuilder as imagebuilder
5291
5292
 
5292
5293
  cfn_image_props = imagebuilder.CfnImageProps(
5293
- infrastructure_configuration_arn="infrastructureConfigurationArn",
5294
-
5295
- # the properties below are optional
5296
5294
  container_recipe_arn="containerRecipeArn",
5297
5295
  distribution_configuration_arn="distributionConfigurationArn",
5298
5296
  enhanced_image_metadata_enabled=False,
@@ -5309,6 +5307,7 @@ class CfnImageProps:
5309
5307
  image_tests_enabled=False,
5310
5308
  timeout_minutes=123
5311
5309
  ),
5310
+ infrastructure_configuration_arn="infrastructureConfigurationArn",
5312
5311
  tags={
5313
5312
  "tags_key": "tags"
5314
5313
  },
@@ -5325,7 +5324,6 @@ class CfnImageProps:
5325
5324
  '''
5326
5325
  if __debug__:
5327
5326
  type_hints = typing.get_type_hints(_typecheckingstub__5f217922888735234464ee573256caba679b2c1215a99c91ad609c9c75d22d47)
5328
- check_type(argname="argument infrastructure_configuration_arn", value=infrastructure_configuration_arn, expected_type=type_hints["infrastructure_configuration_arn"])
5329
5327
  check_type(argname="argument container_recipe_arn", value=container_recipe_arn, expected_type=type_hints["container_recipe_arn"])
5330
5328
  check_type(argname="argument distribution_configuration_arn", value=distribution_configuration_arn, expected_type=type_hints["distribution_configuration_arn"])
5331
5329
  check_type(argname="argument enhanced_image_metadata_enabled", value=enhanced_image_metadata_enabled, expected_type=type_hints["enhanced_image_metadata_enabled"])
@@ -5333,11 +5331,10 @@ class CfnImageProps:
5333
5331
  check_type(argname="argument image_recipe_arn", value=image_recipe_arn, expected_type=type_hints["image_recipe_arn"])
5334
5332
  check_type(argname="argument image_scanning_configuration", value=image_scanning_configuration, expected_type=type_hints["image_scanning_configuration"])
5335
5333
  check_type(argname="argument image_tests_configuration", value=image_tests_configuration, expected_type=type_hints["image_tests_configuration"])
5334
+ check_type(argname="argument infrastructure_configuration_arn", value=infrastructure_configuration_arn, expected_type=type_hints["infrastructure_configuration_arn"])
5336
5335
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5337
5336
  check_type(argname="argument workflows", value=workflows, expected_type=type_hints["workflows"])
5338
- self._values: typing.Dict[builtins.str, typing.Any] = {
5339
- "infrastructure_configuration_arn": infrastructure_configuration_arn,
5340
- }
5337
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5341
5338
  if container_recipe_arn is not None:
5342
5339
  self._values["container_recipe_arn"] = container_recipe_arn
5343
5340
  if distribution_configuration_arn is not None:
@@ -5352,21 +5349,13 @@ class CfnImageProps:
5352
5349
  self._values["image_scanning_configuration"] = image_scanning_configuration
5353
5350
  if image_tests_configuration is not None:
5354
5351
  self._values["image_tests_configuration"] = image_tests_configuration
5352
+ if infrastructure_configuration_arn is not None:
5353
+ self._values["infrastructure_configuration_arn"] = infrastructure_configuration_arn
5355
5354
  if tags is not None:
5356
5355
  self._values["tags"] = tags
5357
5356
  if workflows is not None:
5358
5357
  self._values["workflows"] = workflows
5359
5358
 
5360
- @builtins.property
5361
- def infrastructure_configuration_arn(self) -> builtins.str:
5362
- '''The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
5363
-
5364
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn
5365
- '''
5366
- result = self._values.get("infrastructure_configuration_arn")
5367
- assert result is not None, "Required property 'infrastructure_configuration_arn' is missing"
5368
- return typing.cast(builtins.str, result)
5369
-
5370
5359
  @builtins.property
5371
5360
  def container_recipe_arn(self) -> typing.Optional[builtins.str]:
5372
5361
  '''The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
@@ -5438,6 +5427,15 @@ class CfnImageProps:
5438
5427
  result = self._values.get("image_tests_configuration")
5439
5428
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnImage.ImageTestsConfigurationProperty]], result)
5440
5429
 
5430
+ @builtins.property
5431
+ def infrastructure_configuration_arn(self) -> typing.Optional[builtins.str]:
5432
+ '''The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
5433
+
5434
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-infrastructureconfigurationarn
5435
+ '''
5436
+ result = self._values.get("infrastructure_configuration_arn")
5437
+ return typing.cast(typing.Optional[builtins.str], result)
5438
+
5441
5439
  @builtins.property
5442
5440
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
5443
5441
  '''The tags of the image.
@@ -9918,7 +9916,6 @@ def _typecheckingstub__1406bc225111bc54a87c50d1d8180aed46d22e10134235c4fa581d313
9918
9916
  scope: _constructs_77d1e7e8.Construct,
9919
9917
  id: builtins.str,
9920
9918
  *,
9921
- infrastructure_configuration_arn: builtins.str,
9922
9919
  container_recipe_arn: typing.Optional[builtins.str] = None,
9923
9920
  distribution_configuration_arn: typing.Optional[builtins.str] = None,
9924
9921
  enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -9926,6 +9923,7 @@ def _typecheckingstub__1406bc225111bc54a87c50d1d8180aed46d22e10134235c4fa581d313
9926
9923
  image_recipe_arn: typing.Optional[builtins.str] = None,
9927
9924
  image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9928
9925
  image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9926
+ infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
9929
9927
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
9930
9928
  workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9931
9929
  ) -> None:
@@ -9944,12 +9942,6 @@ def _typecheckingstub__8052419a8d8b963d7c9b1b75cd6654f49a4ad3b49a754eb0e90c63bf7
9944
9942
  """Type checking stubs"""
9945
9943
  pass
9946
9944
 
9947
- def _typecheckingstub__a190431e330e97015561230a0d9b0477abed6793472228169b2ce3d498e18c8e(
9948
- value: builtins.str,
9949
- ) -> None:
9950
- """Type checking stubs"""
9951
- pass
9952
-
9953
9945
  def _typecheckingstub__a6e036331c49a5f902af4e72bc4f291c89a7f5f03a4453a10c55e0f2bde10ac7(
9954
9946
  value: typing.Optional[builtins.str],
9955
9947
  ) -> None:
@@ -9992,6 +9984,12 @@ def _typecheckingstub__e66513eb336b5e3ebc869a424fc1c9d0df46865060b926ea955e8a9df
9992
9984
  """Type checking stubs"""
9993
9985
  pass
9994
9986
 
9987
+ def _typecheckingstub__a190431e330e97015561230a0d9b0477abed6793472228169b2ce3d498e18c8e(
9988
+ value: typing.Optional[builtins.str],
9989
+ ) -> None:
9990
+ """Type checking stubs"""
9991
+ pass
9992
+
9995
9993
  def _typecheckingstub__c0e6ba55682dabdf30b5bb38534688ff3dbd8c6a8044f77eb6180bb8d815ceb8(
9996
9994
  value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
9997
9995
  ) -> None:
@@ -10236,7 +10234,6 @@ def _typecheckingstub__95f10c4451c6bf3f2cf15951831cd372e35975262c0be294c1ae7c774
10236
10234
 
10237
10235
  def _typecheckingstub__5f217922888735234464ee573256caba679b2c1215a99c91ad609c9c75d22d47(
10238
10236
  *,
10239
- infrastructure_configuration_arn: builtins.str,
10240
10237
  container_recipe_arn: typing.Optional[builtins.str] = None,
10241
10238
  distribution_configuration_arn: typing.Optional[builtins.str] = None,
10242
10239
  enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -10244,6 +10241,7 @@ def _typecheckingstub__5f217922888735234464ee573256caba679b2c1215a99c91ad609c9c7
10244
10241
  image_recipe_arn: typing.Optional[builtins.str] = None,
10245
10242
  image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10246
10243
  image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10244
+ infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
10247
10245
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
10248
10246
  workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
10249
10247
  ) -> None:
@@ -155,7 +155,7 @@ class CfnMonitor(
155
155
  :param scope: Scope in which this resource is defined.
156
156
  :param id: Construct identifier for this resource (unique in its scope).
157
157
  :param monitor_name: The name of the monitor. A monitor name can contain only alphanumeric characters, dashes (-), periods (.), and underscores (_).
158
- :param health_events_config: A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for an overall performance or availability issue, across an application's geographies. Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Amazon CloudWatch Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both. You can also set thresholds for local health scores,, where Internet Monitor creates a health event when scores cross a threshold for one or more city-networks, in addition to creating an event when an overall score crosses a threshold. If you don't set a health event threshold, the default value is 95%. For local thresholds, you also set a minimum percentage of overall traffic that is impacted by an issue before Internet Monitor creates an event. In addition, you can disable local thresholds, for performance scores, availability scores, or both. For more information, see `Change health event thresholds <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-overview.html#IMUpdateThresholdFromOverview>`_ in the Internet Monitor section of the *CloudWatch User Guide* .
158
+ :param health_events_config: A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for an overall performance or availability issue, across an application's geographies. Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both. You can also set thresholds for local health scores,, where Internet Monitor creates a health event when scores cross a threshold for one or more city-networks, in addition to creating an event when an overall score crosses a threshold. If you don't set a health event threshold, the default value is 95%. For local thresholds, you also set a minimum percentage of overall traffic that is impacted by an issue before Internet Monitor creates an event. In addition, you can disable local thresholds, for performance scores, availability scores, or both. For more information, see `Change health event thresholds <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-overview.html#IMUpdateThresholdFromOverview>`_ in the Internet Monitor section of the *CloudWatch User Guide* .
159
159
  :param include_linked_accounts: A boolean option that you can set to ``TRUE`` to include monitors for linked accounts in a list of monitors, when you've set up cross-account sharing in Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see `Internet Monitor cross-account observability <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cwim-cross-account.html>`_ in the Amazon CloudWatch User Guide.
160
160
  :param internet_measurements_log_delivery: Publish internet measurements for a monitor for all city-networks (up to the 500,000 service limit) to another location, such as an Amazon S3 bucket. Measurements are also published to Amazon CloudWatch Logs for the first 500 (by traffic volume) city-networks (client locations and ASNs, typically internet service providers or ISPs).
161
161
  :param linked_account_id: The account ID for an account that you've set up cross-account sharing for in Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see `Internet Monitor cross-account observability <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cwim-cross-account.html>`_ in the Amazon CloudWatch User Guide.
@@ -875,7 +875,7 @@ class CfnMonitorProps:
875
875
  '''Properties for defining a ``CfnMonitor``.
876
876
 
877
877
  :param monitor_name: The name of the monitor. A monitor name can contain only alphanumeric characters, dashes (-), periods (.), and underscores (_).
878
- :param health_events_config: A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for an overall performance or availability issue, across an application's geographies. Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Amazon CloudWatch Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both. You can also set thresholds for local health scores,, where Internet Monitor creates a health event when scores cross a threshold for one or more city-networks, in addition to creating an event when an overall score crosses a threshold. If you don't set a health event threshold, the default value is 95%. For local thresholds, you also set a minimum percentage of overall traffic that is impacted by an issue before Internet Monitor creates an event. In addition, you can disable local thresholds, for performance scores, availability scores, or both. For more information, see `Change health event thresholds <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-overview.html#IMUpdateThresholdFromOverview>`_ in the Internet Monitor section of the *CloudWatch User Guide* .
878
+ :param health_events_config: A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for an overall performance or availability issue, across an application's geographies. Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both. You can also set thresholds for local health scores,, where Internet Monitor creates a health event when scores cross a threshold for one or more city-networks, in addition to creating an event when an overall score crosses a threshold. If you don't set a health event threshold, the default value is 95%. For local thresholds, you also set a minimum percentage of overall traffic that is impacted by an issue before Internet Monitor creates an event. In addition, you can disable local thresholds, for performance scores, availability scores, or both. For more information, see `Change health event thresholds <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-overview.html#IMUpdateThresholdFromOverview>`_ in the Internet Monitor section of the *CloudWatch User Guide* .
879
879
  :param include_linked_accounts: A boolean option that you can set to ``TRUE`` to include monitors for linked accounts in a list of monitors, when you've set up cross-account sharing in Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see `Internet Monitor cross-account observability <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cwim-cross-account.html>`_ in the Amazon CloudWatch User Guide.
880
880
  :param internet_measurements_log_delivery: Publish internet measurements for a monitor for all city-networks (up to the 500,000 service limit) to another location, such as an Amazon S3 bucket. Measurements are also published to Amazon CloudWatch Logs for the first 500 (by traffic volume) city-networks (client locations and ASNs, typically internet service providers or ISPs).
881
881
  :param linked_account_id: The account ID for an account that you've set up cross-account sharing for in Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see `Internet Monitor cross-account observability <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cwim-cross-account.html>`_ in the Amazon CloudWatch User Guide.
@@ -993,7 +993,7 @@ class CfnMonitorProps:
993
993
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMonitor.HealthEventsConfigProperty]]:
994
994
  '''A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for an overall performance or availability issue, across an application's geographies.
995
995
 
996
- Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Amazon CloudWatch Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both.
996
+ Defines the percentages, for overall performance scores and availability scores for an application, that are the thresholds for when Internet Monitor creates a health event. You can override the defaults to set a custom threshold for overall performance or availability scores, or both.
997
997
 
998
998
  You can also set thresholds for local health scores,, where Internet Monitor creates a health event when scores cross a threshold for one or more city-networks, in addition to creating an event when an overall score crosses a threshold.
999
999
 
@@ -84,9 +84,9 @@ class CfnInvoiceUnit(
84
84
  metaclass=jsii.JSIIMeta,
85
85
  jsii_type="aws-cdk-lib.aws_invoicing.CfnInvoiceUnit",
86
86
  ):
87
- '''An invoice unit is a set of mutually exclusive accounts that correspond to your business entity.
87
+ '''An invoice unit is a set of mutually exclusive account that correspond to your business entity.
88
88
 
89
- Invoice units allow you to separate AWS account costs and configures your invoice for each business entity.
89
+ Invoice units allow you separate AWS account costs and configures your invoice for each business entity going forward.
90
90
 
91
91
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html
92
92
  :cloudformationResource: AWS::Invoicing::InvoiceUnit
@@ -130,12 +130,12 @@ class CfnInvoiceUnit(
130
130
  '''
131
131
  :param scope: Scope in which this resource is defined.
132
132
  :param id: Construct identifier for this resource (unique in its scope).
133
- :param invoice_receiver:
134
- :param name:
135
- :param rule:
136
- :param description:
137
- :param resource_tags:
138
- :param tax_inheritance_disabled:
133
+ :param invoice_receiver: The account that receives invoices related to the invoice unit.
134
+ :param name: A unique name that is distinctive within your AWS .
135
+ :param rule: An ``InvoiceUnitRule`` object used the categorize invoice units.
136
+ :param description: The assigned description for an invoice unit. This information can't be modified or deleted.
137
+ :param resource_tags: The tag structure that contains a tag key and value.
138
+ :param tax_inheritance_disabled: Whether the invoice unit based tax inheritance is/ should be enabled or disabled.
139
139
  '''
140
140
  if __debug__:
141
141
  type_hints = typing.get_type_hints(_typecheckingstub__ec21d6093b38a709121aa7ff8c0297fdced84c912861970ec02e3bc317566bc6)
@@ -185,7 +185,10 @@ class CfnInvoiceUnit(
185
185
  @builtins.property
186
186
  @jsii.member(jsii_name="attrInvoiceUnitArn")
187
187
  def attr_invoice_unit_arn(self) -> builtins.str:
188
- '''
188
+ '''The ARN to identify an invoice unit.
189
+
190
+ This information can't be modified or deleted.
191
+
189
192
  :cloudformationAttribute: InvoiceUnitArn
190
193
  '''
191
194
  return typing.cast(builtins.str, jsii.get(self, "attrInvoiceUnitArn"))
@@ -193,7 +196,10 @@ class CfnInvoiceUnit(
193
196
  @builtins.property
194
197
  @jsii.member(jsii_name="attrLastModified")
195
198
  def attr_last_modified(self) -> _IResolvable_da3f097b:
196
- '''
199
+ '''The last time the invoice unit was updated.
200
+
201
+ This is important to determine the version of invoice unit configuration used to create the invoices. Any invoice created after this modified time will use this invoice unit configuration.
202
+
197
203
  :cloudformationAttribute: LastModified
198
204
  '''
199
205
  return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrLastModified"))
@@ -212,6 +218,7 @@ class CfnInvoiceUnit(
212
218
  @builtins.property
213
219
  @jsii.member(jsii_name="invoiceReceiver")
214
220
  def invoice_receiver(self) -> builtins.str:
221
+ '''The account that receives invoices related to the invoice unit.'''
215
222
  return typing.cast(builtins.str, jsii.get(self, "invoiceReceiver"))
216
223
 
217
224
  @invoice_receiver.setter
@@ -224,6 +231,7 @@ class CfnInvoiceUnit(
224
231
  @builtins.property
225
232
  @jsii.member(jsii_name="name")
226
233
  def name(self) -> builtins.str:
234
+ '''A unique name that is distinctive within your AWS .'''
227
235
  return typing.cast(builtins.str, jsii.get(self, "name"))
228
236
 
229
237
  @name.setter
@@ -238,6 +246,7 @@ class CfnInvoiceUnit(
238
246
  def rule(
239
247
  self,
240
248
  ) -> typing.Union[_IResolvable_da3f097b, "CfnInvoiceUnit.RuleProperty"]:
249
+ '''An ``InvoiceUnitRule`` object used the categorize invoice units.'''
241
250
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnInvoiceUnit.RuleProperty"], jsii.get(self, "rule"))
242
251
 
243
252
  @rule.setter
@@ -253,6 +262,7 @@ class CfnInvoiceUnit(
253
262
  @builtins.property
254
263
  @jsii.member(jsii_name="description")
255
264
  def description(self) -> typing.Optional[builtins.str]:
265
+ '''The assigned description for an invoice unit.'''
256
266
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
257
267
 
258
268
  @description.setter
@@ -267,6 +277,7 @@ class CfnInvoiceUnit(
267
277
  def resource_tags(
268
278
  self,
269
279
  ) -> typing.Optional[typing.List["CfnInvoiceUnit.ResourceTagProperty"]]:
280
+ '''The tag structure that contains a tag key and value.'''
270
281
  return typing.cast(typing.Optional[typing.List["CfnInvoiceUnit.ResourceTagProperty"]], jsii.get(self, "resourceTags"))
271
282
 
272
283
  @resource_tags.setter
@@ -284,6 +295,7 @@ class CfnInvoiceUnit(
284
295
  def tax_inheritance_disabled(
285
296
  self,
286
297
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
298
+ '''Whether the invoice unit based tax inheritance is/ should be enabled or disabled.'''
287
299
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "taxInheritanceDisabled"))
288
300
 
289
301
  @tax_inheritance_disabled.setter
@@ -303,9 +315,10 @@ class CfnInvoiceUnit(
303
315
  )
304
316
  class ResourceTagProperty:
305
317
  def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
306
- '''
307
- :param key:
308
- :param value:
318
+ '''The tag structure that contains a tag key and value.
319
+
320
+ :param key: The object key of your of your resource tag.
321
+ :param value: The specific value of the resource tag.
309
322
 
310
323
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-resourcetag.html
311
324
  :exampleMetadata: fixture=_generated
@@ -332,7 +345,8 @@ class CfnInvoiceUnit(
332
345
 
333
346
  @builtins.property
334
347
  def key(self) -> builtins.str:
335
- '''
348
+ '''The object key of your of your resource tag.
349
+
336
350
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-resourcetag.html#cfn-invoicing-invoiceunit-resourcetag-key
337
351
  '''
338
352
  result = self._values.get("key")
@@ -341,7 +355,8 @@ class CfnInvoiceUnit(
341
355
 
342
356
  @builtins.property
343
357
  def value(self) -> builtins.str:
344
- '''
358
+ '''The specific value of the resource tag.
359
+
345
360
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-resourcetag.html#cfn-invoicing-invoiceunit-resourcetag-value
346
361
  '''
347
362
  result = self._values.get("value")
@@ -366,8 +381,9 @@ class CfnInvoiceUnit(
366
381
  )
367
382
  class RuleProperty:
368
383
  def __init__(self, *, linked_accounts: typing.Sequence[builtins.str]) -> None:
369
- '''
370
- :param linked_accounts:
384
+ '''The ``InvoiceUnitRule`` object used to update invoice units.
385
+
386
+ :param linked_accounts: The list of ``LINKED_ACCOUNT`` IDs where charges are included within the invoice unit.
371
387
 
372
388
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-rule.html
373
389
  :exampleMetadata: fixture=_generated
@@ -391,7 +407,8 @@ class CfnInvoiceUnit(
391
407
 
392
408
  @builtins.property
393
409
  def linked_accounts(self) -> typing.List[builtins.str]:
394
- '''
410
+ '''The list of ``LINKED_ACCOUNT`` IDs where charges are included within the invoice unit.
411
+
395
412
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-rule.html#cfn-invoicing-invoiceunit-rule-linkedaccounts
396
413
  '''
397
414
  result = self._values.get("linked_accounts")
@@ -435,12 +452,12 @@ class CfnInvoiceUnitProps:
435
452
  ) -> None:
436
453
  '''Properties for defining a ``CfnInvoiceUnit``.
437
454
 
438
- :param invoice_receiver:
439
- :param name:
440
- :param rule:
441
- :param description:
442
- :param resource_tags:
443
- :param tax_inheritance_disabled:
455
+ :param invoice_receiver: The account that receives invoices related to the invoice unit.
456
+ :param name: A unique name that is distinctive within your AWS .
457
+ :param rule: An ``InvoiceUnitRule`` object used the categorize invoice units.
458
+ :param description: The assigned description for an invoice unit. This information can't be modified or deleted.
459
+ :param resource_tags: The tag structure that contains a tag key and value.
460
+ :param tax_inheritance_disabled: Whether the invoice unit based tax inheritance is/ should be enabled or disabled.
444
461
 
445
462
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html
446
463
  :exampleMetadata: fixture=_generated
@@ -489,7 +506,8 @@ class CfnInvoiceUnitProps:
489
506
 
490
507
  @builtins.property
491
508
  def invoice_receiver(self) -> builtins.str:
492
- '''
509
+ '''The account that receives invoices related to the invoice unit.
510
+
493
511
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-invoicereceiver
494
512
  '''
495
513
  result = self._values.get("invoice_receiver")
@@ -498,7 +516,8 @@ class CfnInvoiceUnitProps:
498
516
 
499
517
  @builtins.property
500
518
  def name(self) -> builtins.str:
501
- '''
519
+ '''A unique name that is distinctive within your AWS .
520
+
502
521
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-name
503
522
  '''
504
523
  result = self._values.get("name")
@@ -507,7 +526,8 @@ class CfnInvoiceUnitProps:
507
526
 
508
527
  @builtins.property
509
528
  def rule(self) -> typing.Union[_IResolvable_da3f097b, CfnInvoiceUnit.RuleProperty]:
510
- '''
529
+ '''An ``InvoiceUnitRule`` object used the categorize invoice units.
530
+
511
531
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-rule
512
532
  '''
513
533
  result = self._values.get("rule")
@@ -516,7 +536,10 @@ class CfnInvoiceUnitProps:
516
536
 
517
537
  @builtins.property
518
538
  def description(self) -> typing.Optional[builtins.str]:
519
- '''
539
+ '''The assigned description for an invoice unit.
540
+
541
+ This information can't be modified or deleted.
542
+
520
543
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-description
521
544
  '''
522
545
  result = self._values.get("description")
@@ -526,7 +549,8 @@ class CfnInvoiceUnitProps:
526
549
  def resource_tags(
527
550
  self,
528
551
  ) -> typing.Optional[typing.List[CfnInvoiceUnit.ResourceTagProperty]]:
529
- '''
552
+ '''The tag structure that contains a tag key and value.
553
+
530
554
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-resourcetags
531
555
  '''
532
556
  result = self._values.get("resource_tags")
@@ -536,7 +560,8 @@ class CfnInvoiceUnitProps:
536
560
  def tax_inheritance_disabled(
537
561
  self,
538
562
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
539
- '''
563
+ '''Whether the invoice unit based tax inheritance is/ should be enabled or disabled.
564
+
540
565
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-taxinheritancedisabled
541
566
  '''
542
567
  result = self._values.get("tax_inheritance_disabled")