aws-cdk-lib 2.100.0__py3-none-any.whl → 2.101.1__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 (38) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.100.0.jsii.tgz → aws-cdk-lib@2.101.1.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigatewayv2/__init__.py +0 -8
  4. aws_cdk/aws_appconfig/__init__.py +101 -18
  5. aws_cdk/aws_apprunner/__init__.py +5 -2
  6. aws_cdk/aws_appstream/__init__.py +18 -26
  7. aws_cdk/aws_cloudfront/__init__.py +251 -3
  8. aws_cdk/aws_cloudtrail/__init__.py +47 -3
  9. aws_cdk/aws_cognito/__init__.py +414 -8
  10. aws_cdk/aws_dlm/__init__.py +10 -9
  11. aws_cdk/aws_ec2/__init__.py +308 -179
  12. aws_cdk/aws_events/__init__.py +62 -86
  13. aws_cdk/aws_fms/__init__.py +3 -3
  14. aws_cdk/aws_grafana/__init__.py +4 -4
  15. aws_cdk/aws_greengrassv2/__init__.py +1 -8
  16. aws_cdk/aws_iot/__init__.py +714 -0
  17. aws_cdk/aws_iotsitewise/__init__.py +3 -3
  18. aws_cdk/aws_kinesisanalytics/__init__.py +15 -15
  19. aws_cdk/aws_kinesisanalyticsv2/__init__.py +15 -15
  20. aws_cdk/aws_kinesisfirehose/__init__.py +87 -40
  21. aws_cdk/aws_lambda/__init__.py +34 -4
  22. aws_cdk/aws_lightsail/__init__.py +3 -1
  23. aws_cdk/aws_mediatailor/__init__.py +24 -1
  24. aws_cdk/aws_quicksight/__init__.py +2508 -55
  25. aws_cdk/aws_rds/__init__.py +121 -51
  26. aws_cdk/aws_sagemaker/__init__.py +5 -3
  27. aws_cdk/aws_sns/__init__.py +42 -5
  28. aws_cdk/aws_ssm/__init__.py +0 -8
  29. aws_cdk/aws_stepfunctions/__init__.py +233 -16
  30. aws_cdk/aws_stepfunctions_tasks/__init__.py +926 -27
  31. aws_cdk/aws_transfer/__init__.py +4 -4
  32. aws_cdk/aws_workspacesweb/__init__.py +3 -3
  33. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/METADATA +1 -1
  34. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/RECORD +38 -38
  35. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/LICENSE +0 -0
  36. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/NOTICE +0 -0
  37. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/WHEEL +0 -0
  38. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/top_level.txt +0 -0
aws_cdk/_jsii/__init__.py CHANGED
@@ -16,7 +16,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
16
16
  import constructs._jsii
17
17
 
18
18
  __jsii_assembly__ = jsii.JSIIAssembly.load(
19
- "aws-cdk-lib", "2.100.0", __name__[0:-6], "aws-cdk-lib@2.100.0.jsii.tgz"
19
+ "aws-cdk-lib", "2.101.1", __name__[0:-6], "aws-cdk-lib@2.101.1.jsii.tgz"
20
20
  )
21
21
 
