aws-cdk-lib 2.187.0__py3-none-any.whl → 2.189.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (60) hide show
  1. aws_cdk/__init__.py +24 -3
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.187.0.jsii.tgz → aws-cdk-lib@2.189.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amplify/__init__.py +21 -9
  5. aws_cdk/aws_apigateway/__init__.py +27 -19
  6. aws_cdk/aws_apigatewayv2/__init__.py +170 -0
  7. aws_cdk/aws_appconfig/__init__.py +30 -14
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -4
  9. aws_cdk/aws_batch/__init__.py +2 -0
  10. aws_cdk/aws_bedrock/__init__.py +629 -32
  11. aws_cdk/aws_budgets/__init__.py +8 -8
  12. aws_cdk/aws_cassandra/__init__.py +3 -1
  13. aws_cdk/aws_ce/__init__.py +2 -2
  14. aws_cdk/aws_cloudformation/__init__.py +3 -3
  15. aws_cdk/aws_codebuild/__init__.py +23 -1
  16. aws_cdk/aws_codepipeline/__init__.py +47 -32
  17. aws_cdk/aws_codepipeline_actions/__init__.py +2786 -1042
  18. aws_cdk/aws_codestarnotifications/__init__.py +16 -16
  19. aws_cdk/aws_cognito/__init__.py +8 -2
  20. aws_cdk/aws_dsql/__init__.py +366 -0
  21. aws_cdk/aws_dynamodb/__init__.py +4 -4
  22. aws_cdk/aws_ec2/__init__.py +2130 -237
  23. aws_cdk/aws_eks/__init__.py +112 -10
  24. aws_cdk/aws_events_targets/__init__.py +136 -0
  25. aws_cdk/aws_fsx/__init__.py +2 -8
  26. aws_cdk/aws_gamelift/__init__.py +140 -14
  27. aws_cdk/aws_groundstation/__init__.py +4 -2
  28. aws_cdk/aws_iam/__init__.py +6 -4
  29. aws_cdk/aws_identitystore/__init__.py +15 -13
  30. aws_cdk/aws_kinesisfirehose/__init__.py +38 -0
  31. aws_cdk/aws_lambda_event_sources/__init__.py +22 -22
  32. aws_cdk/aws_lex/__init__.py +21 -17
  33. aws_cdk/aws_logs/__init__.py +18 -0
  34. aws_cdk/aws_logs_destinations/__init__.py +146 -0
  35. aws_cdk/aws_notifications/__init__.py +4 -4
  36. aws_cdk/aws_omics/__init__.py +9 -1
  37. aws_cdk/aws_opensearchserverless/__init__.py +31 -23
  38. aws_cdk/aws_organizations/__init__.py +1 -1
  39. aws_cdk/aws_paymentcryptography/__init__.py +6 -2
  40. aws_cdk/aws_pcaconnectorad/__init__.py +3 -2
  41. aws_cdk/aws_quicksight/__init__.py +35 -22
  42. aws_cdk/aws_rds/__init__.py +84 -0
  43. aws_cdk/aws_redshiftserverless/__init__.py +166 -0
  44. aws_cdk/aws_route53/__init__.py +3 -3
  45. aws_cdk/aws_route53recoverycontrol/__init__.py +4 -6
  46. aws_cdk/aws_rum/__init__.py +13 -10
  47. aws_cdk/aws_s3/__init__.py +3 -6
  48. aws_cdk/aws_sagemaker/__init__.py +41 -0
  49. aws_cdk/aws_ssmincidents/__init__.py +10 -10
  50. aws_cdk/aws_systemsmanagersap/__init__.py +17 -7
  51. aws_cdk/aws_transfer/__init__.py +19 -10
  52. aws_cdk/aws_wafv2/__init__.py +80 -35
  53. aws_cdk/cx_api/__init__.py +23 -2
  54. aws_cdk/pipelines/__init__.py +71 -1
  55. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/METADATA +1 -1
  56. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/RECORD +60 -59
  57. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/LICENSE +0 -0
  58. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/NOTICE +0 -0
  59. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/WHEEL +0 -0
  60. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/top_level.txt +0 -0
@@ -75,7 +75,7 @@ from .. import (
75
75
  )
76
76
 
77
77
 
78
- @jsii.implements(_IInspectable_c2943556)
78
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
79
79
  class CfnAlias(
80
80
  _CfnResource_9df397a6,
81
81
  metaclass=jsii.JSIIMeta,
@@ -106,7 +106,11 @@ class CfnAlias(
106
106
  ),
107
107
 
108
108
  # the properties below are optional
109
- description="description"
109
+ description="description",
110
+ tags=[CfnTag(
111
+ key="key",
112
+ value="value"
113
+ )]
110
114
  )
