aws-cdk-lib 2.209.1__py3-none-any.whl → 2.211.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 (58) hide show
  1. aws_cdk/__init__.py +6 -11
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.209.1.jsii.tgz → aws-cdk-lib@2.211.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +2 -1
  5. aws_cdk/aws_appconfig/__init__.py +9 -0
  6. aws_cdk/aws_arcregionswitch/__init__.py +4962 -0
  7. aws_cdk/aws_athena/__init__.py +23 -19
  8. aws_cdk/aws_autoscaling/__init__.py +6 -6
  9. aws_cdk/aws_batch/__init__.py +721 -51
  10. aws_cdk/aws_cassandra/__init__.py +28 -1
  11. aws_cdk/aws_cloudfront/__init__.py +20 -8
  12. aws_cdk/aws_cognito/__init__.py +9 -2
  13. aws_cdk/aws_datazone/__init__.py +118 -77
  14. aws_cdk/aws_dax/__init__.py +39 -0
  15. aws_cdk/aws_deadline/__init__.py +155 -7
  16. aws_cdk/aws_docdb/__init__.py +20 -11
  17. aws_cdk/aws_dynamodb/__init__.py +160 -20
  18. aws_cdk/aws_ec2/__init__.py +978 -256
  19. aws_cdk/aws_ecr/__init__.py +274 -0
  20. aws_cdk/aws_ecs/__init__.py +335 -220
  21. aws_cdk/aws_eks/__init__.py +51 -3
  22. aws_cdk/aws_elasticloadbalancingv2/__init__.py +9 -7
  23. aws_cdk/aws_entityresolution/__init__.py +240 -45
  24. aws_cdk/aws_evs/__init__.py +20 -45
  25. aws_cdk/aws_iot/__init__.py +387 -0
  26. aws_cdk/aws_iotsitewise/__init__.py +1247 -139
  27. aws_cdk/aws_ivs/__init__.py +443 -33
  28. aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
  29. aws_cdk/aws_kms/__init__.py +15 -0
  30. aws_cdk/aws_lambda/__init__.py +3 -3
  31. aws_cdk/aws_lightsail/__init__.py +590 -0
  32. aws_cdk/aws_logs/__init__.py +97 -3
  33. aws_cdk/aws_medialive/__init__.py +270 -7
  34. aws_cdk/aws_mediapackagev2/__init__.py +204 -6
  35. aws_cdk/aws_neptune/__init__.py +41 -2
  36. aws_cdk/aws_networkfirewall/__init__.py +490 -134
  37. aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
  38. aws_cdk/aws_opensearchserverless/__init__.py +2 -2
  39. aws_cdk/aws_opsworks/__init__.py +125 -125
  40. aws_cdk/aws_opsworkscm/__init__.py +1 -53
  41. aws_cdk/aws_pcs/__init__.py +36 -0
  42. aws_cdk/aws_qbusiness/__init__.py +3 -3
  43. aws_cdk/aws_quicksight/__init__.py +107 -0
  44. aws_cdk/aws_rds/__init__.py +274 -0
  45. aws_cdk/aws_s3/__init__.py +56 -1
  46. aws_cdk/aws_s3express/__init__.py +52 -1
  47. aws_cdk/aws_sagemaker/__init__.py +4033 -218
  48. aws_cdk/aws_ses/__init__.py +172 -9
  49. aws_cdk/aws_ssm/__init__.py +8 -4
  50. aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
  51. aws_cdk/aws_wisdom/__init__.py +2 -2
  52. aws_cdk/aws_workspacesweb/__init__.py +949 -157
  53. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/METADATA +8 -8
  54. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/RECORD +58 -56
  55. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/LICENSE +0 -0
  56. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/NOTICE +0 -0
  57. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/WHEEL +0 -0
  58. {aws_cdk_lib-2.209.1.dist-info → aws_cdk_lib-2.211.0.dist-info}/top_level.txt +0 -0
@@ -77,7 +77,7 @@ class CfnServer(
77
77
  ):