22
22
  __all__ = [
@@ -3299,14 +3299,6 @@ class CfnDomainName(
3299
3299
  '''The CloudFormation resource type name for this resource class.'''
3300
3300
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
3301
3301
 
3302
- @builtins.property
3303
- @jsii.member(jsii_name="attrId")
3304
- def attr_id(self) -> builtins.str:
3305
- '''
3306
- :cloudformationAttribute: Id
3307
- '''
3308
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
3309
-
3310
3302
  @builtins.property
3311
3303
  @jsii.member(jsii_name="attrRegionalDomainName")
3312
3304
  def attr_regional_domain_name(self) -> builtins.str:
@@ -86,7 +86,7 @@ class CfnApplication(
86
86
 
87
87
  # the properties below are optional
88
88
  description="description",
89
- tags=[CfnTag(
89
+ tags=[appconfig.CfnApplication.TagsProperty(
90
90
  key="key",
91
91
  value="value"
92
92
  )]
@@ -100,7 +100,7 @@ class CfnApplication(
100
100
  *,
101
101
  name: builtins.str,
102
102
  description: typing.Optional[builtins.str] = None,
103
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
103
+ tags: typing.Optional[typing.Sequence[typing.Union["CfnApplication.TagsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
104
104
  ) -> None:
105
105
  '''
106
106
  :param scope: Scope in which this resource is defined.
@@ -188,17 +188,94 @@ class CfnApplication(
188
188
 
189
189
  @builtins.property
190
190
  @jsii.member(jsii_name="tags")
191
- def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
191
+ def tags(self) -> typing.Optional[typing.List["CfnApplication.TagsProperty"]]:
192
192
  '''Metadata to assign to the application.'''
193
- return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
193
+ return typing.cast(typing.Optional[typing.List["CfnApplication.TagsProperty"]], jsii.get(self, "tags"))
194
194
 
195
195
  @tags.setter
196
- def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
196
+ def tags(
197
+ self,
198
+ value: typing.Optional[typing.List["CfnApplication.TagsProperty"]],
199
+ ) -> None:
197
200
  if __debug__:
198
201
  type_hints = typing.get_type_hints(_typecheckingstub__e1c6b2136fb3c6e3eba293e5878e147b18261e888036e9d04f50ade7f12363e3)
199
202
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
200
203
  jsii.set(self, "tags", value)
201
204
 
205
+ @jsii.data_type(
206
+ jsii_type="aws-cdk-lib.aws_appconfig.CfnApplication.TagsProperty",
207
+ jsii_struct_bases=[],
208
+ name_mapping={"key": "key", "value": "value"},
209
+ )
210
+ class TagsProperty:
211
+ def __init__(
212
+ self,
213
+ *,
214
+ key: typing.Optional[builtins.str] = None,
215
+ value: typing.Optional[builtins.str] = None,
216
+ ) -> None:
217
+ '''Metadata to assign to the application.
218
+
219
+ Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
220
+
221
+ :param key: The key-value string map. The valid character set is ``[a-zA-Z+-=._:/]`` . The tag key can be up to 128 characters and must not start with ``aws:`` .
222
+ :param value: The tag value can be up to 256 characters.
223
+
224
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html
225
+ :exampleMetadata: fixture=_generated
226
+
227
+ Example::
228
+
229
+ # The code below shows an example of how to instantiate this type.
230
+ # The values are placeholders you should change.
231
+ from aws_cdk import aws_appconfig as appconfig
232
+
233
+ tags_property = appconfig.CfnApplication.TagsProperty(
234
+ key="key",
235
+ value="value"
236
+ )
237
+ '''
238
+ if __debug__:
239
+ type_hints = typing.get_type_hints(_typecheckingstub__e23a692b191ad17b59ca3b168ad9b22a1a2f3166cfe85a66eeb03dff73e0e4fd)
240
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
241
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
242
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
243
+ if key is not None:
244
+ self._values["key"] = key
245
+ if value is not None:
246
+ self._values["value"] = value
247
+
248
+ @builtins.property
249
+ def key(self) -> typing.Optional[builtins.str]:
250
+ '''The key-value string map.
251
+
252
+ The valid character set is ``[a-zA-Z+-=._:/]`` . The tag key can be up to 128 characters and must not start with ``aws:`` .
253
+
254
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html#cfn-appconfig-application-tags-key
255
+ '''
256
+ result = self._values.get("key")
257
+ return typing.cast(typing.Optional[builtins.str], result)
258
+
259
+ @builtins.property
260
+ def value(self) -> typing.Optional[builtins.str]:
261
+ '''The tag value can be up to 256 characters.
262
+
263
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html#cfn-appconfig-application-tags-value
264
+ '''
265
+ result = self._values.get("value")
266
+ return typing.cast(typing.Optional[builtins.str], result)
267
+
268
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
269
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
270
+
271
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
272
+ return not (rhs == self)
273
+
274
+ def __repr__(self) -> str:
275
+ return "TagsProperty(%s)" % ", ".join(
276
+ k + "=" + repr(v) for k, v in self._values.items()
277
+ )
278
+
202
279
 
203
280
  @jsii.data_type(
204
281
  jsii_type="aws-cdk-lib.aws_appconfig.CfnApplicationProps",
@@ -211,7 +288,7 @@ class CfnApplicationProps:
211
288
  *,
212
289
  name: builtins.str,
213
290
  description: typing.Optional[builtins.str] = None,
214
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
291
+ tags: typing.Optional[typing.Sequence[typing.Union[CfnApplication.TagsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
215
292
  ) -> None:
216
293
  '''Properties for defining a ``CfnApplication``.
217
294
 
@@ -233,7 +310,7 @@ class CfnApplicationProps:
233
310
 
234
311
  # the properties below are optional
235
312
  description="description",
236
- tags=[CfnTag(
313
+ tags=[appconfig.CfnApplication.TagsProperty(
237
314
  key="key",
238
315
  value="value"
239
316
  )]
@@ -272,7 +349,7 @@ class CfnApplicationProps:
272
349
  return typing.cast(typing.Optional[builtins.str], result)
273
350
 
274
351
  @builtins.property
275
- def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
352
+ def tags(self) -> typing.Optional[typing.List[CfnApplication.TagsProperty]]:
276
353
  '''Metadata to assign to the application.
277
354
 
278
355
  Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@@ -280,7 +357,7 @@ class CfnApplicationProps:
280
357
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-tags
281
358
  '''
282
359
  result = self._values.get("tags")
283
- return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
360
+ return typing.cast(typing.Optional[typing.List[CfnApplication.TagsProperty]], result)
284
361
 
285
362
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
286
363
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -972,7 +1049,7 @@ class CfnDeployment(
972
1049
  :param deployment_strategy_id: The deployment strategy ID.
973
1050
  :param environment_id: The environment ID.
974
1051
  :param description: A description of the deployment.
975
- :param kms_key_identifier: The AWS KMS key identifier (key ID, key alias, or key ARN). AWS AppConfig uses this ID to encrypt the configuration data using a customer managed key.
1052
+ :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
976
1053
  :param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
977
1054
  '''
978
1055
  if __debug__:
@@ -1116,7 +1193,7 @@ class CfnDeployment(
1116
1193
  @builtins.property
1117
1194
  @jsii.member(jsii_name="kmsKeyIdentifier")
1118
1195
  def kms_key_identifier(self) -> typing.Optional[builtins.str]:
1119
- '''The AWS KMS key identifier (key ID, key alias, or key ARN).'''
1196
+ '''The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.'''
1120
1197
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyIdentifier"))
1121
1198
 
1122
1199
  @kms_key_identifier.setter
@@ -1252,7 +1329,7 @@ class CfnDeploymentProps:
1252
1329
  :param deployment_strategy_id: The deployment strategy ID.
1253
1330
  :param environment_id: The environment ID.
1254
1331
  :param description: A description of the deployment.
1255
- :param kms_key_identifier: The AWS KMS key identifier (key ID, key alias, or key ARN). AWS AppConfig uses this ID to encrypt the configuration data using a customer managed key.
1332
+ :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
1256
1333
  :param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
1257
1334
 
1258
1335
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html
@@ -1367,9 +1444,7 @@ class CfnDeploymentProps:
1367
1444
 
1368
1445
  @builtins.property
1369
1446
  def kms_key_identifier(self) -> typing.Optional[builtins.str]:
1370
- '''The AWS KMS key identifier (key ID, key alias, or key ARN).
1371
-
1372
- AWS AppConfig uses this ID to encrypt the configuration data using a customer managed key.
1447
+ '''The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
1373
1448
 
1374
1449
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-kmskeyidentifier
1375
1450
  '''
@@ -3728,7 +3803,7 @@ def _typecheckingstub__c5cb8c402a0d1a836162f596142de6ed2a1f2a0635a355ae334b92eb1
3728
3803
  *,
3729
3804
  name: builtins.str,
3730
3805
  description: typing.Optional[builtins.str] = None,
3731
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
3806
+ tags: typing.Optional[typing.Sequence[typing.Union[CfnApplication.TagsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
3732
3807
  ) -> None:
3733
3808
  """Type checking stubs"""
3734
3809
  pass
@@ -3758,7 +3833,15 @@ def _typecheckingstub__a824db2a54c11ce0a54133772196bc9c7049c60fe6169de15459866f7
3758
3833
  pass
3759
3834
 
3760
3835
  def _typecheckingstub__e1c6b2136fb3c6e3eba293e5878e147b18261e888036e9d04f50ade7f12363e3(
3761
- value: typing.Optional[typing.List[_CfnTag_f6864754]],
3836
+ value: typing.Optional[typing.List[CfnApplication.TagsProperty]],
3837
+ ) -> None:
3838
+ """Type checking stubs"""
3839
+ pass
3840
+
3841
+ def _typecheckingstub__e23a692b191ad17b59ca3b168ad9b22a1a2f3166cfe85a66eeb03dff73e0e4fd(
3842
+ *,
3843
+ key: typing.Optional[builtins.str] = None,
3844
+ value: typing.Optional[builtins.str] = None,
3762
3845
  ) -> None:
3763
3846
  """Type checking stubs"""
3764
3847
  pass
@@ -3767,7 +3850,7 @@ def _typecheckingstub__32e1eda1678f32e80ec88e7c377d932bfe40dcff82d39b0dd0edf98a6
3767
3850
  *,
3768
3851
  name: builtins.str,
3769
3852
  description: typing.Optional[builtins.str] = None,
3770
- tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
3853
+ tags: typing.Optional[typing.Sequence[typing.Union[CfnApplication.TagsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
3771
3854
  ) -> None:
3772
3855
  """Type checking stubs"""
3773
3856
  pass
@@ -1519,7 +1519,7 @@ class CfnService(
1519
1519
  :param repository_url: The location of the repository that contains the source code.
1520
1520
  :param source_code_version: The version that should be used within the source code repository.
1521
1521
  :param code_configuration: Configuration for building and running the service from a source code repository. .. epigraph:: ``CodeConfiguration`` is required only for ``CreateService`` request.
1522
- :param source_directory:
1522
+ :param source_directory: The path of the directory that stores source code and configuration files. The build and start commands also execute from here. The path is absolute from root and, if not specified, defaults to the repository root.
1523
1523
 
1524
1524
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-coderepository.html
1525
1525
  :exampleMetadata: fixture=_generated
@@ -1616,7 +1616,10 @@ class CfnService(
1616
1616
 
1617
1617
  @builtins.property
1618
1618
  def source_directory(self) -> typing.Optional[builtins.str]:
1619
- '''
1619
+ '''The path of the directory that stores source code and configuration files.
1620
+
1621
+ The build and start commands also execute from here. The path is absolute from root and, if not specified, defaults to the repository root.
1622
+
1620
1623
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-coderepository.html#cfn-apprunner-service-coderepository-sourcedirectory
1621
1624
  '''
1622
1625
  result = self._values.get("source_directory")
@@ -139,7 +139,7 @@ class CfnAppBlock(
139
139
  :param description: The description of the app block.
140
140
  :param display_name: The display name of the app block.
141
141
  :param packaging_type: The packaging type of the app block.
142
- :param post_setup_script_details: The post setup script details of the app block.
142
+ :param post_setup_script_details: The post setup script details of the app block. This only applies to app blocks with PackagingType ``APPSTREAM2`` .
143
143
  :param setup_script_details: The setup script details of the app block.
144
144
  :param tags: The tags of the app block.
145
145
  '''
@@ -595,15 +595,15 @@ class CfnAppBlockBuilder(
595
595
  :param id: Construct identifier for this resource (unique in its scope).
596
596
  :param instance_type: The instance type of the app block builder.
597
597
  :param name: The name of the app block builder.
598
- :param platform: The platform of the app block builder. *Allowed values* : ``WINDOWS_SERVER_2019``
598
+ :param platform: The platform of the app block builder. ``WINDOWS_SERVER_2019`` is the only valid value.
599
599
  :param vpc_config: The VPC configuration for the app block builder.
600
- :param access_endpoints: The access endpoints of the app block builder.
601
- :param app_block_arns: The ARN of the app block. *Maximum* : ``1``
600
+ :param access_endpoints:
601
+ :param app_block_arns:
602
602
  :param description: The description of the app block builder.
603
603
  :param display_name: The display name of the app block builder.
604
604
  :param enable_default_internet_access: Indicates whether default internet access is enabled for the app block builder.
605
605
  :param iam_role_arn: The ARN of the IAM role that is applied to the app block builder.
606
- :param tags: The tags of the app block builder.
606
+ :param tags:
607
607
  '''
608
608
  if __debug__:
609
609
  type_hints = typing.get_type_hints(_typecheckingstub__f2dbe872e5cba24425b73eff2bd90d7b1c6af7a2b3b47d455ff4683fb5c3b559)
@@ -658,8 +658,7 @@ class CfnAppBlockBuilder(
658
658
  @builtins.property
659
659
  @jsii.member(jsii_name="attrArn")
660
660
  def attr_arn(self) -> builtins.str:
661
- '''The ARN of the app block builder.
662
-
661
+ '''
663
662
  :cloudformationAttribute: Arn
664
663
  '''
665
664
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
@@ -667,8 +666,7 @@ class CfnAppBlockBuilder(
667
666
  @builtins.property
668
667
  @jsii.member(jsii_name="attrCreatedTime")
669
668
  def attr_created_time(self) -> builtins.str:
670
- '''The time when the app block builder was created.
671
-
669
+ '''
672
670
  :cloudformationAttribute: CreatedTime
673
671
  '''
674
672
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedTime"))
@@ -740,7 +738,6 @@ class CfnAppBlockBuilder(
740
738
  def access_endpoints(
741
739
  self,
742
740
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAppBlockBuilder.AccessEndpointProperty"]]]]:
743
- '''The access endpoints of the app block builder.'''
744
741
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAppBlockBuilder.AccessEndpointProperty"]]]], jsii.get(self, "accessEndpoints"))
745
742
 
746
743
  @access_endpoints.setter
@@ -756,7 +753,6 @@ class CfnAppBlockBuilder(
756
753
  @builtins.property
757
754
  @jsii.member(jsii_name="appBlockArns")
758
755
  def app_block_arns(self) -> typing.Optional[typing.List[builtins.str]]:
759
- '''The ARN of the app block.'''
760
756
  return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "appBlockArns"))
761
757
 
762
758
  @app_block_arns.setter
@@ -826,7 +822,6 @@ class CfnAppBlockBuilder(
826
822
  @builtins.property
827
823
  @jsii.member(jsii_name="tags")
828
824
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
829
- '''The tags of the app block builder.'''
830
825
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
831
826
 
832
827
  @tags.setter
@@ -1020,15 +1015,15 @@ class CfnAppBlockBuilderProps:
1020
1015
 
1021
1016
  :param instance_type: The instance type of the app block builder.
1022
1017
  :param name: The name of the app block builder.
1023
- :param platform: The platform of the app block builder. *Allowed values* : ``WINDOWS_SERVER_2019``
1018
+ :param platform: The platform of the app block builder. ``WINDOWS_SERVER_2019`` is the only valid value.
1024
1019
  :param vpc_config: The VPC configuration for the app block builder.
1025
- :param access_endpoints: The access endpoints of the app block builder.
1026
- :param app_block_arns: The ARN of the app block. *Maximum* : ``1``
1020
+ :param access_endpoints:
1021
+ :param app_block_arns:
1027
1022
  :param description: The description of the app block builder.
1028
1023
  :param display_name: The display name of the app block builder.
1029
1024
  :param enable_default_internet_access: Indicates whether default internet access is enabled for the app block builder.
1030
1025
  :param iam_role_arn: The ARN of the IAM role that is applied to the app block builder.
1031
- :param tags: The tags of the app block builder.
1026
+ :param tags:
1032
1027
 
1033
1028
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html
1034
1029
  :exampleMetadata: fixture=_generated
@@ -1122,7 +1117,7 @@ class CfnAppBlockBuilderProps:
1122
1117
  def platform(self) -> builtins.str:
1123
1118
  '''The platform of the app block builder.
1124
1119
 
1125
- *Allowed values* : ``WINDOWS_SERVER_2019``
1120
+ ``WINDOWS_SERVER_2019`` is the only valid value.
1126
1121
 
1127
1122
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html#cfn-appstream-appblockbuilder-platform
1128
1123
  '''
@@ -1146,8 +1141,7 @@ class CfnAppBlockBuilderProps:
1146
1141
  def access_endpoints(
1147
1142
  self,
1148
1143
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnAppBlockBuilder.AccessEndpointProperty]]]]:
1149
- '''The access endpoints of the app block builder.
1150
-
1144
+ '''
1151
1145
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html#cfn-appstream-appblockbuilder-accessendpoints
1152
1146
  '''
1153
1147
  result = self._values.get("access_endpoints")
@@ -1155,10 +1149,7 @@ class CfnAppBlockBuilderProps:
1155
1149
 
1156
1150
  @builtins.property
1157
1151
  def app_block_arns(self) -> typing.Optional[typing.List[builtins.str]]:
1158
- '''The ARN of the app block.
1159
-
1160
- *Maximum* : ``1``
1161
-
1152
+ '''
1162
1153
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html#cfn-appstream-appblockbuilder-appblockarns
1163
1154
  '''
1164
1155
  result = self._values.get("app_block_arns")
@@ -1204,8 +1195,7 @@ class CfnAppBlockBuilderProps:
1204
1195
 
1205
1196
  @builtins.property
1206
1197
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1207
- '''The tags of the app block builder.
1208
-
1198
+ '''
1209
1199
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html#cfn-appstream-appblockbuilder-tags
1210
1200
  '''
1211
1201
  result = self._values.get("tags")
@@ -1257,7 +1247,7 @@ class CfnAppBlockProps:
1257
1247
  :param description: The description of the app block.
1258
1248
  :param display_name: The display name of the app block.
1259
1249
  :param packaging_type: The packaging type of the app block.
1260
- :param post_setup_script_details: The post setup script details of the app block.
1250
+ :param post_setup_script_details: The post setup script details of the app block. This only applies to app blocks with PackagingType ``APPSTREAM2`` .
1261
1251
  :param setup_script_details: The setup script details of the app block.
1262
1252
  :param tags: The tags of the app block.
1263
1253
 
@@ -1399,6 +1389,8 @@ class CfnAppBlockProps:
1399
1389
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAppBlock.ScriptDetailsProperty]]:
1400
1390
  '''The post setup script details of the app block.
1401
1391
 
1392
+ This only applies to app blocks with PackagingType ``APPSTREAM2`` .
1393
+
1402
1394
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblock.html#cfn-appstream-appblock-postsetupscriptdetails
1403
1395
  '''
1404
1396
  result = self._values.get("post_setup_script_details")