111
115
  '''
112
116
 
@@ -118,6 +122,7 @@ class CfnAlias(
118
122
  name: builtins.str,
119
123
  routing_strategy: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAlias.RoutingStrategyProperty", typing.Dict[builtins.str, typing.Any]]],
120
124
  description: typing.Optional[builtins.str] = None,
125
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
121
126
  ) -> None:
122
127
  '''
123
128
  :param scope: Scope in which this resource is defined.
@@ -125,13 +130,17 @@ class CfnAlias(
125
130
  :param name: A descriptive label that is associated with an alias. Alias names do not need to be unique.
126
131
  :param routing_strategy: The routing configuration, including routing type and fleet target, for the alias.
127
132
  :param description: A human-readable description of the alias.
133
+ :param tags: An array of key-value pairs to apply to this resource.
128
134
  '''
129
135
  if __debug__:
130
136
  type_hints = typing.get_type_hints(_typecheckingstub__6a91f3a4a7dfbcf1655ec6812682d7a8824bfb46a9ce2a65e3c859108e3633c8)
131
137
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
132
138
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
133
139
  props = CfnAliasProps(
134
- name=name, routing_strategy=routing_strategy, description=description
140
+ name=name,
141
+ routing_strategy=routing_strategy,
142
+ description=description,
143
+ tags=tags,
135
144
  )
136
145
 
137
146
  jsii.create(self.__class__, self, [scope, id, props])
@@ -166,6 +175,15 @@ class CfnAlias(
166
175
  '''The CloudFormation resource type name for this resource class.'''
167
176
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
168
177
 
178
+ @builtins.property
179
+ @jsii.member(jsii_name="attrAliasArn")
180
+ def attr_alias_arn(self) -> builtins.str:
181
+ '''The Amazon Resource Name ( `ARN <https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html>`_ ) that is assigned to a Amazon GameLift Servers alias resource and uniquely identifies it. ARNs are unique across all Regions. Format is ``arn:aws:gamelift:<region>::alias/alias-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912`` . In a GameLift alias ARN, the resource ID matches the alias ID value.
182
+
183
+ :cloudformationAttribute: AliasArn
184
+ '''
185
+ return typing.cast(builtins.str, jsii.get(self, "attrAliasArn"))
186
+
169
187
  @builtins.property
170
188
  @jsii.member(jsii_name="attrAliasId")
171
189
  def attr_alias_id(self) -> builtins.str:
@@ -177,6 +195,12 @@ class CfnAlias(
177
195
  '''
178
196
  return typing.cast(builtins.str, jsii.get(self, "attrAliasId"))
179
197
 
198
+ @builtins.property
199
+ @jsii.member(jsii_name="cdkTagManager")
200
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
201
+ '''Tag Manager which manages the tags for this resource.'''
202
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
203
+
180
204
  @builtins.property
181
205
  @jsii.member(jsii_name="cfnProperties")
182
206
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -226,6 +250,19 @@ class CfnAlias(
226
250
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
227
251
  jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
228
252
 
253
+ @builtins.property
254
+ @jsii.member(jsii_name="tags")
255
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
256
+ '''An array of key-value pairs to apply to this resource.'''
257
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
258
+
259
+ @tags.setter
260
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
261
+ if __debug__:
262
+ type_hints = typing.get_type_hints(_typecheckingstub__cc43df2fa439cbdde0361a6e15a7a3a916a006856add3cb38bca18959f9c8775)
263
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
264
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
265
+
229
266
  @jsii.data_type(
230
267
  jsii_type="aws-cdk-lib.aws_gamelift.CfnAlias.RoutingStrategyProperty",
231
268
  jsii_struct_bases=[],
@@ -331,6 +368,7 @@ class CfnAlias(
331
368
  "name": "name",
332
369
  "routing_strategy": "routingStrategy",
333
370
  "description": "description",
371
+ "tags": "tags",
334
372
  },
335
373
  )
336
374
  class CfnAliasProps:
@@ -340,12 +378,14 @@ class CfnAliasProps:
340
378
  name: builtins.str,
341
379
  routing_strategy: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAlias.RoutingStrategyProperty, typing.Dict[builtins.str, typing.Any]]],
342
380
  description: typing.Optional[builtins.str] = None,
381
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
343
382
  ) -> None:
344
383
  '''Properties for defining a ``CfnAlias``.
345
384
 
346
385
  :param name: A descriptive label that is associated with an alias. Alias names do not need to be unique.
347
386
  :param routing_strategy: The routing configuration, including routing type and fleet target, for the alias.
348
387
  :param description: A human-readable description of the alias.
388
+ :param tags: An array of key-value pairs to apply to this resource.
349
389
 
350
390
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html
351
391
  :exampleMetadata: fixture=_generated
@@ -367,7 +407,11 @@ class CfnAliasProps:
367
407
  ),
368
408
 
369
409
  # the properties below are optional
370
- description="description"
410
+ description="description",
411
+ tags=[CfnTag(
412
+ key="key",
413
+ value="value"
414
+ )]
371
415
  )
372
416
  '''
373
417
  if __debug__:
@@ -375,12 +419,15 @@ class CfnAliasProps:
375
419
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
376
420
  check_type(argname="argument routing_strategy", value=routing_strategy, expected_type=type_hints["routing_strategy"])
377
421
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
422
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
378
423
  self._values: typing.Dict[builtins.str, typing.Any] = {
379
424
  "name": name,
380
425
  "routing_strategy": routing_strategy,
381
426
  }
382
427
  if description is not None:
383
428
  self._values["description"] = description
429
+ if tags is not None:
430
+ self._values["tags"] = tags
384
431
 
385
432
  @builtins.property
386
433
  def name(self) -> builtins.str:
@@ -415,6 +462,15 @@ class CfnAliasProps:
415
462
  result = self._values.get("description")
416
463
  return typing.cast(typing.Optional[builtins.str], result)
417
464
 
465
+ @builtins.property
466
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
467
+ '''An array of key-value pairs to apply to this resource.
468
+
469
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-tags
470
+ '''
471
+ result = self._values.get("tags")
472
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
473
+
418
474
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
419
475
  return isinstance(rhs, self.__class__) and rhs._values == self._values
420
476
 
@@ -427,7 +483,7 @@ class CfnAliasProps:
427
483
  )
428
484
 
429
485
 
430
- @jsii.implements(_IInspectable_c2943556)
486
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
431
487
  class CfnBuild(
432
488
  _CfnResource_9df397a6,
433
489
  metaclass=jsii.JSIIMeta,
@@ -459,6 +515,10 @@ class CfnBuild(
459
515
  # the properties below are optional
460
516
  object_version="objectVersion"
461
517
  ),
518
+ tags=[CfnTag(
519
+ key="key",
520
+ value="value"
521
+ )],
462
522
  version="version"
463
523
  )
464
524
  '''
@@ -472,6 +532,7 @@ class CfnBuild(
472
532
  operating_system: typing.Optional[builtins.str] = None,
473
533
  server_sdk_version: typing.Optional[builtins.str] = None,
474
534
  storage_location: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnBuild.StorageLocationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
535
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
475
536
  version: typing.Optional[builtins.str] = None,
476
537
  ) -> None:
477
538
  '''