78
78
  '''The ``AWS::OpsWorksCM::Server`` resource creates an AWS OpsWorks for Chef Automate or OpsWorks for Puppet Enterprise configuration management server.
79
79
 
80
- For more information, see `Create a Chef Automate Server in AWS CloudFormation <https://docs.aws.amazon.com/opsworks/latest/userguide/opscm-create-server-cfn.html>`_ or `Create a Puppet Enterprise Master in AWS CloudFormation <https://docs.aws.amazon.com/opsworks/latest/userguide/opspup-create-server-cfn.html>`_ in the *AWS OpsWorks User Guide* , and `CreateServer <https://docs.aws.amazon.com/opsworks-cm/latest/APIReference/API_CreateServer.html>`_ in the *AWS OpsWorks CM API Reference* .
80
+ For more information, see `Create a Chef Automate Server in AWS CloudFormation <https://docs.aws.amazon.com/opsworks/latest/userguide/opscm-create-server-cfn.html>`_ or `Create a Puppet Enterprise Master in AWS CloudFormation <https://docs.aws.amazon.com/opsworks/latest/userguide/opspup-create-server-cfn.html>`_ in the *OpsWorks User Guide* , and `CreateServer <https://docs.aws.amazon.com/opsworks-cm/latest/APIReference/API_CreateServer.html>`_ in the *AWS OpsWorks CM API Reference* .
81
81
 
82
82
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html
83
83
  :cloudformationResource: AWS::OpsWorksCM::Server
@@ -113,7 +113,6 @@ class CfnServer(
113
113
  preferred_backup_window="preferredBackupWindow",
114
114
  preferred_maintenance_window="preferredMaintenanceWindow",
115
115
  security_group_ids=["securityGroupIds"],
116
- server_name="serverName",
117
116
  subnet_ids=["subnetIds"],
118
117
  tags=[CfnTag(
119
118
  key="key",
@@ -145,7 +144,6 @@ class CfnServer(
145
144
  preferred_backup_window: typing.Optional[builtins.str] = None,
146
145
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
147
146
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
148
- server_name: typing.Optional[builtins.str] = None,
149
147
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
150
148
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
151
149
  ) -> None:
@@ -170,7 +168,6 @@ class CfnServer(
170
168
  :param preferred_backup_window: The start time for a one-hour period during which AWS OpsWorks CM backs up application-level data on your server if automated backups are enabled. Valid values must be specified in one of the following formats: - ``HH:MM`` for daily backups - ``DDD:HH:MM`` for weekly backups ``MM`` must be specified as ``00`` . The specified time is in coordinated universal time (UTC). The default value is a random, daily start time. *Example:* ``08:00`` , which represents a daily start time of 08:00 UTC. *Example:* ``Mon:08:00`` , which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
171
169
  :param preferred_maintenance_window: The start time for a one-hour period each week during which AWS OpsWorks CM performs maintenance on the instance. Valid values must be specified in the following format: ``DDD:HH:MM`` . ``MM`` must be specified as ``00`` . The specified time is in coordinated universal time (UTC). The default value is a random one-hour period on Tuesday, Wednesday, or Friday. See ``TimeWindowDefinition`` for more information. *Example:* ``Mon:08:00`` , which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
172
170
  :param security_group_ids: A list of security group IDs to attach to the Amazon EC2 instance. If you add this parameter, the specified security groups must be within the VPC that is specified by ``SubnetIds`` . If you do not specify this parameter, AWS OpsWorks CM creates one new security group that uses TCP ports 22 and 443, open to 0.0.0.0/0 (everyone).
173
- :param server_name: The name of the server. The server name must be unique within your AWS account, within each region. Server names must start with a letter; then letters, numbers, or hyphens (-) are allowed, up to a maximum of 40 characters.
174
171
  :param subnet_ids: The IDs of subnets in which to launch the server EC2 instance. Amazon EC2-Classic customers: This field is required. All servers must run within a VPC. The VPC must have "Auto Assign Public IP" enabled. EC2-VPC customers: This field is optional. If you do not specify subnet IDs, your EC2 instances are created in a default subnet that is selected by Amazon EC2. If you specify subnet IDs, the VPC must have "Auto Assign Public IP" enabled. For more information about supported Amazon EC2 platforms, see `Supported Platforms <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html>`_ .
175
172
  :param tags: A map that contains tag keys and tag values to attach to an AWS OpsWorks for Chef Automate or OpsWorks for Puppet Enterprise server. - The key cannot be empty. - The key can be a maximum of 127 characters, and can contain only Unicode letters, numbers, or separators, or the following special characters: `+ - = . _ : /
176
173
  '''
@@ -197,7 +194,6 @@ class CfnServer(
197
194
  preferred_backup_window=preferred_backup_window,
198
195
  preferred_maintenance_window=preferred_maintenance_window,
199
196
  security_group_ids=security_group_ids,
200
- server_name=server_name,
201
197
  subnet_ids=subnet_ids,
202
198
  tags=tags,
203
199
  )
