aws-cdk-lib 2.130.0__py3-none-any.whl → 2.131.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 (72) hide show
  1. aws_cdk/__init__.py +41 -21
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.130.0.jsii.tgz → aws-cdk-lib@2.131.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +52 -11
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +286 -0
  6. aws_cdk/aws_appconfig/__init__.py +36 -5
  7. aws_cdk/aws_applicationautoscaling/__init__.py +80 -123
  8. aws_cdk/aws_applicationinsights/__init__.py +48 -0
  9. aws_cdk/aws_apprunner/__init__.py +8 -1
  10. aws_cdk/aws_appstream/__init__.py +8 -1
  11. aws_cdk/aws_appsync/__init__.py +324 -103
  12. aws_cdk/aws_athena/__init__.py +8 -1
  13. aws_cdk/aws_b2bi/__init__.py +30 -4
  14. aws_cdk/aws_backup/__init__.py +77 -53
  15. aws_cdk/aws_cleanrooms/__init__.py +37 -5
  16. aws_cdk/aws_cloudtrail/__init__.py +23 -1
  17. aws_cdk/aws_codebuild/__init__.py +8 -1
  18. aws_cdk/aws_codestarconnections/__init__.py +8 -1
  19. aws_cdk/aws_cognito/__init__.py +21 -21
  20. aws_cdk/aws_comprehend/__init__.py +8 -1
  21. aws_cdk/aws_connect/__init__.py +57 -8
  22. aws_cdk/aws_controltower/__init__.py +27 -7
  23. aws_cdk/aws_customerprofiles/__init__.py +136 -123
  24. aws_cdk/aws_datapipeline/__init__.py +19 -11
  25. aws_cdk/aws_datasync/__init__.py +8 -1
  26. aws_cdk/aws_datazone/__init__.py +9 -1
  27. aws_cdk/aws_dms/__init__.py +29 -4
  28. aws_cdk/aws_docdb/__init__.py +131 -5
  29. aws_cdk/aws_ec2/__init__.py +178 -65
  30. aws_cdk/aws_ecs/__init__.py +43 -51
  31. aws_cdk/aws_ecs_patterns/__init__.py +214 -0
  32. aws_cdk/aws_eks/__init__.py +43 -2
  33. aws_cdk/aws_elasticache/__init__.py +8 -1
  34. aws_cdk/aws_elasticloadbalancingv2/__init__.py +8 -1
  35. aws_cdk/aws_emr/__init__.py +8 -1
  36. aws_cdk/aws_entityresolution/__init__.py +23 -3
  37. aws_cdk/aws_events/__init__.py +12 -1
  38. aws_cdk/aws_fms/__init__.py +8 -1
  39. aws_cdk/aws_glue/__init__.py +18 -4
  40. aws_cdk/aws_healthimaging/__init__.py +9 -1
  41. aws_cdk/aws_inspectorv2/__init__.py +9 -1
  42. aws_cdk/aws_iot/__init__.py +29 -4
  43. aws_cdk/aws_ivs/__init__.py +8 -1
  44. aws_cdk/aws_kms/__init__.py +1 -1
  45. aws_cdk/aws_lambda/__init__.py +3 -5
  46. aws_cdk/aws_location/__init__.py +44 -6
  47. aws_cdk/aws_logs/__init__.py +22 -3
  48. aws_cdk/aws_macie/__init__.py +15 -2
  49. aws_cdk/aws_medialive/__init__.py +8 -1
  50. aws_cdk/aws_mediapackagev2/__init__.py +23 -3
  51. aws_cdk/aws_mediatailor/__init__.py +29 -4
  52. aws_cdk/aws_msk/__init__.py +8 -1
  53. aws_cdk/aws_neptunegraph/__init__.py +9 -1
  54. aws_cdk/aws_networkfirewall/__init__.py +8 -1
  55. aws_cdk/aws_pcaconnectorad/__init__.py +23 -3
  56. aws_cdk/aws_pinpointemail/__init__.py +23 -3
  57. aws_cdk/aws_quicksight/__init__.py +37 -0
  58. aws_cdk/aws_rds/__init__.py +47 -4
  59. aws_cdk/aws_route53resolver/__init__.py +8 -1
  60. aws_cdk/aws_s3/__init__.py +29 -4
  61. aws_cdk/aws_sagemaker/__init__.py +19 -8
  62. aws_cdk/aws_securityhub/__init__.py +8 -1
  63. aws_cdk/aws_shield/__init__.py +16 -2
  64. aws_cdk/aws_workspacesthinclient/__init__.py +9 -1
  65. aws_cdk/aws_workspacesweb/__init__.py +51 -7
  66. aws_cdk/aws_xray/__init__.py +16 -2
  67. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/METADATA +1 -1
  68. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/RECORD +72 -72
  69. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/LICENSE +0 -0
  70. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/NOTICE +0 -0
  71. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/WHEEL +0 -0
  72. {aws_cdk_lib-2.130.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/top_level.txt +0 -0
@@ -46,12 +46,13 @@ from .. import (
46
46
  IInspectable as _IInspectable_c2943556,
47
47
  IResolvable as _IResolvable_da3f097b,
48
48
  ITaggable as _ITaggable_36806126,
49
+ ITaggableV2 as _ITaggableV2_4e6798f8,
49
50
  TagManager as _TagManager_0a598cb3,
50
51
  TreeInspector as _TreeInspector_488e0dd5,
51
52
  )
52
53
 
53
54
 
54
- @jsii.implements(_IInspectable_c2943556)
55
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
55
56
  class CfnCalculatedAttributeDefinition(
56
57
  _CfnResource_9df397a6,
57
58
  metaclass=jsii.JSIIMeta,
@@ -192,6 +193,12 @@ class CfnCalculatedAttributeDefinition(
192
193
  '''
193
194
  return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
194
195
 
196
+ @builtins.property
197
+ @jsii.member(jsii_name="cdkTagManager")
198
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
199
+ '''Tag Manager which manages the tags for this resource.'''
200
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
201
+
195
202
  @builtins.property
196
203
  @jsii.member(jsii_name="cfnProperties")
197
204
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -886,12 +893,12 @@ class CfnDomain(
886
893
  from aws_cdk import aws_customerprofiles as customerprofiles
887
894
 
888
895
  cfn_domain = customerprofiles.CfnDomain(self, "MyCfnDomain",
896
+ default_expiration_days=123,
889
897
  domain_name="domainName",
890
898
 
891
899
  # the properties below are optional
892
900
  dead_letter_queue_url="deadLetterQueueUrl",
893
901
  default_encryption_key="defaultEncryptionKey",
894
- default_expiration_days=123,
895
902
  matching=customerprofiles.CfnDomain.MatchingProperty(
896
903
  enabled=False,
897
904
 
@@ -969,10 +976,10 @@ class CfnDomain(
969
976
  scope: _constructs_77d1e7e8.Construct,
970
977
  id: builtins.str,
971
978
  *,
979
+ default_expiration_days: jsii.Number,
972
980
  domain_name: builtins.str,
973
981
  dead_letter_queue_url: typing.Optional[builtins.str] = None,
974
982
  default_encryption_key: typing.Optional[builtins.str] = None,
975
- default_expiration_days: typing.Optional[jsii.Number] = None,
976
983
  matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.MatchingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
977
984
  rule_based_matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.RuleBasedMatchingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
978
985
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -980,10 +987,10 @@ class CfnDomain(
980
987
  '''
981
988
  :param scope: Scope in which this resource is defined.
982
989
  :param id: Construct identifier for this resource (unique in its scope).
990
+ :param default_expiration_days: The default number of days until the data within the domain expires.
983
991
  :param domain_name: The unique name of the domain.
984
992
  :param dead_letter_queue_url: The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. You must set up a policy on the ``DeadLetterQueue`` for the ``SendMessage`` operation to enable Amazon Connect Customer Profiles to send messages to the ``DeadLetterQueue`` .
985
993
  :param default_encryption_key: The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
986
- :param default_expiration_days: The default number of days until the data within the domain expires.
987
994
  :param matching: The process of matching duplicate profiles.
988
995
  :param rule_based_matching: The process of matching duplicate profiles using Rule-Based matching.
989
996
  :param tags: The tags used to organize, track, or control access for this resource.
@@ -993,10 +1000,10 @@ class CfnDomain(
993
1000
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
994
1001
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
995
1002
  props = CfnDomainProps(
1003
+ default_expiration_days=default_expiration_days,
996
1004
  domain_name=domain_name,
997
1005
  dead_letter_queue_url=dead_letter_queue_url,
998
1006
  default_encryption_key=default_encryption_key,
999
- default_expiration_days=default_expiration_days,
1000
1007
  matching=matching,
1001
1008
  rule_based_matching=rule_based_matching,
1002
1009
  tags=tags,
@@ -1081,6 +1088,19 @@ class CfnDomain(
1081
1088
  '''Tag Manager which manages the tags for this resource.'''
1082
1089
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
1083
1090
 
1091
+ @builtins.property
1092
+ @jsii.member(jsii_name="defaultExpirationDays")
1093
+ def default_expiration_days(self) -> jsii.Number:
1094
+ '''The default number of days until the data within the domain expires.'''
1095
+ return typing.cast(jsii.Number, jsii.get(self, "defaultExpirationDays"))
1096
+
1097
+ @default_expiration_days.setter
1098
+ def default_expiration_days(self, value: jsii.Number) -> None:
1099
+ if __debug__:
1100
+ type_hints = typing.get_type_hints(_typecheckingstub__3d16654417fe9cbdb9f2b4f0145b59b3328699684a9b2c7ae7f2a3ad9b271e93)
1101
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1102
+ jsii.set(self, "defaultExpirationDays", value)
1103
+
1084
1104
  @builtins.property
1085
1105
  @jsii.member(jsii_name="domainName")
1086
1106
  def domain_name(self) -> builtins.str:
@@ -1120,19 +1140,6 @@ class CfnDomain(
1120
1140
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1121
1141
  jsii.set(self, "defaultEncryptionKey", value)
1122
1142
 
1123
- @builtins.property
1124
- @jsii.member(jsii_name="defaultExpirationDays")
1125
- def default_expiration_days(self) -> typing.Optional[jsii.Number]:
1126
- '''The default number of days until the data within the domain expires.'''
1127
- return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "defaultExpirationDays"))
1128
-
1129
- @default_expiration_days.setter
1130
- def default_expiration_days(self, value: typing.Optional[jsii.Number]) -> None:
1131
- if __debug__:
1132
- type_hints = typing.get_type_hints(_typecheckingstub__3d16654417fe9cbdb9f2b4f0145b59b3328699684a9b2c7ae7f2a3ad9b271e93)
1133
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1134
- jsii.set(self, "defaultExpirationDays", value)
1135
-
1136
1143
  @builtins.property
1137
1144
  @jsii.member(jsii_name="matching")
1138
1145
  def matching(
@@ -2280,10 +2287,10 @@ class CfnDomain(
2280
2287
  jsii_type="aws-cdk-lib.aws_customerprofiles.CfnDomainProps",
2281
2288
  jsii_struct_bases=[],
2282
2289
  name_mapping={
2290
+ "default_expiration_days": "defaultExpirationDays",
2283
2291
  "domain_name": "domainName",
2284
2292
  "dead_letter_queue_url": "deadLetterQueueUrl",
2285
2293
  "default_encryption_key": "defaultEncryptionKey",
2286
- "default_expiration_days": "defaultExpirationDays",
2287
2294
  "matching": "matching",
2288
2295
  "rule_based_matching": "ruleBasedMatching",
2289
2296
  "tags": "tags",
@@ -2293,20 +2300,20 @@ class CfnDomainProps:
2293
2300
  def __init__(
2294
2301
  self,
2295
2302
  *,
2303
+ default_expiration_days: jsii.Number,
2296
2304
  domain_name: builtins.str,
2297
2305
  dead_letter_queue_url: typing.Optional[builtins.str] = None,
2298
2306
  default_encryption_key: typing.Optional[builtins.str] = None,
2299
- default_expiration_days: typing.Optional[jsii.Number] = None,
2300
2307
  matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.MatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2301
2308
  rule_based_matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.RuleBasedMatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2302
2309
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2303
2310
  ) -> None:
2304
2311
  '''Properties for defining a ``CfnDomain``.
2305
2312
 
2313
+ :param default_expiration_days: The default number of days until the data within the domain expires.
2306
2314
  :param domain_name: The unique name of the domain.
2307
2315
  :param dead_letter_queue_url: The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. You must set up a policy on the ``DeadLetterQueue`` for the ``SendMessage`` operation to enable Amazon Connect Customer Profiles to send messages to the ``DeadLetterQueue`` .
2308
2316
  :param default_encryption_key: The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
2309
- :param default_expiration_days: The default number of days until the data within the domain expires.
2310
2317
  :param matching: The process of matching duplicate profiles.
2311
2318
  :param rule_based_matching: The process of matching duplicate profiles using Rule-Based matching.
2312
2319
  :param tags: The tags used to organize, track, or control access for this resource.
@@ -2321,12 +2328,12 @@ class CfnDomainProps:
2321
2328
  from aws_cdk import aws_customerprofiles as customerprofiles
2322
2329
 
2323
2330
  cfn_domain_props = customerprofiles.CfnDomainProps(
2331
+ default_expiration_days=123,
2324
2332
  domain_name="domainName",
2325
2333
 
2326
2334
  # the properties below are optional
2327
2335
  dead_letter_queue_url="deadLetterQueueUrl",
2328
2336
  default_encryption_key="defaultEncryptionKey",
2329
- default_expiration_days=123,
2330
2337
  matching=customerprofiles.CfnDomain.MatchingProperty(
2331
2338
  enabled=False,
2332
2339
 
@@ -2400,22 +2407,21 @@ class CfnDomainProps:
2400
2407
  '''
2401
2408
  if __debug__:
2402
2409
  type_hints = typing.get_type_hints(_typecheckingstub__03a55eb0b8d16e4b2b2589908d65475847a28870949386381667b6572e627f96)
2410
+ check_type(argname="argument default_expiration_days", value=default_expiration_days, expected_type=type_hints["default_expiration_days"])
2403
2411
  check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
2404
2412
  check_type(argname="argument dead_letter_queue_url", value=dead_letter_queue_url, expected_type=type_hints["dead_letter_queue_url"])
2405
2413
  check_type(argname="argument default_encryption_key", value=default_encryption_key, expected_type=type_hints["default_encryption_key"])
2406
- check_type(argname="argument default_expiration_days", value=default_expiration_days, expected_type=type_hints["default_expiration_days"])
2407
2414
  check_type(argname="argument matching", value=matching, expected_type=type_hints["matching"])
2408
2415
  check_type(argname="argument rule_based_matching", value=rule_based_matching, expected_type=type_hints["rule_based_matching"])
2409
2416
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
2410
2417
  self._values: typing.Dict[builtins.str, typing.Any] = {
2418
+ "default_expiration_days": default_expiration_days,
2411
2419
  "domain_name": domain_name,
2412
2420
  }
2413
2421
  if dead_letter_queue_url is not None:
2414
2422
  self._values["dead_letter_queue_url"] = dead_letter_queue_url
2415
2423
  if default_encryption_key is not None:
2416
2424
  self._values["default_encryption_key"] = default_encryption_key
2417
- if default_expiration_days is not None:
2418
- self._values["default_expiration_days"] = default_expiration_days
2419
2425
  if matching is not None:
2420
2426
  self._values["matching"] = matching
2421
2427
  if rule_based_matching is not None:
@@ -2423,6 +2429,16 @@ class CfnDomainProps:
2423
2429
  if tags is not None:
2424
2430
  self._values["tags"] = tags
2425
2431
 
2432
+ @builtins.property
2433
+ def default_expiration_days(self) -> jsii.Number:
2434
+ '''The default number of days until the data within the domain expires.
2435
+
2436
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html#cfn-customerprofiles-domain-defaultexpirationdays
2437
+ '''
2438
+ result = self._values.get("default_expiration_days")
2439
+ assert result is not None, "Required property 'default_expiration_days' is missing"
2440
+ return typing.cast(jsii.Number, result)
2441
+
2426
2442
  @builtins.property
2427
2443
  def domain_name(self) -> builtins.str:
2428
2444
  '''The unique name of the domain.
@@ -2455,15 +2471,6 @@ class CfnDomainProps:
2455
2471
  result = self._values.get("default_encryption_key")
2456
2472
  return typing.cast(typing.Optional[builtins.str], result)
2457
2473
 
2458
- @builtins.property
2459
- def default_expiration_days(self) -> typing.Optional[jsii.Number]:
2460
- '''The default number of days until the data within the domain expires.
2461
-
2462
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html#cfn-customerprofiles-domain-defaultexpirationdays
2463
- '''
2464
- result = self._values.get("default_expiration_days")
2465
- return typing.cast(typing.Optional[jsii.Number], result)
2466
-
2467
2474
  @builtins.property
2468
2475
  def matching(
2469
2476
  self,
@@ -2507,7 +2514,7 @@ class CfnDomainProps:
2507
2514
  )
2508
2515
 
2509
2516
 
2510
- @jsii.implements(_IInspectable_c2943556)
2517
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
2511
2518
  class CfnEventStream(
2512
2519
  _CfnResource_9df397a6,
2513
2520
  metaclass=jsii.JSIIMeta,
@@ -2651,6 +2658,12 @@ class CfnEventStream(
2651
2658
  '''
2652
2659
  return typing.cast(builtins.str, jsii.get(self, "attrState"))
2653
2660
 
2661
+ @builtins.property
2662
+ @jsii.member(jsii_name="cdkTagManager")
2663
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2664
+ '''Tag Manager which manages the tags for this resource.'''
2665
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2666
+
2654
2667
  @builtins.property
2655
2668
  @jsii.member(jsii_name="cfnProperties")
2656
2669
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -5044,11 +5057,12 @@ class CfnObjectType(
5044
5057
  from aws_cdk import aws_customerprofiles as customerprofiles
5045
5058
 
5046
5059
  cfn_object_type = customerprofiles.CfnObjectType(self, "MyCfnObjectType",
5060
+ description="description",
5047
5061
  domain_name="domainName",
5062
+ object_type_name="objectTypeName",
5048
5063
 
5049
5064
  # the properties below are optional
5050
5065
  allow_profile_creation=False,
5051
- description="description",
5052
5066
  encryption_key="encryptionKey",
5053
5067
  expiration_days=123,
5054
5068
  fields=[customerprofiles.CfnObjectType.FieldMapProperty(
@@ -5066,7 +5080,6 @@ class CfnObjectType(
5066
5080
  standard_identifiers=["standardIdentifiers"]
5067
5081
  )]
5068
5082
  )],
5069
- object_type_name="objectTypeName",
5070
5083
  source_last_updated_timestamp_format="sourceLastUpdatedTimestampFormat",
5071
5084
  tags=[CfnTag(
5072
5085
  key="key",
@@ -5081,14 +5094,14 @@ class CfnObjectType(
5081
5094
  scope: _constructs_77d1e7e8.Construct,
5082
5095
  id: builtins.str,
5083
5096
  *,
5097
+ description: builtins.str,
5084
5098
  domain_name: builtins.str,
5099
+ object_type_name: builtins.str,
5085
5100
  allow_profile_creation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5086
- description: typing.Optional[builtins.str] = None,
5087
5101
  encryption_key: typing.Optional[builtins.str] = None,
5088
5102
  expiration_days: typing.Optional[jsii.Number] = None,
5089
5103
  fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnObjectType.FieldMapProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5090
5104
  keys: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnObjectType.KeyMapProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5091
- object_type_name: typing.Optional[builtins.str] = None,
5092
5105
  source_last_updated_timestamp_format: typing.Optional[builtins.str] = None,
5093
5106
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
5094
5107
  template_id: typing.Optional[builtins.str] = None,
@@ -5096,14 +5109,14 @@ class CfnObjectType(
5096
5109
  '''
5097
5110
  :param scope: Scope in which this resource is defined.
5098
5111
  :param id: Construct identifier for this resource (unique in its scope).
5112
+ :param description: The description of the profile object type mapping.
5099
5113
  :param domain_name: The unique name of the domain.
5114
+ :param object_type_name: The name of the profile object type.
5100
5115
  :param allow_profile_creation: Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is ``FALSE`` . If the AllowProfileCreation flag is set to ``FALSE`` , then the service tries to fetch a standard profile and associate this object with the profile. If it is set to ``TRUE`` , and if no match is found, then the service creates a new standard profile.
5101
- :param description: The description of the profile object type mapping.
5102
5116
  :param encryption_key: The customer-provided key to encrypt the profile object that will be created in this profile object type mapping. If not specified the system will use the encryption key of the domain.
5103
5117
  :param expiration_days: The number of days until the data of this type expires.
5104
5118
  :param fields: A list of field definitions for the object type mapping.
5105
5119
  :param keys: A list of keys that can be used to map data to the profile or search for the profile.
5106
- :param object_type_name: The name of the profile object type.
5107
5120
  :param source_last_updated_timestamp_format: The format of your sourceLastUpdatedTimestamp that was previously set up.
5108
5121
  :param tags: The tags used to organize, track, or control access for this resource.
5109
5122
  :param template_id: A unique identifier for the template mapping. This can be used instead of specifying the Keys and Fields properties directly.
@@ -5113,14 +5126,14 @@ class CfnObjectType(
5113
5126
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
5114
5127
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
5115
5128
  props = CfnObjectTypeProps(
5129
+ description=description,
5116
5130
  domain_name=domain_name,
5131
+ object_type_name=object_type_name,
5117
5132
  allow_profile_creation=allow_profile_creation,
5118
- description=description,
5119
5133
  encryption_key=encryption_key,
5120
5134
  expiration_days=expiration_days,
5121
5135
  fields=fields,
5122
5136
  keys=keys,
5123
- object_type_name=object_type_name,
5124
5137
  source_last_updated_timestamp_format=source_last_updated_timestamp_format,
5125
5138
  tags=tags,
5126
5139
  template_id=template_id,
@@ -5187,6 +5200,19 @@ class CfnObjectType(
5187
5200
  '''Tag Manager which manages the tags for this resource.'''
5188
5201
  return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
5189
5202
 
5203
+ @builtins.property
5204
+ @jsii.member(jsii_name="description")
5205
+ def description(self) -> builtins.str:
5206
+ '''The description of the profile object type mapping.'''
5207
+ return typing.cast(builtins.str, jsii.get(self, "description"))
5208
+
5209
+ @description.setter
5210
+ def description(self, value: builtins.str) -> None:
5211
+ if __debug__:
5212
+ type_hints = typing.get_type_hints(_typecheckingstub__aba990030ebf284cb51fc495ba3f894a3828072faa9f459784674e3467c4e696)
5213
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5214
+ jsii.set(self, "description", value)
5215
+
5190
5216
  @builtins.property
5191
5217
  @jsii.member(jsii_name="domainName")
5192
5218
  def domain_name(self) -> builtins.str:
@@ -5200,6 +5226,19 @@ class CfnObjectType(
5200
5226
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5201
5227
  jsii.set(self, "domainName", value)
5202
5228
 
5229
+ @builtins.property
5230
+ @jsii.member(jsii_name="objectTypeName")
5231
+ def object_type_name(self) -> builtins.str:
5232
+ '''The name of the profile object type.'''
5233
+ return typing.cast(builtins.str, jsii.get(self, "objectTypeName"))
5234
+
5235
+ @object_type_name.setter
5236
+ def object_type_name(self, value: builtins.str) -> None:
5237
+ if __debug__:
5238
+ type_hints = typing.get_type_hints(_typecheckingstub__19dbd5a494e7060e32b7c4cc781d4cee2093bd041be3baf6d8b03e5f66d76985)
5239
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5240
+ jsii.set(self, "objectTypeName", value)
5241
+
5203
5242
  @builtins.property
5204
5243
  @jsii.member(jsii_name="allowProfileCreation")
5205
5244
  def allow_profile_creation(
@@ -5218,19 +5257,6 @@ class CfnObjectType(
5218
5257
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5219
5258
  jsii.set(self, "allowProfileCreation", value)
5220
5259
 
5221
- @builtins.property
5222
- @jsii.member(jsii_name="description")
5223
- def description(self) -> typing.Optional[builtins.str]:
5224
- '''The description of the profile object type mapping.'''
5225
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
5226
-
5227
- @description.setter
5228
- def description(self, value: typing.Optional[builtins.str]) -> None:
5229
- if __debug__:
5230
- type_hints = typing.get_type_hints(_typecheckingstub__aba990030ebf284cb51fc495ba3f894a3828072faa9f459784674e3467c4e696)
5231
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5232
- jsii.set(self, "description", value)
5233
-
5234
5260
  @builtins.property
5235
5261
  @jsii.member(jsii_name="encryptionKey")
5236
5262
  def encryption_key(self) -> typing.Optional[builtins.str]:
@@ -5293,19 +5319,6 @@ class CfnObjectType(
5293
5319
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5294
5320
  jsii.set(self, "keys", value)
5295
5321
 
5296
- @builtins.property
5297
- @jsii.member(jsii_name="objectTypeName")
5298
- def object_type_name(self) -> typing.Optional[builtins.str]:
5299
- '''The name of the profile object type.'''
5300
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "objectTypeName"))
5301
-
5302
- @object_type_name.setter
5303
- def object_type_name(self, value: typing.Optional[builtins.str]) -> None:
5304
- if __debug__:
5305
- type_hints = typing.get_type_hints(_typecheckingstub__19dbd5a494e7060e32b7c4cc781d4cee2093bd041be3baf6d8b03e5f66d76985)
5306
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5307
- jsii.set(self, "objectTypeName", value)
5308
-
5309
5322
  @builtins.property
5310
5323
  @jsii.member(jsii_name="sourceLastUpdatedTimestampFormat")
5311
5324
  def source_last_updated_timestamp_format(self) -> typing.Optional[builtins.str]:
@@ -5676,14 +5689,14 @@ class CfnObjectType(
5676
5689
  jsii_type="aws-cdk-lib.aws_customerprofiles.CfnObjectTypeProps",
5677
5690
  jsii_struct_bases=[],
5678
5691
  name_mapping={
5692
+ "description": "description",
5679
5693
  "domain_name": "domainName",
5694
+ "object_type_name": "objectTypeName",
5680
5695
  "allow_profile_creation": "allowProfileCreation",
5681
- "description": "description",
5682
5696
  "encryption_key": "encryptionKey",
5683
5697
  "expiration_days": "expirationDays",
5684
5698
  "fields": "fields",
5685
5699
  "keys": "keys",
5686
- "object_type_name": "objectTypeName",
5687
5700
  "source_last_updated_timestamp_format": "sourceLastUpdatedTimestampFormat",
5688
5701
  "tags": "tags",
5689
5702
  "template_id": "templateId",
@@ -5693,28 +5706,28 @@ class CfnObjectTypeProps:
5693
5706
  def __init__(
5694
5707
  self,
5695
5708
  *,
5709
+ description: builtins.str,
5696
5710
  domain_name: builtins.str,
5711
+ object_type_name: builtins.str,
5697
5712
  allow_profile_creation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5698
- description: typing.Optional[builtins.str] = None,
5699
5713
  encryption_key: typing.Optional[builtins.str] = None,
5700
5714
  expiration_days: typing.Optional[jsii.Number] = None,
5701
5715
  fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.FieldMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
5702
5716
  keys: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.KeyMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
5703
- object_type_name: typing.Optional[builtins.str] = None,
5704
5717
  source_last_updated_timestamp_format: typing.Optional[builtins.str] = None,
5705
5718
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
5706
5719
  template_id: typing.Optional[builtins.str] = None,
5707
5720
  ) -> None:
5708
5721
  '''Properties for defining a ``CfnObjectType``.
5709
5722
 
5723
+ :param description: The description of the profile object type mapping.
5710
5724
  :param domain_name: The unique name of the domain.
5725
+ :param object_type_name: The name of the profile object type.
5711
5726
  :param allow_profile_creation: Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is ``FALSE`` . If the AllowProfileCreation flag is set to ``FALSE`` , then the service tries to fetch a standard profile and associate this object with the profile. If it is set to ``TRUE`` , and if no match is found, then the service creates a new standard profile.
5712
- :param description: The description of the profile object type mapping.
5713
5727
  :param encryption_key: The customer-provided key to encrypt the profile object that will be created in this profile object type mapping. If not specified the system will use the encryption key of the domain.
5714
5728
  :param expiration_days: The number of days until the data of this type expires.
5715
5729
  :param fields: A list of field definitions for the object type mapping.
5716
5730
  :param keys: A list of keys that can be used to map data to the profile or search for the profile.
5717
- :param object_type_name: The name of the profile object type.
5718
5731
  :param source_last_updated_timestamp_format: The format of your sourceLastUpdatedTimestamp that was previously set up.
5719
5732
  :param tags: The tags used to organize, track, or control access for this resource.
5720
5733
  :param template_id: A unique identifier for the template mapping. This can be used instead of specifying the Keys and Fields properties directly.
@@ -5729,11 +5742,12 @@ class CfnObjectTypeProps:
5729
5742
  from aws_cdk import aws_customerprofiles as customerprofiles
5730
5743
 
5731
5744
  cfn_object_type_props = customerprofiles.CfnObjectTypeProps(
5745
+ description="description",
5732
5746
  domain_name="domainName",
5747
+ object_type_name="objectTypeName",
5733
5748
 
5734
5749
  # the properties below are optional
5735
5750
  allow_profile_creation=False,
5736
- description="description",
5737
5751
  encryption_key="encryptionKey",
5738
5752
  expiration_days=123,
5739
5753
  fields=[customerprofiles.CfnObjectType.FieldMapProperty(
@@ -5751,7 +5765,6 @@ class CfnObjectTypeProps:
5751
5765
  standard_identifiers=["standardIdentifiers"]
5752
5766
  )]
5753
5767
  )],
5754
- object_type_name="objectTypeName",
5755
5768
  source_last_updated_timestamp_format="sourceLastUpdatedTimestampFormat",
5756
5769
  tags=[CfnTag(
5757
5770
  key="key",
@@ -5762,24 +5775,24 @@ class CfnObjectTypeProps:
5762
5775
  '''
5763
5776
  if __debug__:
5764
5777
  type_hints = typing.get_type_hints(_typecheckingstub__674aff1f8e16a6059ac0e56bfd831b21c20b3b3358878f53ea82ff2eea85954e)
5778
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
5765
5779
  check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
5780
+ check_type(argname="argument object_type_name", value=object_type_name, expected_type=type_hints["object_type_name"])
5766
5781
  check_type(argname="argument allow_profile_creation", value=allow_profile_creation, expected_type=type_hints["allow_profile_creation"])
5767
- check_type(argname="argument description", value=description, expected_type=type_hints["description"])
5768
5782
  check_type(argname="argument encryption_key", value=encryption_key, expected_type=type_hints["encryption_key"])
5769
5783
  check_type(argname="argument expiration_days", value=expiration_days, expected_type=type_hints["expiration_days"])
5770
5784
  check_type(argname="argument fields", value=fields, expected_type=type_hints["fields"])
5771
5785
  check_type(argname="argument keys", value=keys, expected_type=type_hints["keys"])
5772
- check_type(argname="argument object_type_name", value=object_type_name, expected_type=type_hints["object_type_name"])
5773
5786
  check_type(argname="argument source_last_updated_timestamp_format", value=source_last_updated_timestamp_format, expected_type=type_hints["source_last_updated_timestamp_format"])
5774
5787
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5775
5788
  check_type(argname="argument template_id", value=template_id, expected_type=type_hints["template_id"])
5776
5789
  self._values: typing.Dict[builtins.str, typing.Any] = {
5790
+ "description": description,
5777
5791
  "domain_name": domain_name,
5792
+ "object_type_name": object_type_name,
5778
5793
  }
5779
5794
  if allow_profile_creation is not None:
5780
5795
  self._values["allow_profile_creation"] = allow_profile_creation
5781
- if description is not None:
5782
- self._values["description"] = description
5783
5796
  if encryption_key is not None:
5784
5797
  self._values["encryption_key"] = encryption_key
5785
5798
  if expiration_days is not None:
@@ -5788,8 +5801,6 @@ class CfnObjectTypeProps:
5788
5801
  self._values["fields"] = fields
5789
5802
  if keys is not None:
5790
5803
  self._values["keys"] = keys
5791
- if object_type_name is not None:
5792
- self._values["object_type_name"] = object_type_name
5793
5804
  if source_last_updated_timestamp_format is not None:
5794
5805
  self._values["source_last_updated_timestamp_format"] = source_last_updated_timestamp_format
5795
5806
  if tags is not None:
@@ -5797,6 +5808,16 @@ class CfnObjectTypeProps:
5797
5808
  if template_id is not None:
5798
5809
  self._values["template_id"] = template_id
5799
5810
 
5811
+ @builtins.property
5812
+ def description(self) -> builtins.str:
5813
+ '''The description of the profile object type mapping.
5814
+
5815
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-description
5816
+ '''
5817
+ result = self._values.get("description")
5818
+ assert result is not None, "Required property 'description' is missing"
5819
+ return typing.cast(builtins.str, result)
5820
+
5800
5821
  @builtins.property
5801
5822
  def domain_name(self) -> builtins.str:
5802
5823
  '''The unique name of the domain.
@@ -5807,6 +5828,16 @@ class CfnObjectTypeProps:
5807
5828
  assert result is not None, "Required property 'domain_name' is missing"
5808
5829
  return typing.cast(builtins.str, result)
5809
5830
 
5831
+ @builtins.property
5832
+ def object_type_name(self) -> builtins.str:
5833
+ '''The name of the profile object type.
5834
+
5835
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-objecttypename
5836
+ '''
5837
+ result = self._values.get("object_type_name")
5838
+ assert result is not None, "Required property 'object_type_name' is missing"
5839
+ return typing.cast(builtins.str, result)
5840
+
5810
5841
  @builtins.property
5811
5842
  def allow_profile_creation(
5812
5843
  self,
@@ -5820,15 +5851,6 @@ class CfnObjectTypeProps:
5820
5851
  result = self._values.get("allow_profile_creation")
5821
5852
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
5822
5853
 
5823
- @builtins.property
5824
- def description(self) -> typing.Optional[builtins.str]:
5825
- '''The description of the profile object type mapping.
5826
-
5827
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-description
5828
- '''
5829
- result = self._values.get("description")
5830
- return typing.cast(typing.Optional[builtins.str], result)
5831
-
5832
5854
  @builtins.property
5833
5855
  def encryption_key(self) -> typing.Optional[builtins.str]:
5834
5856
  '''The customer-provided key to encrypt the profile object that will be created in this profile object type mapping.
@@ -5871,15 +5893,6 @@ class CfnObjectTypeProps:
5871
5893
  result = self._values.get("keys")
5872
5894
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnObjectType.KeyMapProperty]]]], result)
5873
5895
 
5874
- @builtins.property
5875
- def object_type_name(self) -> typing.Optional[builtins.str]:
5876
- '''The name of the profile object type.
5877
-
5878
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-objecttypename
5879
- '''
5880
- result = self._values.get("object_type_name")
5881
- return typing.cast(typing.Optional[builtins.str], result)
5882
-
5883
5896
  @builtins.property
5884
5897
  def source_last_updated_timestamp_format(self) -> typing.Optional[builtins.str]:
5885
5898
  '''The format of your sourceLastUpdatedTimestamp that was previously set up.
@@ -6070,10 +6083,10 @@ def _typecheckingstub__6cc1e612474254ea8edde86de3e08226c0c50e450782b3a99c92e87c3
6070
6083
  scope: _constructs_77d1e7e8.Construct,
6071
6084
  id: builtins.str,
6072
6085
  *,
6086
+ default_expiration_days: jsii.Number,
6073
6087
  domain_name: builtins.str,
6074
6088
  dead_letter_queue_url: typing.Optional[builtins.str] = None,
6075
6089
  default_encryption_key: typing.Optional[builtins.str] = None,
6076
- default_expiration_days: typing.Optional[jsii.Number] = None,
6077
6090
  matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.MatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6078
6091
  rule_based_matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.RuleBasedMatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6079
6092
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -6093,6 +6106,12 @@ def _typecheckingstub__88e553e446de50b16b878a912bc0a5f6f8763a19282b8d9da5099d68e
6093
6106
  """Type checking stubs"""
6094
6107
  pass
6095
6108
 
6109
+ def _typecheckingstub__3d16654417fe9cbdb9f2b4f0145b59b3328699684a9b2c7ae7f2a3ad9b271e93(
6110
+ value: jsii.Number,
6111
+ ) -> None:
6112
+ """Type checking stubs"""
6113
+ pass
6114
+
6096
6115
  def _typecheckingstub__5155d94ec0a92f02d3b08cff5971632f213635d3dd2577433bbe328e9fac1d90(
6097
6116
  value: builtins.str,
6098
6117
  ) -> None:
@@ -6111,12 +6130,6 @@ def _typecheckingstub__ed9ea79eb70814ff005e2ba351fe52042bea41d55509db4f24fbbf0d3
6111
6130
  """Type checking stubs"""
6112
6131
  pass
6113
6132
 
6114
- def _typecheckingstub__3d16654417fe9cbdb9f2b4f0145b59b3328699684a9b2c7ae7f2a3ad9b271e93(
6115
- value: typing.Optional[jsii.Number],
6116
- ) -> None:
6117
- """Type checking stubs"""
6118
- pass
6119
-
6120
6133
  def _typecheckingstub__38b62853e21632f695b18d1a2df674dd4f9112b5fa5e1f684278017a8ed38588(
6121
6134
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomain.MatchingProperty]],
6122
6135
  ) -> None:
@@ -6236,10 +6249,10 @@ def _typecheckingstub__67d29e593ac1f40be9594826daeee9e088ed90a7a1c973d30de0a10f4
6236
6249
 
6237
6250
  def _typecheckingstub__03a55eb0b8d16e4b2b2589908d65475847a28870949386381667b6572e627f96(
6238
6251
  *,
6252
+ default_expiration_days: jsii.Number,
6239
6253
  domain_name: builtins.str,
6240
6254
  dead_letter_queue_url: typing.Optional[builtins.str] = None,
6241
6255
  default_encryption_key: typing.Optional[builtins.str] = None,
6242
- default_expiration_days: typing.Optional[jsii.Number] = None,
6243
6256
  matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.MatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6244
6257
  rule_based_matching: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.RuleBasedMatchingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
6245
6258
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -6535,14 +6548,14 @@ def _typecheckingstub__e58419cb0a7694b5c554275a8721df95dc40489e742a23c76f7830ca5
6535
6548
  scope: _constructs_77d1e7e8.Construct,
6536
6549
  id: builtins.str,
6537
6550
  *,
6551
+ description: builtins.str,
6538
6552
  domain_name: builtins.str,
6553
+ object_type_name: builtins.str,
6539
6554
  allow_profile_creation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
6540
- description: typing.Optional[builtins.str] = None,
6541
6555
  encryption_key: typing.Optional[builtins.str] = None,
6542
6556
  expiration_days: typing.Optional[jsii.Number] = None,
6543
6557
  fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.FieldMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6544
6558
  keys: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.KeyMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6545
- object_type_name: typing.Optional[builtins.str] = None,
6546
6559
  source_last_updated_timestamp_format: typing.Optional[builtins.str] = None,
6547
6560
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
6548
6561
  template_id: typing.Optional[builtins.str] = None,
@@ -6562,20 +6575,26 @@ def _typecheckingstub__0769bdf04f2e44acf0d6aa58be6958449e3ed7487344183891e249f5a
6562
6575
  """Type checking stubs"""
6563
6576
  pass
6564
6577
 
6578
+ def _typecheckingstub__aba990030ebf284cb51fc495ba3f894a3828072faa9f459784674e3467c4e696(
6579
+ value: builtins.str,
6580
+ ) -> None:
6581
+ """Type checking stubs"""
6582
+ pass
6583
+
6565
6584
  def _typecheckingstub__b24cea9cf31f287c3b3c148ba0586506624f0432fe276fdb1ec08d552833ef32(
6566
6585
  value: builtins.str,
6567
6586
  ) -> None:
6568
6587
  """Type checking stubs"""
6569
6588
  pass
6570
6589
 
6571
- def _typecheckingstub__9b0f4dc9c396c634c5fa55ab6032956c1c94c0dec83e089c60d92fb58640061c(
6572
- value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
6590
+ def _typecheckingstub__19dbd5a494e7060e32b7c4cc781d4cee2093bd041be3baf6d8b03e5f66d76985(
6591
+ value: builtins.str,
6573
6592
  ) -> None:
6574
6593
  """Type checking stubs"""
6575
6594
  pass
6576
6595
 
6577
- def _typecheckingstub__aba990030ebf284cb51fc495ba3f894a3828072faa9f459784674e3467c4e696(
6578
- value: typing.Optional[builtins.str],
6596
+ def _typecheckingstub__9b0f4dc9c396c634c5fa55ab6032956c1c94c0dec83e089c60d92fb58640061c(
6597
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
6579
6598
  ) -> None:
6580
6599
  """Type checking stubs"""
6581
6600
  pass
@@ -6604,12 +6623,6 @@ def _typecheckingstub__521c1a4bfa097c3b1f3951ecd6980736e1de35a3bfe50227b262534c5
6604
6623
  """Type checking stubs"""
6605
6624
  pass
6606
6625
 
6607
- def _typecheckingstub__19dbd5a494e7060e32b7c4cc781d4cee2093bd041be3baf6d8b03e5f66d76985(
6608
- value: typing.Optional[builtins.str],
6609
- ) -> None:
6610
- """Type checking stubs"""
6611
- pass
6612
-
6613
6626
  def _typecheckingstub__bc577e5c0fd1bd47194e04599a6df995f066e809b7c98cb3b2e9ef839eaca0bc(
6614
6627
  value: typing.Optional[builtins.str],
6615
6628
  ) -> None:
@@ -6663,14 +6676,14 @@ def _typecheckingstub__7448ca799e207118d55f0019b3c6c35b6416f32804761112746d00e40
6663
6676
 
6664
6677
  def _typecheckingstub__674aff1f8e16a6059ac0e56bfd831b21c20b3b3358878f53ea82ff2eea85954e(
6665
6678
  *,
6679
+ description: builtins.str,
6666
6680
  domain_name: builtins.str,
6681
+ object_type_name: builtins.str,
6667
6682
  allow_profile_creation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
6668
- description: typing.Optional[builtins.str] = None,
6669
6683
  encryption_key: typing.Optional[builtins.str] = None,
6670
6684
  expiration_days: typing.Optional[jsii.Number] = None,
6671
6685
  fields: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.FieldMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6672
6686
  keys: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnObjectType.KeyMapProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6673
- object_type_name: typing.Optional[builtins.str] = None,
6674
6687
  source_last_updated_timestamp_format: typing.Optional[builtins.str] = None,
6675
6688
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
6676
6689
  template_id: typing.Optional[builtins.str] = None,