@@ -481,6 +542,7 @@ class CfnBuild(
481
542
  :param operating_system: The operating system that your game server binaries run on. This value determines the type of fleet resources that you use for this build. If your game build contains multiple executables, they all must run on the same operating system. You must specify a valid operating system in this request. There is no default value. You can't change a build's operating system later. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
482
543
  :param server_sdk_version: A server SDK version you used when integrating your game server build with Amazon GameLift Servers. For more information see `Integrate games with custom game servers <https://docs.aws.amazon.com/gamelift/latest/developerguide/integration-custom-intro.html>`_ . By default Amazon GameLift Servers sets this value to ``4.0.2`` .
483
544
  :param storage_location: Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift Servers to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. If a ``StorageLocation`` is specified, the size of your file can be found in your Amazon S3 bucket. Amazon GameLift Servers will report a ``SizeOnDisk`` of 0.
545
+ :param tags: An array of key-value pairs to apply to this resource.
484
546
  :param version: Version information that is associated with this build. Version strings do not need to be unique.
485
547
  '''
486
548
  if __debug__:
@@ -492,6 +554,7 @@ class CfnBuild(
492
554
  operating_system=operating_system,
493
555
  server_sdk_version=server_sdk_version,
494
556
  storage_location=storage_location,
557
+ tags=tags,
495
558
  version=version,
496
559
  )
497
560
 
@@ -527,6 +590,15 @@ class CfnBuild(
527
590
  '''The CloudFormation resource type name for this resource class.'''
528
591
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
529
592
 
593
+ @builtins.property
594
+ @jsii.member(jsii_name="attrBuildArn")
595
+ def attr_build_arn(self) -> builtins.str:
596
+ '''The Amazon Resource Name ( `ARN <https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html>`_ ) that is assigned to a Amazon GameLift Servers build resource and uniquely identifies it. ARNs are unique across all Regions. Format is ``arn:aws:gamelift:<region>::build/build-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912`` . In a GameLift build ARN, the resource ID matches the *BuildId* value.
597
+
598
+ :cloudformationAttribute: BuildArn
599
+ '''
600
+ return typing.cast(builtins.str, jsii.get(self, "attrBuildArn"))
601
+
530
602
  @builtins.property
531
603
  @jsii.member(jsii_name="attrBuildId")
532
604
  def attr_build_id(self) -> builtins.str:
@@ -536,6 +608,12 @@ class CfnBuild(
536
608
  '''
537
609
  return typing.cast(builtins.str, jsii.get(self, "attrBuildId"))
538
610
 
611
+ @builtins.property
612
+ @jsii.member(jsii_name="cdkTagManager")
613
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
614
+ '''Tag Manager which manages the tags for this resource.'''
615
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
616
+
539
617
  @builtins.property
540
618
  @jsii.member(jsii_name="cfnProperties")
541
619
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -598,6 +676,19 @@ class CfnBuild(
598
676
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
599
677
  jsii.set(self, "storageLocation", value) # pyright: ignore[reportArgumentType]
600
678
 
679
+ @builtins.property
680
+ @jsii.member(jsii_name="tags")
681
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
682
+ '''An array of key-value pairs to apply to this resource.'''
683
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
684
+
685
+ @tags.setter
686
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
687
+ if __debug__:
688
+ type_hints = typing.get_type_hints(_typecheckingstub__61f5c317acb9e4d0abf34641df15710032d796e858c0b0962748ce1d84bf6d9d)
689
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
690
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
691
+
601
692
  @builtins.property
602
693
  @jsii.member(jsii_name="version")
603
694
  def version(self) -> typing.Optional[builtins.str]:
@@ -635,7 +726,7 @@ class CfnBuild(
635
726
  :param bucket: An Amazon S3 bucket identifier. The name of the S3 bucket. .. epigraph:: Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
636
727
  :param key: The name of the zip file that contains the build files or script files.
637
728
  :param role_arn: The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket.
638
- :param object_version: A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket. Use this parameter to specify a specific version. If this parameter isn't set, Amazon GameLift retrieves the latest version of the file.
729
+ :param object_version: A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket. Use this parameter to specify a specific version. If this parameter isn't set, Amazon GameLift Servers retrieves the latest version of the file.
639
730
 
640
731
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html
641
732
  :exampleMetadata: fixture=_generated
@@ -707,7 +798,7 @@ class CfnBuild(
707
798
  def object_version(self) -> typing.Optional[builtins.str]:
708
799
  '''A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket.
709
800
 
710
- Use this parameter to specify a specific version. If this parameter isn't set, Amazon GameLift retrieves the latest version of the file.
801
+ Use this parameter to specify a specific version. If this parameter isn't set, Amazon GameLift Servers retrieves the latest version of the file.
711
802
 
712
803
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storagelocation-objectversion
713
804
  '''
@@ -734,6 +825,7 @@ class CfnBuild(
734
825
  "operating_system": "operatingSystem",
735
826
  "server_sdk_version": "serverSdkVersion",
736
827
  "storage_location": "storageLocation",
828
+ "tags": "tags",
737
829
  "version": "version",
738
830
  },
739
831
  )
@@ -745,6 +837,7 @@ class CfnBuildProps:
745
837
  operating_system: typing.Optional[builtins.str] = None,
746
838
  server_sdk_version: typing.Optional[builtins.str] = None,
747
839
  storage_location: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBuild.StorageLocationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
840
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
748
841
  version: typing.Optional[builtins.str] = None,
749
842
  ) -> None:
750
843
  '''Properties for defining a ``CfnBuild``.
@@ -753,6 +846,7 @@ class CfnBuildProps:
753
846
  :param operating_system: The operating system that your game server binaries run on. This value determines the type of fleet resources that you use for this build. If your game build contains multiple executables, they all must run on the same operating system. You must specify a valid operating system in this request. There is no default value. You can't change a build's operating system later. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
754
847
  :param server_sdk_version: A server SDK version you used when integrating your game server build with Amazon GameLift Servers. For more information see `Integrate games with custom game servers <https://docs.aws.amazon.com/gamelift/latest/developerguide/integration-custom-intro.html>`_ . By default Amazon GameLift Servers sets this value to ``4.0.2`` .
755
848
  :param storage_location: Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift Servers to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. If a ``StorageLocation`` is specified, the size of your file can be found in your Amazon S3 bucket. Amazon GameLift Servers will report a ``SizeOnDisk`` of 0.
849
+ :param tags: An array of key-value pairs to apply to this resource.
756
850
  :param version: Version information that is associated with this build. Version strings do not need to be unique.
757
851
 
758
852
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html
@@ -776,6 +870,10 @@ class CfnBuildProps:
776
870
  # the properties below are optional
777
871
  object_version="objectVersion"
778
872
  ),
873
+ tags=[CfnTag(
874
+ key="key",
875
+ value="value"
876
+ )],
779
877
  version="version"
780
878
  )
781
879
  '''
@@ -785,6 +883,7 @@ class CfnBuildProps:
785
883
  check_type(argname="argument operating_system", value=operating_system, expected_type=type_hints["operating_system"])
786
884
  check_type(argname="argument server_sdk_version", value=server_sdk_version, expected_type=type_hints["server_sdk_version"])
787
885
  check_type(argname="argument storage_location", value=storage_location, expected_type=type_hints["storage_location"])
886
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
788
887
  check_type(argname="argument version", value=version, expected_type=type_hints["version"])
789
888
  self._values: typing.Dict[builtins.str, typing.Any] = {}
790
889
  if name is not None:
@@ -795,6 +894,8 @@ class CfnBuildProps:
795
894
  self._values["server_sdk_version"] = server_sdk_version
796
895
  if storage_location is not None:
797
896
  self._values["storage_location"] = storage_location
897
+ if tags is not None:
898
+ self._values["tags"] = tags
798
899
  if version is not None:
799
900
  self._values["version"] = version
800
901
 
@@ -849,6 +950,15 @@ class CfnBuildProps:
849
950
  result = self._values.get("storage_location")
850
951
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBuild.StorageLocationProperty]], result)
851
952
 