@@ -254,15 +250,6 @@ class CfnServer(
254
250
  '''
255
251
  return typing.cast(builtins.str, jsii.get(self, "attrEndpoint"))
256
252
 
257
- @builtins.property
258
- @jsii.member(jsii_name="attrId")
259
- def attr_id(self) -> builtins.str:
260
- '''The ID of the server.
261
-
262
- :cloudformationAttribute: Id
263
- '''
264
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
265
-
266
253
  @builtins.property
267
254
  @jsii.member(jsii_name="attrServerName")
268
255
  def attr_server_name(self) -> builtins.str:
@@ -537,19 +524,6 @@ class CfnServer(
537
524
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
538
525
  jsii.set(self, "securityGroupIds", value) # pyright: ignore[reportArgumentType]
539
526
 
540
- @builtins.property
541
- @jsii.member(jsii_name="serverName")
542
- def server_name(self) -> typing.Optional[builtins.str]:
543
- '''The name of the server.'''
544
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverName"))
545
-
546
- @server_name.setter
547
- def server_name(self, value: typing.Optional[builtins.str]) -> None:
548
- if __debug__:
549
- type_hints = typing.get_type_hints(_typecheckingstub__0fdc9b0c6ccfb79b318a5321a2bdb7586f084e301b627e9b708804bad96c9238)
550
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
551
- jsii.set(self, "serverName", value) # pyright: ignore[reportArgumentType]
552
-
553
527
  @builtins.property
554
528
  @jsii.member(jsii_name="subnetIds")
555
529
  def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -695,7 +669,6 @@ class CfnServer(
695
669
  "preferred_backup_window": "preferredBackupWindow",
696
670
  "preferred_maintenance_window": "preferredMaintenanceWindow",
697
671
  "security_group_ids": "securityGroupIds",
698
- "server_name": "serverName",
699
672
  "subnet_ids": "subnetIds",
700
673
  "tags": "tags",
701
674
  },
@@ -722,7 +695,6 @@ class CfnServerProps:
722
695
  preferred_backup_window: typing.Optional[builtins.str] = None,
723
696
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
724
697
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
725
- server_name: typing.Optional[builtins.str] = None,
726
698
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
727
699
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
728
700
  ) -> None:
@@ -746,7 +718,6 @@ class CfnServerProps:
746
718
  :param preferred_backup_window: The start time for a one-hour period during which AWS OpsWorks CM backs up application-level data on your server if automated backups are enabled. Valid values must be specified in one of the following formats: - ``HH:MM`` for daily backups - ``DDD:HH:MM`` for weekly backups ``MM`` must be specified as ``00`` . The specified time is in coordinated universal time (UTC). The default value is a random, daily start time. *Example:* ``08:00`` , which represents a daily start time of 08:00 UTC. *Example:* ``Mon:08:00`` , which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
747
719
  :param preferred_maintenance_window: The start time for a one-hour period each week during which AWS OpsWorks CM performs maintenance on the instance. Valid values must be specified in the following format: ``DDD:HH:MM`` . ``MM`` must be specified as ``00`` . The specified time is in coordinated universal time (UTC). The default value is a random one-hour period on Tuesday, Wednesday, or Friday. See ``TimeWindowDefinition`` for more information. *Example:* ``Mon:08:00`` , which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
748
720
  :param security_group_ids: A list of security group IDs to attach to the Amazon EC2 instance. If you add this parameter, the specified security groups must be within the VPC that is specified by ``SubnetIds`` . If you do not specify this parameter, AWS OpsWorks CM creates one new security group that uses TCP ports 22 and 443, open to 0.0.0.0/0 (everyone).
749
- :param server_name: The name of the server. The server name must be unique within your AWS account, within each region. Server names must start with a letter; then letters, numbers, or hyphens (-) are allowed, up to a maximum of 40 characters.
750
721
  :param subnet_ids: The IDs of subnets in which to launch the server EC2 instance. Amazon EC2-Classic customers: This field is required. All servers must run within a VPC. The VPC must have "Auto Assign Public IP" enabled. EC2-VPC customers: This field is optional. If you do not specify subnet IDs, your EC2 instances are created in a default subnet that is selected by Amazon EC2. If you specify subnet IDs, the VPC must have "Auto Assign Public IP" enabled. For more information about supported Amazon EC2 platforms, see `Supported Platforms <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html>`_ .
751
722
  :param tags: A map that contains tag keys and tag values to attach to an AWS OpsWorks for Chef Automate or OpsWorks for Puppet Enterprise server. - The key cannot be empty. - The key can be a maximum of 127 characters, and can contain only Unicode letters, numbers, or separators, or the following special characters: `+ - = . _ : /
752
723
 
@@ -783,7 +754,6 @@ class CfnServerProps:
783
754
  preferred_backup_window="preferredBackupWindow",
784
755
  preferred_maintenance_window="preferredMaintenanceWindow",
785
756
  security_group_ids=["securityGroupIds"],
786
- server_name="serverName",
787
757
  subnet_ids=["subnetIds"],
788
758
  tags=[CfnTag(
789
759
  key="key",
@@ -811,7 +781,6 @@ class CfnServerProps:
811
781
  check_type(argname="argument preferred_backup_window", value=preferred_backup_window, expected_type=type_hints["preferred_backup_window"])
812
782
  check_type(argname="argument preferred_maintenance_window", value=preferred_maintenance_window, expected_type=type_hints["preferred_maintenance_window"])
813
783
  check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
814
- check_type(argname="argument server_name", value=server_name, expected_type=type_hints["server_name"])
815
784
  check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
816
785
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
817
786
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -849,8 +818,6 @@ class CfnServerProps:
849
818
  self._values["preferred_maintenance_window"] = preferred_maintenance_window
850
819
  if security_group_ids is not None:
851
820
  self._values["security_group_ids"] = security_group_ids
852
- if server_name is not None:
853
- self._values["server_name"] = server_name
854
821
  if subnet_ids is not None:
855
822
  self._values["subnet_ids"] = subnet_ids
856
823
  if tags is not None:
@@ -1077,17 +1044,6 @@ class CfnServerProps:
1077
1044
  result = self._values.get("security_group_ids")
1078
1045
  return typing.cast(typing.Optional[typing.List[builtins.str]], result)
1079
1046
 
1080
- @builtins.property
1081
- def server_name(self) -> typing.Optional[builtins.str]:
1082
- '''The name of the server.
1083
-
1084
- The server name must be unique within your AWS account, within each region. Server names must start with a letter; then letters, numbers, or hyphens (-) are allowed, up to a maximum of 40 characters.
1085
-
1086
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername
1087
- '''
1088
- result = self._values.get("server_name")
1089
- return typing.cast(typing.Optional[builtins.str], result)
1090
-
1091
1047
  @builtins.property
1092
1048
  def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
1093
1049
  '''The IDs of subnets in which to launch the server EC2 instance.
@@ -1163,7 +1119,6 @@ def _typecheckingstub__4fcf3005231c62e7682797d2e25d33ceb0c0b9602a2f2ffe6a7c3dabf
1163
1119
  preferred_backup_window: typing.Optional[builtins.str] = None,
1164
1120
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
1165
1121
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
1166
- server_name: typing.Optional[builtins.str] = None,
1167
1122
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
1168
1123
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1169
1124
  ) -> None:
@@ -1290,12 +1245,6 @@ def _typecheckingstub__d7663e937d0fabd66d40de7584fca886669aae87261a418b199493778
1290
1245
  """Type checking stubs"""
1291
1246
  pass
1292
1247
 
1293
- def _typecheckingstub__0fdc9b0c6ccfb79b318a5321a2bdb7586f084e301b627e9b708804bad96c9238(
1294
- value: typing.Optional[builtins.str],
1295
- ) -> None:
1296
- """Type checking stubs"""
1297
- pass
1298
-
1299
1248
  def _typecheckingstub__e6d133d8dd209b40a7f4c3900293e312fe8b95abc9cfff43e88a6fd1608b595b(
1300
1249
  value: typing.Optional[typing.List[builtins.str]],
1301
1250
  ) -> None:
@@ -1336,7 +1285,6 @@ def _typecheckingstub__6f3d9a63c768f1a40206835320dfa128b267da1fa702fbb4ecd8ac94b
1336
1285
  preferred_backup_window: typing.Optional[builtins.str] = None,
1337
1286
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
1338
1287
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
1339
- server_name: typing.Optional[builtins.str] = None,
1340
1288
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
1341
1289
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1342
1290
  ) -> None:
@@ -98,6 +98,7 @@ class CfnCluster(
98
98
 
99
99
  cfn_cluster = pcs.CfnCluster(self, "MyCfnCluster",
100
100
  networking=pcs.CfnCluster.NetworkingProperty(
101
+ network_type="networkType",
101
102
  security_group_ids=["securityGroupIds"],
102
103
  subnet_ids=["subnetIds"]
103
104
  ),
@@ -520,6 +521,7 @@ class CfnCluster(
520
521
  "port": "port",
521
522
  "private_ip_address": "privateIpAddress",
522
523
  "type": "type",
524
+ "ipv6_address": "ipv6Address",
523
525
  "public_ip_address": "publicIpAddress",
524
526
  },
525
527
  )
@@ -530,6 +532,7 @@ class CfnCluster(
530
532
  port: builtins.str,
531
533
  private_ip_address: builtins.str,
532
534
  type: builtins.str,
535
+ ipv6_address: typing.Optional[builtins.str] = None,
533
536
  public_ip_address: typing.Optional[builtins.str] = None,
534
537
  ) -> None:
535
538
  '''An endpoint available for interaction with the scheduler.
@@ -537,6 +540,7 @@ class CfnCluster(
537
540
  :param port: The endpoint's connection port number.
538
541
  :param private_ip_address: The endpoint's private IP address.
539
542
  :param type: Indicates the type of endpoint running at the specific IP address.
543
+ :param ipv6_address: The endpoint's IPv6 address.
540
544
  :param public_ip_address: The endpoint's public IP address.
541
545
 
542
546
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html
@@ -554,6 +558,7 @@ class CfnCluster(
554
558
  type="type",
555
559
 
556
560
  # the properties below are optional
561
+ ipv6_address="ipv6Address",
557
562
  public_ip_address="publicIpAddress"
558
563
  )
559
564
  '''
@@ -562,12 +567,15 @@ class CfnCluster(
562
567
  check_type(argname="argument port", value=port, expected_type=type_hints["port"])
563
568
  check_type(argname="argument private_ip_address", value=private_ip_address, expected_type=type_hints["private_ip_address"])
564
569
  check_type(argname="argument type", value=type, expected_type=type_hints["type"])
570
+ check_type(argname="argument ipv6_address", value=ipv6_address, expected_type=type_hints["ipv6_address"])
565
571
  check_type(argname="argument public_ip_address", value=public_ip_address, expected_type=type_hints["public_ip_address"])
566
572
  self._values: typing.Dict[builtins.str, typing.Any] = {
567
573
  "port": port,
568
574
  "private_ip_address": private_ip_address,
569
575
  "type": type,
570
576
  }
577
+ if ipv6_address is not None:
578
+ self._values["ipv6_address"] = ipv6_address
571
579
  if public_ip_address is not None:
572
580
  self._values["public_ip_address"] = public_ip_address
573
581
 
@@ -601,6 +609,15 @@ class CfnCluster(
601
609
  assert result is not None, "Required property 'type' is missing"
602
610
  return typing.cast(builtins.str, result)
603
611
 
612
+ @builtins.property
613
+ def ipv6_address(self) -> typing.Optional[builtins.str]:
614
+ '''The endpoint's IPv6 address.
615
+
616
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html#cfn-pcs-cluster-endpoint-ipv6address
617
+ '''
618
+ result = self._values.get("ipv6_address")
619
+ return typing.cast(typing.Optional[builtins.str], result)
620
+
604
621
  @builtins.property
605
622
  def public_ip_address(self) -> typing.Optional[builtins.str]:
606
623
  '''The endpoint's public IP address.
@@ -695,6 +712,7 @@ class CfnCluster(
695
712
  jsii_type="aws-cdk-lib.aws_pcs.CfnCluster.NetworkingProperty",
696
713
  jsii_struct_bases=[],
697
714
  name_mapping={
715
+ "network_type": "networkType",
698
716
  "security_group_ids": "securityGroupIds",
699
717
  "subnet_ids": "subnetIds",
700
718
  },
@@ -703,11 +721,13 @@ class CfnCluster(
703
721
  def __init__(
704
722
  self,
705
723
  *,
724
+ network_type: typing.Optional[builtins.str] = None,
706
725
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
707
726
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
708
727
  ) -> None:
709
728
  '''TThe networking configuration for the cluster's control plane.
710
729
 
730
+ :param network_type: The IP of the cluster (IPV4 or IPV6).
711
731
  :param security_group_ids: The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
712
732
  :param subnet_ids: The list of subnet IDs where AWS PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and AWS PCS resources. The subnet must have an available IP address, cannot reside in AWS Outposts, AWS Wavelength, or an AWS Local Zone. AWS PCS currently supports only 1 subnet in this list.
713
733
 
@@ -721,20 +741,33 @@ class CfnCluster(
721
741
  from aws_cdk import aws_pcs as pcs
722
742
 
723
743
  networking_property = pcs.CfnCluster.NetworkingProperty(
744
+ network_type="networkType",
724
745
  security_group_ids=["securityGroupIds"],
725
746
  subnet_ids=["subnetIds"]
726
747
  )
727
748
  '''
728
749
  if __debug__:
729
750
  type_hints = typing.get_type_hints(_typecheckingstub__82c7f3d28e2ed0d063467ea787c6cfc31c28d4c5f26ef1ddf71940887dea9d1f)
751
+ check_type(argname="argument network_type", value=network_type, expected_type=type_hints["network_type"])
730
752
  check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
731
753
  check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
732
754
  self._values: typing.Dict[builtins.str, typing.Any] = {}
755
+ if network_type is not None:
756
+ self._values["network_type"] = network_type
733
757
  if security_group_ids is not None:
734
758
  self._values["security_group_ids"] = security_group_ids
735
759
  if subnet_ids is not None:
736
760
  self._values["subnet_ids"] = subnet_ids
737
761
 
762
+ @builtins.property
763
+ def network_type(self) -> typing.Optional[builtins.str]:
764
+ '''The IP of the cluster (IPV4 or IPV6).
765
+
766
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-networking.html#cfn-pcs-cluster-networking-networktype
767
+ '''
768
+ result = self._values.get("network_type")
769
+ return typing.cast(typing.Optional[builtins.str], result)
770
+
738
771
  @builtins.property
739
772
  def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
740
773
  '''The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
@@ -1080,6 +1113,7 @@ class CfnClusterProps:
1080
1113
 
1081
1114
  cfn_cluster_props = pcs.CfnClusterProps(
1082
1115
  networking=pcs.CfnCluster.NetworkingProperty(
1116
+ network_type="networkType",
1083
1117
  security_group_ids=["securityGroupIds"],
1084
1118
  subnet_ids=["subnetIds"]
1085
1119
  ),
@@ -2874,6 +2908,7 @@ def _typecheckingstub__fb46faa4736fd5bede060ea1460c35898193ef49ace1726974a1db895
2874
2908
  port: builtins.str,
2875
2909
  private_ip_address: builtins.str,
2876
2910
  type: builtins.str,
2911
+ ipv6_address: typing.Optional[builtins.str] = None,
2877
2912
  public_ip_address: typing.Optional[builtins.str] = None,
2878
2913
  ) -> None:
2879
2914
  """Type checking stubs"""
@@ -2889,6 +2924,7 @@ def _typecheckingstub__b9e127e61b0ea75f45a99bba1dcc51875a9ecf36ea91f697889ebe4cb
2889
2924
 
2890
2925
  def _typecheckingstub__82c7f3d28e2ed0d063467ea787c6cfc31c28d4c5f26ef1ddf71940887dea9d1f(
2891
2926
  *,
2927
+ network_type: typing.Optional[builtins.str] = None,
2892
2928
  security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2893
2929
  subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2894
2930
  ) -> None:
@@ -7386,7 +7386,7 @@ class CfnWebExperience(
7386
7386
  :param customization_configuration: Contains the configuration information to customize the logo, font, and color of an Amazon Q Business web experience with individual files for each property or a CSS file for them all.
7387
7387
  :param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
7388
7388
  :param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
7389
- :param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
7389
+ :param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: The ``roleArn`` parameter is required when your Amazon Q Business application is created with IAM Identity Center. It is not required for SAML-based applications.
7390
7390
  :param sample_prompts_control_mode: Determines whether sample prompts are enabled in the web experience for an end user.
7391
7391
  :param subtitle: A subtitle to personalize your Amazon Q Business web experience.
7392
7392
  :param tags: A list of key-value pairs that identify or categorize your Amazon Q Business web experience. You can also use tags to help control access to the web experience. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
@@ -8079,7 +8079,7 @@ class CfnWebExperienceProps:
8079
8079
  :param customization_configuration: Contains the configuration information to customize the logo, font, and color of an Amazon Q Business web experience with individual files for each property or a CSS file for them all.
8080
8080
  :param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
8081
8081
  :param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
8082
- :param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
8082
+ :param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: The ``roleArn`` parameter is required when your Amazon Q Business application is created with IAM Identity Center. It is not required for SAML-based applications.
8083
8083
  :param sample_prompts_control_mode: Determines whether sample prompts are enabled in the web experience for an end user.
8084
8084
  :param subtitle: A subtitle to personalize your Amazon Q Business web experience.
8085
8085
  :param tags: A list of key-value pairs that identify or categorize your Amazon Q Business web experience. You can also use tags to help control access to the web experience. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
@@ -8229,7 +8229,7 @@ class CfnWebExperienceProps:
8229
8229
 
8230
8230
  .. epigraph::
8231
8231
 
8232
- You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
8232
+ The ``roleArn`` parameter is required when your Amazon Q Business application is created with IAM Identity Center. It is not required for SAML-based applications.
8233
8233
 
8234
8234
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-rolearn
8235
8235
  '''
@@ -222555,6 +222555,9 @@ class CfnTopic(
222555
222555
  config_options=quicksight.CfnTopic.TopicConfigOptionsProperty(
222556
222556
  q_business_insights_enabled=False
222557
222557
  ),
222558
+ custom_instructions=quicksight.CfnTopic.CustomInstructionsProperty(
222559
+ custom_instructions_string="customInstructionsString"
222560
+ ),
222558
222561
  data_sets=[quicksight.CfnTopic.DatasetMetadataProperty(
222559
222562
  dataset_arn="datasetArn",
222560
222563
 
@@ -222783,6 +222786,7 @@ class CfnTopic(
222783
222786
  *,
222784
222787
  aws_account_id: typing.Optional[builtins.str] = None,
222785
222788
  config_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.TopicConfigOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
222789
+ custom_instructions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.CustomInstructionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
222786
222790
  data_sets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.DatasetMetadataProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
222787
222791
  description: typing.Optional[builtins.str] = None,
222788
222792
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -222796,6 +222800,7 @@ class CfnTopic(
222796
222800
  :param id: Construct identifier for this resource (unique in its scope).
222797
222801
  :param aws_account_id: The ID of the AWS account that you want to create a topic in.
222798
222802
  :param config_options: Configuration options for a ``Topic`` .
222803
+ :param custom_instructions:
222799
222804
  :param data_sets: The data sets that the topic is associated with.
222800
222805
  :param description: The description of the topic.
222801
222806
  :param folder_arns:
@@ -222811,6 +222816,7 @@ class CfnTopic(
222811
222816
  props = CfnTopicProps(
222812
222817
  aws_account_id=aws_account_id,
222813
222818
  config_options=config_options,
222819
+ custom_instructions=custom_instructions,
222814
222820
  data_sets=data_sets,
222815
222821
  description=description,
222816
222822
  folder_arns=folder_arns,
@@ -222903,6 +222909,23 @@ class CfnTopic(
222903
222909
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
222904
222910
  jsii.set(self, "configOptions", value) # pyright: ignore[reportArgumentType]
222905
222911
 
222912
+ @builtins.property
222913
+ @jsii.member(jsii_name="customInstructions")
222914
+ def custom_instructions(
222915
+ self,
222916
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTopic.CustomInstructionsProperty"]]:
222917
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTopic.CustomInstructionsProperty"]], jsii.get(self, "customInstructions"))
222918
+
222919
+ @custom_instructions.setter
222920
+ def custom_instructions(
222921
+ self,
222922
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTopic.CustomInstructionsProperty"]],
222923
+ ) -> None:
222924
+ if __debug__:
222925
+ type_hints = typing.get_type_hints(_typecheckingstub__a4228e99258c3d4e4cf69c46721540d1bbf33b720b9bb0f99a31d4771ac81291)
222926
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
222927
+ jsii.set(self, "customInstructions", value) # pyright: ignore[reportArgumentType]
222928
+
222906
222929
  @builtins.property
222907
222930
  @jsii.member(jsii_name="dataSets")
222908
222931
  def data_sets(
@@ -223215,6 +223238,56 @@ class CfnTopic(
223215
223238
  k + "=" + repr(v) for k, v in self._values.items()
223216
223239
  )
223217
223240
 
223241
+ @jsii.data_type(
223242
+ jsii_type="aws-cdk-lib.aws_quicksight.CfnTopic.CustomInstructionsProperty",
223243
+ jsii_struct_bases=[],
223244
+ name_mapping={"custom_instructions_string": "customInstructionsString"},
223245
+ )
223246
+ class CustomInstructionsProperty:
223247
+ def __init__(self, *, custom_instructions_string: builtins.str) -> None:
223248
+ '''
223249
+ :param custom_instructions_string:
223250
+
223251
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-custominstructions.html
223252
+ :exampleMetadata: fixture=_generated
223253
+
223254
+ Example::
223255
+
223256
+ # The code below shows an example of how to instantiate this type.
223257
+ # The values are placeholders you should change.
223258
+ from aws_cdk import aws_quicksight as quicksight
223259
+
223260
+ custom_instructions_property = quicksight.CfnTopic.CustomInstructionsProperty(
223261
+ custom_instructions_string="customInstructionsString"
223262
+ )
223263
+ '''
223264
+ if __debug__:
223265
+ type_hints = typing.get_type_hints(_typecheckingstub__4623e8fed89e9724b107d62f351e7f4af85a6e603e6354489f7380506ba9040d)
223266
+ check_type(argname="argument custom_instructions_string", value=custom_instructions_string, expected_type=type_hints["custom_instructions_string"])
223267
+ self._values: typing.Dict[builtins.str, typing.Any] = {
223268
+ "custom_instructions_string": custom_instructions_string,
223269
+ }
223270
+
223271
+ @builtins.property
223272
+ def custom_instructions_string(self) -> builtins.str:
223273
+ '''
223274
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-custominstructions.html#cfn-quicksight-topic-custominstructions-custominstructionsstring
223275
+ '''
223276
+ result = self._values.get("custom_instructions_string")
223277
+ assert result is not None, "Required property 'custom_instructions_string' is missing"
223278
+ return typing.cast(builtins.str, result)
223279
+
223280
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
223281
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
223282
+
223283
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
223284
+ return not (rhs == self)
223285
+
223286
+ def __repr__(self) -> str:
223287
+ return "CustomInstructionsProperty(%s)" % ", ".join(
223288
+ k + "=" + repr(v) for k, v in self._values.items()
223289
+ )
223290
+
223218
223291
  @jsii.data_type(
223219
223292
  jsii_type="aws-cdk-lib.aws_quicksight.CfnTopic.DataAggregationProperty",
223220
223293
  jsii_struct_bases=[],
@@ -226608,6 +226681,7 @@ class CfnTopic(
226608
226681
  name_mapping={
226609
226682
  "aws_account_id": "awsAccountId",
226610
226683
  "config_options": "configOptions",
226684
+ "custom_instructions": "customInstructions",
226611
226685
  "data_sets": "dataSets",
226612
226686
  "description": "description",
226613
226687
  "folder_arns": "folderArns",
@@ -226623,6 +226697,7 @@ class CfnTopicProps:
226623
226697
  *,
226624
226698
  aws_account_id: typing.Optional[builtins.str] = None,
226625
226699
  config_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.TopicConfigOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
226700
+ custom_instructions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.CustomInstructionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
226626
226701
  data_sets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.DatasetMetadataProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
226627
226702
  description: typing.Optional[builtins.str] = None,
226628
226703
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -226635,6 +226710,7 @@ class CfnTopicProps:
226635
226710
 
226636
226711
  :param aws_account_id: The ID of the AWS account that you want to create a topic in.
226637
226712
  :param config_options: Configuration options for a ``Topic`` .
226713
+ :param custom_instructions:
226638
226714
  :param data_sets: The data sets that the topic is associated with.
226639
226715
  :param description: The description of the topic.
226640
226716
  :param folder_arns:
@@ -226657,6 +226733,9 @@ class CfnTopicProps:
226657
226733
  config_options=quicksight.CfnTopic.TopicConfigOptionsProperty(
226658
226734
  q_business_insights_enabled=False
226659
226735
  ),
226736
+ custom_instructions=quicksight.CfnTopic.CustomInstructionsProperty(
226737
+ custom_instructions_string="customInstructionsString"
226738
+ ),
226660
226739
  data_sets=[quicksight.CfnTopic.DatasetMetadataProperty(
226661
226740
  dataset_arn="datasetArn",
226662
226741
 
@@ -226881,6 +226960,7 @@ class CfnTopicProps:
226881
226960
  type_hints = typing.get_type_hints(_typecheckingstub__594e8a4ec85e161016ae0aa60a6538d619759944135cfd2b531b0f063b24a029)
226882
226961
  check_type(argname="argument aws_account_id", value=aws_account_id, expected_type=type_hints["aws_account_id"])
226883
226962
  check_type(argname="argument config_options", value=config_options, expected_type=type_hints["config_options"])
226963
+ check_type(argname="argument custom_instructions", value=custom_instructions, expected_type=type_hints["custom_instructions"])
226884
226964
  check_type(argname="argument data_sets", value=data_sets, expected_type=type_hints["data_sets"])
226885
226965
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
226886
226966
  check_type(argname="argument folder_arns", value=folder_arns, expected_type=type_hints["folder_arns"])
@@ -226893,6 +226973,8 @@ class CfnTopicProps:
226893
226973
  self._values["aws_account_id"] = aws_account_id
226894
226974
  if config_options is not None:
226895
226975
  self._values["config_options"] = config_options
226976
+ if custom_instructions is not None:
226977
+ self._values["custom_instructions"] = custom_instructions
226896
226978
  if data_sets is not None:
226897
226979
  self._values["data_sets"] = data_sets
226898
226980
  if description is not None:
@@ -226928,6 +227010,16 @@ class CfnTopicProps:
226928
227010
  result = self._values.get("config_options")
226929
227011
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTopic.TopicConfigOptionsProperty]], result)
226930
227012
 
227013
+ @builtins.property
227014
+ def custom_instructions(
227015
+ self,
227016
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTopic.CustomInstructionsProperty]]:
227017
+ '''
227018
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-topic.html#cfn-quicksight-topic-custominstructions
227019
+ '''
227020
+ result = self._values.get("custom_instructions")
227021
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTopic.CustomInstructionsProperty]], result)
227022
+
226931
227023
  @builtins.property
226932
227024
  def data_sets(
226933
227025
  self,
@@ -244861,6 +244953,7 @@ def _typecheckingstub__e98a54c810cd62780e1f968a0f83f854bc8baac07e43fc099f3f81b06
244861
244953
  *,
244862
244954
  aws_account_id: typing.Optional[builtins.str] = None,
244863
244955
  config_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.TopicConfigOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
244956
+ custom_instructions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.CustomInstructionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
244864
244957
  data_sets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.DatasetMetadataProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
244865
244958
  description: typing.Optional[builtins.str] = None,
244866
244959
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -244896,6 +244989,12 @@ def _typecheckingstub__6972dc597cc6d8f7def40f8560b5bfca6605c8ee567f410a1ef660f44
244896
244989
  """Type checking stubs"""
244897
244990
  pass
244898
244991
 
244992
+ def _typecheckingstub__a4228e99258c3d4e4cf69c46721540d1bbf33b720b9bb0f99a31d4771ac81291(
244993
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTopic.CustomInstructionsProperty]],
244994
+ ) -> None:
244995
+ """Type checking stubs"""
244996
+ pass
244997
+
244899
244998
  def _typecheckingstub__865dd17cdf0180752414a809eb15588349da7941dd91964b989f41ca7cd29ab4(
244900
244999
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnTopic.DatasetMetadataProperty]]]],
244901
245000
  ) -> None:
@@ -244962,6 +245061,13 @@ def _typecheckingstub__471648aa1c53b0767a1f96087fccfd258d8d0cb568d1b3ae8ddbb3d37
244962
245061
  """Type checking stubs"""
244963
245062
  pass
244964
245063
 
245064
+ def _typecheckingstub__4623e8fed89e9724b107d62f351e7f4af85a6e603e6354489f7380506ba9040d(
245065
+ *,
245066
+ custom_instructions_string: builtins.str,
245067
+ ) -> None:
245068
+ """Type checking stubs"""
245069
+ pass
245070
+
244965
245071
  def _typecheckingstub__6cf5ac3c01c8be3f1bd3d8b91d6b6fa59b49f363c86b67e4f688e399ae84c9d1(
244966
245072
  *,
244967
245073
  dataset_row_date_granularity: typing.Optional[builtins.str] = None,
@@ -245221,6 +245327,7 @@ def _typecheckingstub__594e8a4ec85e161016ae0aa60a6538d619759944135cfd2b531b0f063
245221
245327
  *,
245222
245328
  aws_account_id: typing.Optional[builtins.str] = None,
245223
245329
  config_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.TopicConfigOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
245330
+ custom_instructions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.CustomInstructionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
245224
245331
  data_sets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.DatasetMetadataProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
245225
245332
  description: typing.Optional[builtins.str] = None,
245226
245333
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,