953
+ @builtins.property
954
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
955
+ '''An array of key-value pairs to apply to this resource.
956
+
957
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-tags
958
+ '''
959
+ result = self._values.get("tags")
960
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
961
+
852
962
  @builtins.property
853
963
  def version(self) -> typing.Optional[builtins.str]:
854
964
  '''Version information that is associated with this build.
@@ -2928,7 +3038,7 @@ class CfnContainerGroupDefinition(
2928
3038
  :param scope: Scope in which this resource is defined.
2929
3039
  :param id: Construct identifier for this resource (unique in its scope).
2930
3040
  :param name: A descriptive identifier for the container group definition. The name value is unique in an AWS Region.
2931
- :param operating_system: The platform that all containers in the container group definition run on. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
3041
+ :param operating_system: The platform that all containers in the container group definition run on. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
2932
3042
  :param total_memory_limit_mebibytes: The amount of memory (in MiB) on a fleet instance to allocate for the container group. All containers in the group share these resources. You can set a limit for each container definition in the group. If individual containers have limits, this total value must be greater than any individual container's memory limit.
2933
3043
  :param total_vcpu_limit: The amount of vCPU units on a fleet instance to allocate for the container group (1 vCPU is equal to 1024 CPU units). All containers in the group share these resources. You can set a limit for each container definition in the group. If individual containers have limits, this total value must be equal to or greater than the sum of the limits for each container in the group.
2934
3044
  :param container_group_type: The type of container group. Container group type determines how Amazon GameLift Servers deploys the container group on each fleet instance.
@@ -3594,7 +3704,7 @@ class CfnContainerGroupDefinition(
3594
3704
  protocol: builtins.str,
3595
3705
  to_port: jsii.Number,
3596
3706
  ) -> None:
3597
- '''A set of one or more port numbers that can be opened on the container.
3707
+ '''A set of one or more port numbers that can be opened on the container, and the supported network protocol.
3598
3708
 
3599
3709
  *Part of:* `ContainerPortConfiguration <https://docs.aws.amazon.com/gamelift/latest/apireference/API_ContainerPortConfiguration.html>`_
3600
3710
 
@@ -4278,7 +4388,7 @@ class CfnContainerGroupDefinitionProps:
4278
4388
  '''Properties for defining a ``CfnContainerGroupDefinition``.
4279
4389
 
4280
4390
  :param name: A descriptive identifier for the container group definition. The name value is unique in an AWS Region.
4281
- :param operating_system: The platform that all containers in the container group definition run on. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
4391
+ :param operating_system: The platform that all containers in the container group definition run on. .. epigraph:: Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
4282
4392
  :param total_memory_limit_mebibytes: The amount of memory (in MiB) on a fleet instance to allocate for the container group. All containers in the group share these resources. You can set a limit for each container definition in the group. If individual containers have limits, this total value must be greater than any individual container's memory limit.
4283
4393
  :param total_vcpu_limit: The amount of vCPU units on a fleet instance to allocate for the container group (1 vCPU is equal to 1024 CPU units). All containers in the group share these resources. You can set a limit for each container definition in the group. If individual containers have limits, this total value must be equal to or greater than the sum of the limits for each container in the group.
4284
4394
  :param container_group_type: The type of container group. Container group type determines how Amazon GameLift Servers deploys the container group on each fleet instance.
@@ -4433,7 +4543,7 @@ class CfnContainerGroupDefinitionProps:
4433
4543
 
4434
4544
  .. epigraph::
4435
4545
 
4436
- Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
4546
+ Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the `Amazon Linux 2 FAQs <https://docs.aws.amazon.com/amazon-linux-2/faqs/>`_ . For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See `Migrate to server SDK version 5. <https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html>`_
4437
4547
 
4438
4548
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html#cfn-gamelift-containergroupdefinition-operatingsystem
4439
4549
  '''
@@ -4706,7 +4816,7 @@ class CfnFleet(
4706
4816
  :param resource_creation_limit_policy: A policy that limits the number of game sessions that an individual player can create on instances in this fleet within a specified span of time.
4707
4817
  :param runtime_configuration: Instructions for how to launch and maintain server processes on instances in the fleet. The runtime configuration defines one or more server process configurations, each identifying a build executable or Realtime script file and the number of processes of that type to run concurrently. .. epigraph:: The ``RuntimeConfiguration`` parameter is required unless the fleet is being configured using the older parameters ``ServerLaunchPath`` and ``ServerLaunchParameters`` , which are still supported for backward compatibility.
4708
4818
  :param scaling_policies: Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.
4709
- :param script_id: The unique identifier for a Realtime configuration script to be deployed on fleet instances. You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift prior to creating the fleet. This fleet property cannot be changed later. .. epigraph:: You can't use the ``!Ref`` command to reference a script created with a CloudFormation template for the fleet property ``ScriptId`` . Instead, use ``Fn::GetAtt Script.Arn`` or ``Fn::GetAtt Script.Id`` to retrieve either of these properties as input for ``ScriptId`` . Alternatively, enter a ``ScriptId`` string manually.
4819
+ :param script_id: The unique identifier for a Realtime configuration script to be deployed on fleet instances. You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift Servers prior to creating the fleet. This fleet property cannot be changed later. .. epigraph:: You can't use the ``!Ref`` command to reference a script created with a CloudFormation template for the fleet property ``ScriptId`` . Instead, use ``Fn::GetAtt Script.Arn`` or ``Fn::GetAtt Script.Id`` to retrieve either of these properties as input for ``ScriptId`` . Alternatively, enter a ``ScriptId`` string manually.
4710
4820
  :param server_launch_parameters: (deprecated) This parameter is no longer used but is retained for backward compatibility. Instead, specify server launch parameters in the RuntimeConfiguration parameter. A request must specify either a runtime configuration or values for both ServerLaunchParameters and ServerLaunchPath.
4711
4821
  :param server_launch_path: (deprecated) This parameter is no longer used. Instead, specify a server launch path using the RuntimeConfiguration parameter. Requests that specify a server launch path and launch parameters instead of a runtime configuration will continue to work.
4712
4822
  '''
@@ -6336,7 +6446,7 @@ class CfnFleetProps:
6336
6446
  :param resource_creation_limit_policy: A policy that limits the number of game sessions that an individual player can create on instances in this fleet within a specified span of time.
6337
6447
  :param runtime_configuration: Instructions for how to launch and maintain server processes on instances in the fleet. The runtime configuration defines one or more server process configurations, each identifying a build executable or Realtime script file and the number of processes of that type to run concurrently. .. epigraph:: The ``RuntimeConfiguration`` parameter is required unless the fleet is being configured using the older parameters ``ServerLaunchPath`` and ``ServerLaunchParameters`` , which are still supported for backward compatibility.
6338
6448
  :param scaling_policies: Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.
6339
- :param script_id: The unique identifier for a Realtime configuration script to be deployed on fleet instances. You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift prior to creating the fleet. This fleet property cannot be changed later. .. epigraph:: You can't use the ``!Ref`` command to reference a script created with a CloudFormation template for the fleet property ``ScriptId`` . Instead, use ``Fn::GetAtt Script.Arn`` or ``Fn::GetAtt Script.Id`` to retrieve either of these properties as input for ``ScriptId`` . Alternatively, enter a ``ScriptId`` string manually.
6449
+ :param script_id: The unique identifier for a Realtime configuration script to be deployed on fleet instances. You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift Servers prior to creating the fleet. This fleet property cannot be changed later. .. epigraph:: You can't use the ``!Ref`` command to reference a script created with a CloudFormation template for the fleet property ``ScriptId`` . Instead, use ``Fn::GetAtt Script.Arn`` or ``Fn::GetAtt Script.Id`` to retrieve either of these properties as input for ``ScriptId`` . Alternatively, enter a ``ScriptId`` string manually.
6340
6450
  :param server_launch_parameters: (deprecated) This parameter is no longer used but is retained for backward compatibility. Instead, specify server launch parameters in the RuntimeConfiguration parameter. A request must specify either a runtime configuration or values for both ServerLaunchParameters and ServerLaunchPath.
6341
6451
  :param server_launch_path: (deprecated) This parameter is no longer used. Instead, specify a server launch path using the RuntimeConfiguration parameter. Requests that specify a server launch path and launch parameters instead of a runtime configuration will continue to work.
6342
6452
 
@@ -6808,7 +6918,7 @@ class CfnFleetProps:
6808
6918
  def script_id(self) -> typing.Optional[builtins.str]:
6809
6919
  '''The unique identifier for a Realtime configuration script to be deployed on fleet instances.
6810
6920
 
6811
- You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift prior to creating the fleet. This fleet property cannot be changed later.
6921
+ You can use either the script ID or ARN. Scripts must be uploaded to Amazon GameLift Servers prior to creating the fleet. This fleet property cannot be changed later.
6812
6922
  .. epigraph::
6813
6923
 
6814
6924
  You can't use the ``!Ref`` command to reference a script created with a CloudFormation template for the fleet property ``ScriptId`` . Instead, use ``Fn::GetAtt Script.Arn`` or ``Fn::GetAtt Script.Id`` to retrieve either of these properties as input for ``ScriptId`` . Alternatively, enter a ``ScriptId`` string manually.
@@ -10481,6 +10591,7 @@ def _typecheckingstub__6a91f3a4a7dfbcf1655ec6812682d7a8824bfb46a9ce2a65e3c859108
10481
10591
  name: builtins.str,
10482
10592
  routing_strategy: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAlias.RoutingStrategyProperty, typing.Dict[builtins.str, typing.Any]]],
10483
10593
  description: typing.Optional[builtins.str] = None,
10594
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10484
10595
  ) -> None:
10485
10596
  """Type checking stubs"""
10486
10597
  pass
@@ -10515,6 +10626,12 @@ def _typecheckingstub__98d25b43c56fe6060dfb6e36792550c92a6a537d6d2e31b8c97947858
10515
10626
  """Type checking stubs"""
10516
10627
  pass
10517
10628
 
10629
+ def _typecheckingstub__cc43df2fa439cbdde0361a6e15a7a3a916a006856add3cb38bca18959f9c8775(
10630
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
10631
+ ) -> None:
10632
+ """Type checking stubs"""
10633
+ pass
10634
+
10518
10635
  def _typecheckingstub__4057d890d9c2fba51db14d6885375c0c7263cd6b07fb4401e3fb51d7676734f9(
10519
10636
  *,
10520
10637
  type: builtins.str,
@@ -10529,6 +10646,7 @@ def _typecheckingstub__e74c18c4446e0f846baf63e2e707aa2ba663f37170623164846853f11
10529
10646
  name: builtins.str,
10530
10647
  routing_strategy: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAlias.RoutingStrategyProperty, typing.Dict[builtins.str, typing.Any]]],
10531
10648
  description: typing.Optional[builtins.str] = None,
10649
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10532
10650
  ) -> None:
10533
10651
  """Type checking stubs"""
10534
10652
  pass
@@ -10541,6 +10659,7 @@ def _typecheckingstub__d2f3884df6574dd3d4e76d857acf05a15fdc616d818da1cebcfcce408
10541
10659
  operating_system: typing.Optional[builtins.str] = None,
10542
10660
  server_sdk_version: typing.Optional[builtins.str] = None,
10543
10661
  storage_location: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBuild.StorageLocationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10662
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10544
10663
  version: typing.Optional[builtins.str] = None,
10545
10664
  ) -> None:
10546
10665
  """Type checking stubs"""
@@ -10582,6 +10701,12 @@ def _typecheckingstub__fdd3e9ea10aa8547b05a398258efac5d3e786e68d7875c76104c89d2a
10582
10701
  """Type checking stubs"""
10583
10702
  pass
10584
10703
 
10704
+ def _typecheckingstub__61f5c317acb9e4d0abf34641df15710032d796e858c0b0962748ce1d84bf6d9d(
10705
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
10706
+ ) -> None:
10707
+ """Type checking stubs"""
10708
+ pass
10709
+
10585
10710
  def _typecheckingstub__3f69e6e764a220fcdeac2ac30cce1d3fbf57e0ef02b497976b1bb0e8162a6a67(
10586
10711
  value: typing.Optional[builtins.str],
10587
10712
  ) -> None:
@@ -10604,6 +10729,7 @@ def _typecheckingstub__4ea486b468f726c96f63f78347aac31445ce3b0bd1ea282f6fce30ca4
10604
10729
  operating_system: typing.Optional[builtins.str] = None,
10605
10730
  server_sdk_version: typing.Optional[builtins.str] = None,
10606
10731
  storage_location: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnBuild.StorageLocationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
10732
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
10607
10733
  version: typing.Optional[builtins.str] = None,
10608
10734
  ) -> None:
10609
10735
  """Type checking stubs"""
@@ -1881,7 +1881,7 @@ class CfnDataflowEndpointGroup(
1881
1881
  '''
1882
1882
  :param scope: Scope in which this resource is defined.
1883
1883
  :param id: Construct identifier for this resource (unique in its scope).
1884
- :param endpoint_details: List of Endpoint Details, containing address and port for each endpoint.
1884
+ :param endpoint_details: List of Endpoint Details, containing address and port for each endpoint. All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.
1885
1885
  :param contact_post_pass_duration_seconds: Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a ``POSTPASS`` state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the ``POSTPASS`` state.
1886
1886
  :param contact_pre_pass_duration_seconds: Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a ``PREPASS`` state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the ``PREPASS`` state.
1887
1887
  :param tags: Tags assigned to a resource.
@@ -2865,7 +2865,7 @@ class CfnDataflowEndpointGroupProps:
2865
2865
  ) -> None:
2866
2866
  '''Properties for defining a ``CfnDataflowEndpointGroup``.
2867
2867
 
2868
- :param endpoint_details: List of Endpoint Details, containing address and port for each endpoint.
2868
+ :param endpoint_details: List of Endpoint Details, containing address and port for each endpoint. All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.
2869
2869
  :param contact_post_pass_duration_seconds: Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a ``POSTPASS`` state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the ``POSTPASS`` state.
2870
2870
  :param contact_pre_pass_duration_seconds: Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a ``PREPASS`` state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the ``PREPASS`` state.
2871
2871
  :param tags: Tags assigned to a resource.
@@ -2949,6 +2949,8 @@ class CfnDataflowEndpointGroupProps:
2949
2949
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataflowEndpointGroup.EndpointDetailsProperty]]]:
2950
2950
  '''List of Endpoint Details, containing address and port for each endpoint.
2951
2951
 
2952
+ All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.
2953
+
2952
2954
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-endpointdetails
2953
2955
  '''
2954
2956
  result = self._values.get("endpoint_details")
@@ -8483,7 +8483,7 @@ class IPrincipal(IGrantable, typing_extensions.Protocol):
8483
8483
  Notifications Service).
8484
8484
 
8485
8485
  A single logical Principal may also map to a set of physical principals.
8486
- For example, ``new OrganizationPrincipal('o-1234')`` represents all
8486
+ For example, ``new OrganizationPrincipal('o-12345abcde')`` represents all
8487
8487
  identities that are part of the given AWS Organization.
8488
8488
  '''
8489
8489
 
@@ -8539,7 +8539,7 @@ class _IPrincipalProxy(
8539
8539
  Notifications Service).
8540
8540
 
8541
8541
  A single logical Principal may also map to a set of physical principals.
8542
- For example, ``new OrganizationPrincipal('o-1234')`` represents all
8542
+ For example, ``new OrganizationPrincipal('o-12345abcde')`` represents all
8543
8543
  identities that are part of the given AWS Organization.
8544
8544
  '''
8545
8545
 
@@ -14772,7 +14772,9 @@ class OrganizationPrincipal(
14772
14772
 
14773
14773
  def __init__(self, organization_id: builtins.str) -> None:
14774
14774
  '''
14775
- :param organization_id: The unique identifier (ID) of an organization (i.e. o-12345abcde).
14775
+ :param organization_id: The unique identifier (ID) of an organization (i.e. o-12345abcde) It must match regex pattern ^o-[a-z0-9]{10,32}$.
14776
+
14777
+ :see: https://docs.aws.amazon.com/organizations/latest/APIReference/API_Organization.html
14776
14778
  '''
14777
14779
  if __debug__:
14778
14780
  type_hints = typing.get_type_hints(_typecheckingstub__4dc4375c7e3b272eef905d1d27c4bd67aa9d9f51ccb424f15955369df5f52edd)
@@ -14792,7 +14794,7 @@ class OrganizationPrincipal(
14792
14794
  @builtins.property
14793
14795
  @jsii.member(jsii_name="organizationId")
14794
14796
  def organization_id(self) -> builtins.str:
14795
- '''The unique identifier (ID) of an organization (i.e. o-12345abcde).'''
14797
+ '''The unique identifier (ID) of an organization (i.e. o-12345abcde) It must match regex pattern ^o-[a-z0-9]{10,32}$.'''
14796
14798
  return typing.cast(builtins.str, jsii.get(self, "organizationId"))
14797
14799
 
14798
14800
  @builtins.property