aws-cdk-lib 2.207.0__py3-none-any.whl → 2.208.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 (35) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_aiops/__init__.py +16 -12
  4. aws_cdk/aws_amazonmq/__init__.py +8 -18
  5. aws_cdk/aws_appstream/__init__.py +36 -4
  6. aws_cdk/aws_bedrock/__init__.py +191 -72
  7. aws_cdk/aws_certificatemanager/__init__.py +45 -0
  8. aws_cdk/aws_cloudfront/__init__.py +12 -2
  9. aws_cdk/aws_connect/__init__.py +107 -3
  10. aws_cdk/aws_customerprofiles/__init__.py +27 -22
  11. aws_cdk/aws_docdb/__init__.py +5 -3
  12. aws_cdk/aws_ec2/__init__.py +53 -11
  13. aws_cdk/aws_ecs/__init__.py +118 -29
  14. aws_cdk/aws_events/__init__.py +142 -0
  15. aws_cdk/aws_gamelift/__init__.py +2 -2
  16. aws_cdk/aws_guardduty/__init__.py +86 -0
  17. aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
  18. aws_cdk/aws_logs/__init__.py +53 -4
  19. aws_cdk/aws_mediapackagev2/__init__.py +881 -0
  20. aws_cdk/aws_omics/__init__.py +13 -10
  21. aws_cdk/aws_quicksight/__init__.py +111 -4
  22. aws_cdk/aws_rds/__init__.py +208 -10
  23. aws_cdk/aws_s3/__init__.py +775 -5
  24. aws_cdk/aws_s3express/__init__.py +61 -3
  25. aws_cdk/aws_s3tables/__init__.py +254 -0
  26. aws_cdk/aws_sagemaker/__init__.py +524 -137
  27. aws_cdk/aws_ssm/__init__.py +48 -0
  28. aws_cdk/aws_transfer/__init__.py +49 -0
  29. aws_cdk/aws_wisdom/__init__.py +1185 -100
  30. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
  31. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +35 -35
  32. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
  33. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
  34. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
  35. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/top_level.txt +0 -0
@@ -1230,7 +1230,9 @@ class CfnRunGroup(
1230
1230
  metaclass=jsii.JSIIMeta,
1231
1231
  jsii_type="aws-cdk-lib.aws_omics.CfnRunGroup",
1232
1232
  ):
1233
- '''You can optionally create a run group to limit the compute resources for the runs that you add to the group.
1233
+ '''Creates a run group to limit the compute resources for the runs that are added to the group.
1234
+
1235
+ Returns an ARN, ID, and tags for the run group.
1234
1236
 
1235
1237
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html
1236
1238
  :cloudformationResource: AWS::Omics::RunGroup
@@ -2708,15 +2710,14 @@ class CfnWorkflow(
2708
2710
  metaclass=jsii.JSIIMeta,
2709
2711
  jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow",
2710
2712
  ):
2711
- '''Creates a private workflow.Private workflows depend on a variety of resources that you create and configure before creating the workflow:.
2713
+ '''Creates a private workflow. Before you create a private workflow, you must create and configure these required resources:.
2712
2714
 
2713
- - *Input data* : Input data for the workflow, stored in an S3 bucket or a AWS HealthOmics sequence store.
2714
- - *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements.
2715
- - (Optional) *Parameter template* - You can create a parameter template file that defines the run parameters, or AWS HealthOmics can generate the parameter template for you.
2715
+ - *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements. The workflow definition file must be in .zip format.
2716
+ - (Optional) *Parameter template* : You can create a parameter template file that defines the run parameters, or AWS HealthOmics can generate the parameter template for you.
2716
2717
  - *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
2717
- - (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
2718
+ - (Optional) *Sentieon licenses* : Request a Sentieon license if using the Sentieon software in a private workflow.
2718
2719
 
2719
- For more information, see `Creating or updating a private workflow in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`_ in the AWS HealthOmics User Guide.
2720
+ For more information, see `Creating or updating a private workflow in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`_ in the *AWS HealthOmics User Guide* .
2720
2721
 
2721
2722
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
2722
2723
  :cloudformationResource: AWS::Omics::Workflow
@@ -2775,7 +2776,7 @@ class CfnWorkflow(
2775
2776
  :param main: The path of the main definition file for the workflow.
2776
2777
  :param name: The workflow's name.
2777
2778
  :param parameter_template: The workflow's parameter template.
2778
- :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
2779
+ :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. The ``storageCapacity`` can be overwritten at run time. The storage capacity is not required for runs with a ``DYNAMIC`` storage type.
2779
2780
  :param storage_type:
2780
2781
  :param tags: Tags for the workflow.
2781
2782
  '''
@@ -3141,7 +3142,7 @@ class CfnWorkflowProps:
3141
3142
  :param main: The path of the main definition file for the workflow.
3142
3143
  :param name: The workflow's name.
3143
3144
  :param parameter_template: The workflow's parameter template.
3144
- :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
3145
+ :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. The ``storageCapacity`` can be overwritten at run time. The storage capacity is not required for runs with a ``DYNAMIC`` storage type.
3145
3146
  :param storage_type:
3146
3147
  :param tags: Tags for the workflow.
3147
3148
 
@@ -3276,6 +3277,8 @@ class CfnWorkflowProps:
3276
3277
  def storage_capacity(self) -> typing.Optional[jsii.Number]:
3277
3278
  '''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
3278
3279
 
3280
+ The ``storageCapacity`` can be overwritten at run time. The storage capacity is not required for runs with a ``DYNAMIC`` storage type.
3281
+
3279
3282
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
3280
3283
  '''
3281
3284
  result = self._values.get("storage_capacity")
@@ -3325,7 +3328,7 @@ class CfnWorkflowVersion(
3325
3328
 
3326
3329
  Don’t include any personally identifiable information (PII) in the version name. Version names appear in the workflow version ARN.
3327
3330
 
3328
- For more information, see `Workflow versioning in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html>`_ in the AWS HealthOmics User Guide.
3331
+ For more information, see `Workflow versioning in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html>`_ in the *AWS HealthOmics User Guide* .
3329
3332
 
3330
3333
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html
3331
3334
  :cloudformationResource: AWS::Omics::WorkflowVersion
@@ -148266,6 +148266,9 @@ class CfnDataSource(
148266
148266
  domain="domain"
148267
148267
  ),
148268
148268
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
148269
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
148270
+ enable_identity_propagation=False
148271
+ ),
148269
148272
  role_arn="roleArn",
148270
148273
  work_group="workGroup"
148271
148274
  ),
@@ -148419,6 +148422,9 @@ class CfnDataSource(
148419
148422
  domain="domain"
148420
148423
  ),
148421
148424
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
148425
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
148426
+ enable_identity_propagation=False
148427
+ ),
148422
148428
  role_arn="roleArn",
148423
148429
  work_group="workGroup"
148424
148430
  ),
@@ -148568,6 +148574,9 @@ class CfnDataSource(
148568
148574
  domain="domain"
148569
148575
  ),
148570
148576
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
148577
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
148578
+ enable_identity_propagation=False
148579
+ ),
148571
148580
  role_arn="roleArn",
148572
148581
  work_group="workGroup"
148573
148582
  ),
@@ -149178,17 +149187,23 @@ class CfnDataSource(
149178
149187
  @jsii.data_type(
149179
149188
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.AthenaParametersProperty",
149180
149189
  jsii_struct_bases=[],
149181
- name_mapping={"role_arn": "roleArn", "work_group": "workGroup"},
149190
+ name_mapping={
149191
+ "identity_center_configuration": "identityCenterConfiguration",
149192
+ "role_arn": "roleArn",
149193
+ "work_group": "workGroup",
149194
+ },
149182
149195
  )
149183
149196
  class AthenaParametersProperty:
149184
149197
  def __init__(
149185
149198
  self,
149186
149199
  *,
149200
+ identity_center_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.IdentityCenterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
149187
149201
  role_arn: typing.Optional[builtins.str] = None,
149188
149202
  work_group: typing.Optional[builtins.str] = None,
149189
149203
  ) -> None:
149190
149204
  '''Parameters for Amazon Athena.
149191
149205
 
149206
+ :param identity_center_configuration: An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your workgroup. This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.
149192
149207
  :param role_arn: Use the ``RoleArn`` structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use ``RoleArn`` to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.
149193
149208
  :param work_group: The workgroup that Amazon Athena uses.
149194
149209
 
@@ -149202,20 +149217,39 @@ class CfnDataSource(
149202
149217
  from aws_cdk import aws_quicksight as quicksight
149203
149218
 
149204
149219
  athena_parameters_property = quicksight.CfnDataSource.AthenaParametersProperty(
149220
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
149221
+ enable_identity_propagation=False
149222
+ ),
149205
149223
  role_arn="roleArn",
149206
149224
  work_group="workGroup"
149207
149225
  )
149208
149226
  '''
149209
149227
  if __debug__:
149210
149228
  type_hints = typing.get_type_hints(_typecheckingstub__9f9751c0f8af713f14cec50a0ea45b4d181e33d0be4649de1d52c5018ba83ee1)
149229
+ check_type(argname="argument identity_center_configuration", value=identity_center_configuration, expected_type=type_hints["identity_center_configuration"])
149211
149230
  check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
149212
149231
  check_type(argname="argument work_group", value=work_group, expected_type=type_hints["work_group"])
149213
149232
  self._values: typing.Dict[builtins.str, typing.Any] = {}
149233
+ if identity_center_configuration is not None:
149234
+ self._values["identity_center_configuration"] = identity_center_configuration
149214
149235
  if role_arn is not None:
149215
149236
  self._values["role_arn"] = role_arn
149216
149237
  if work_group is not None:
149217
149238
  self._values["work_group"] = work_group
149218
149239
 
149240
+ @builtins.property
149241
+ def identity_center_configuration(
149242
+ self,
149243
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.IdentityCenterConfigurationProperty"]]:
149244
+ '''An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your workgroup.
149245
+
149246
+ This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.
149247
+
149248
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-athenaparameters.html#cfn-quicksight-datasource-athenaparameters-identitycenterconfiguration
149249
+ '''
149250
+ result = self._values.get("identity_center_configuration")
149251
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.IdentityCenterConfigurationProperty"]], result)
149252
+
149219
149253
  @builtins.property
149220
149254
  def role_arn(self) -> typing.Optional[builtins.str]:
149221
149255
  '''Use the ``RoleArn`` structure to override an account-wide role for a specific Athena data source.
@@ -149468,6 +149502,9 @@ class CfnDataSource(
149468
149502
  domain="domain"
149469
149503
  ),
149470
149504
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
149505
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
149506
+ enable_identity_propagation=False
149507
+ ),
149471
149508
  role_arn="roleArn",
149472
149509
  work_group="workGroup"
149473
149510
  ),
@@ -149712,6 +149749,9 @@ class CfnDataSource(
149712
149749
  domain="domain"
149713
149750
  ),
149714
149751
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
149752
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
149753
+ enable_identity_propagation=False
149754
+ ),
149715
149755
  role_arn="roleArn",
149716
149756
  work_group="workGroup"
149717
149757
  ),
@@ -150073,6 +150113,9 @@ class CfnDataSource(
150073
150113
  domain="domain"
150074
150114
  ),
150075
150115
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
150116
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
150117
+ enable_identity_propagation=False
150118
+ ),
150076
150119
  role_arn="roleArn",
150077
150120
  work_group="workGroup"
150078
150121
  ),
@@ -151034,7 +151077,7 @@ class CfnDataSource(
151034
151077
  :param database: Database.
151035
151078
  :param host: Host.
151036
151079
  :param port: Port. Default: - 0
151037
- :param use_service_name: Default: - false
151080
+ :param use_service_name: A Boolean value that indicates whether the ``Database`` uses a service name or an SID. If this value is left blank, the default value is ``SID`` . If this value is set to ``false`` , the value is ``SID`` . Default: - false
151038
151081
 
151039
151082
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html
151040
151083
  :exampleMetadata: fixture=_generated
@@ -151104,7 +151147,10 @@ class CfnDataSource(
151104
151147
  def use_service_name(
151105
151148
  self,
151106
151149
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
151107
- '''
151150
+ '''A Boolean value that indicates whether the ``Database`` uses a service name or an SID.
151151
+
151152
+ If this value is left blank, the default value is ``SID`` . If this value is set to ``false`` , the value is ``SID`` .
151153
+
151108
151154
  :default: - false
151109
151155
 
151110
151156
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html#cfn-quicksight-datasource-oracleparameters-useservicename
@@ -152682,6 +152728,9 @@ class CfnDataSourceProps:
152682
152728
  domain="domain"
152683
152729
  ),
152684
152730
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
152731
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
152732
+ enable_identity_propagation=False
152733
+ ),
152685
152734
  role_arn="roleArn",
152686
152735
  work_group="workGroup"
152687
152736
  ),
@@ -152835,6 +152884,9 @@ class CfnDataSourceProps:
152835
152884
  domain="domain"
152836
152885
  ),
152837
152886
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
152887
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
152888
+ enable_identity_propagation=False
152889
+ ),
152838
152890
  role_arn="roleArn",
152839
152891
  work_group="workGroup"
152840
152892
  ),
@@ -152984,6 +153036,9 @@ class CfnDataSourceProps:
152984
153036
  domain="domain"
152985
153037
  ),
152986
153038
  athena_parameters=quicksight.CfnDataSource.AthenaParametersProperty(
153039
+ identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
153040
+ enable_identity_propagation=False
153041
+ ),
152987
153042
  role_arn="roleArn",
152988
153043
  work_group="workGroup"
152989
153044
  ),
@@ -222477,7 +222532,7 @@ class CfnThemeProps:
222477
222532
  )
222478
222533
 
222479
222534
 
222480
- @jsii.implements(_IInspectable_c2943556)
222535
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
222481
222536
  class CfnTopic(
222482
222537
  _CfnResource_9df397a6,
222483
222538
  metaclass=jsii.JSIIMeta,
@@ -222712,6 +222767,10 @@ class CfnTopic(
222712
222767
  description="description",
222713
222768
  folder_arns=["folderArns"],
222714
222769
  name="name",
222770
+ tags=[CfnTag(
222771
+ key="key",
222772
+ value="value"
222773
+ )],
222715
222774
  topic_id="topicId",
222716
222775
  user_experience_version="userExperienceVersion"
222717
222776
  )
@@ -222728,6 +222787,7 @@ class CfnTopic(
222728
222787
  description: typing.Optional[builtins.str] = None,
222729
222788
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
222730
222789
  name: typing.Optional[builtins.str] = None,
222790
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
222731
222791
  topic_id: typing.Optional[builtins.str] = None,
222732
222792
  user_experience_version: typing.Optional[builtins.str] = None,
222733
222793
  ) -> None:
@@ -222740,6 +222800,7 @@ class CfnTopic(
222740
222800
  :param description: The description of the topic.
222741
222801
  :param folder_arns:
222742
222802
  :param name: The name of the topic.
222803
+ :param tags:
222743
222804
  :param topic_id: The ID for the topic. This ID is unique per AWS Region for each AWS account.
222744
222805
  :param user_experience_version: The user experience version of the topic.
222745
222806
  '''
@@ -222754,6 +222815,7 @@ class CfnTopic(
222754
222815
  description=description,
222755
222816
  folder_arns=folder_arns,
222756
222817
  name=name,
222818
+ tags=tags,
222757
222819
  topic_id=topic_id,
222758
222820
  user_experience_version=user_experience_version,
222759
222821
  )
@@ -222799,6 +222861,12 @@ class CfnTopic(
222799
222861
  '''
222800
222862
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
222801
222863
 
222864
+ @builtins.property
222865
+ @jsii.member(jsii_name="cdkTagManager")
222866
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
222867
+ '''Tag Manager which manages the tags for this resource.'''
222868
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
222869
+
222802
222870
  @builtins.property
222803
222871
  @jsii.member(jsii_name="cfnProperties")
222804
222872
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -222891,6 +222959,18 @@ class CfnTopic(
222891
222959
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
222892
222960
  jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
222893
222961
 
222962
+ @builtins.property
222963
+ @jsii.member(jsii_name="tags")
222964
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
222965
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
222966
+
222967
+ @tags.setter
222968
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
222969
+ if __debug__:
222970
+ type_hints = typing.get_type_hints(_typecheckingstub__fc038072ceb338b4cb2de60df4a8b4bddbd78d8d6f755dc18b6bf459654cba99)
222971
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
222972
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
222973
+
222894
222974
  @builtins.property
222895
222975
  @jsii.member(jsii_name="topicId")
222896
222976
  def topic_id(self) -> typing.Optional[builtins.str]:
@@ -226532,6 +226612,7 @@ class CfnTopic(
226532
226612
  "description": "description",
226533
226613
  "folder_arns": "folderArns",
226534
226614
  "name": "name",
226615
+ "tags": "tags",
226535
226616
  "topic_id": "topicId",
226536
226617
  "user_experience_version": "userExperienceVersion",
226537
226618
  },
@@ -226546,6 +226627,7 @@ class CfnTopicProps:
226546
226627
  description: typing.Optional[builtins.str] = None,
226547
226628
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
226548
226629
  name: typing.Optional[builtins.str] = None,
226630
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
226549
226631
  topic_id: typing.Optional[builtins.str] = None,
226550
226632
  user_experience_version: typing.Optional[builtins.str] = None,
226551
226633
  ) -> None:
@@ -226557,6 +226639,7 @@ class CfnTopicProps:
226557
226639
  :param description: The description of the topic.
226558
226640
  :param folder_arns:
226559
226641
  :param name: The name of the topic.
226642
+ :param tags:
226560
226643
  :param topic_id: The ID for the topic. This ID is unique per AWS Region for each AWS account.
226561
226644
  :param user_experience_version: The user experience version of the topic.
226562
226645
 
@@ -226786,6 +226869,10 @@ class CfnTopicProps:
226786
226869
  description="description",
226787
226870
  folder_arns=["folderArns"],
226788
226871
  name="name",
226872
+ tags=[CfnTag(
226873
+ key="key",
226874
+ value="value"
226875
+ )],
226789
226876
  topic_id="topicId",
226790
226877
  user_experience_version="userExperienceVersion"
226791
226878
  )
@@ -226798,6 +226885,7 @@ class CfnTopicProps:
226798
226885
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
226799
226886
  check_type(argname="argument folder_arns", value=folder_arns, expected_type=type_hints["folder_arns"])
226800
226887
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
226888
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
226801
226889
  check_type(argname="argument topic_id", value=topic_id, expected_type=type_hints["topic_id"])
226802
226890
  check_type(argname="argument user_experience_version", value=user_experience_version, expected_type=type_hints["user_experience_version"])
226803
226891
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -226813,6 +226901,8 @@ class CfnTopicProps:
226813
226901
  self._values["folder_arns"] = folder_arns
226814
226902
  if name is not None:
226815
226903
  self._values["name"] = name
226904
+ if tags is not None:
226905
+ self._values["tags"] = tags
226816
226906
  if topic_id is not None:
226817
226907
  self._values["topic_id"] = topic_id
226818
226908
  if user_experience_version is not None:
@@ -226875,6 +226965,14 @@ class CfnTopicProps:
226875
226965
  result = self._values.get("name")
226876
226966
  return typing.cast(typing.Optional[builtins.str], result)
226877
226967
 
226968
+ @builtins.property
226969
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
226970
+ '''
226971
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-topic.html#cfn-quicksight-topic-tags
226972
+ '''
226973
+ result = self._values.get("tags")
226974
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
226975
+
226878
226976
  @builtins.property
226879
226977
  def topic_id(self) -> typing.Optional[builtins.str]:
226880
226978
  '''The ID for the topic.
@@ -239107,6 +239205,7 @@ def _typecheckingstub__c9fa436370baac124e212cd999680e59dee51cb3fc88dc417c84a4c59
239107
239205
 
239108
239206
  def _typecheckingstub__9f9751c0f8af713f14cec50a0ea45b4d181e33d0be4649de1d52c5018ba83ee1(
239109
239207
  *,
239208
+ identity_center_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.IdentityCenterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
239110
239209
  role_arn: typing.Optional[builtins.str] = None,
239111
239210
  work_group: typing.Optional[builtins.str] = None,
239112
239211
  ) -> None:
@@ -244766,6 +244865,7 @@ def _typecheckingstub__e98a54c810cd62780e1f968a0f83f854bc8baac07e43fc099f3f81b06
244766
244865
  description: typing.Optional[builtins.str] = None,
244767
244866
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
244768
244867
  name: typing.Optional[builtins.str] = None,
244868
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
244769
244869
  topic_id: typing.Optional[builtins.str] = None,
244770
244870
  user_experience_version: typing.Optional[builtins.str] = None,
244771
244871
  ) -> None:
@@ -244820,6 +244920,12 @@ def _typecheckingstub__50731ae547f0d2238bc12670138bf03f65427325a5cb389667f3552b0
244820
244920
  """Type checking stubs"""
244821
244921
  pass
244822
244922
 
244923
+ def _typecheckingstub__fc038072ceb338b4cb2de60df4a8b4bddbd78d8d6f755dc18b6bf459654cba99(
244924
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
244925
+ ) -> None:
244926
+ """Type checking stubs"""
244927
+ pass
244928
+
244823
244929
  def _typecheckingstub__5e7ec12bb62b1d230bdac157875cb0b5b7a386f94a0af70696f88bc8f6e69d49(
244824
244930
  value: typing.Optional[builtins.str],
244825
244931
  ) -> None:
@@ -245119,6 +245225,7 @@ def _typecheckingstub__594e8a4ec85e161016ae0aa60a6538d619759944135cfd2b531b0f063
245119
245225
  description: typing.Optional[builtins.str] = None,
245120
245226
  folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
245121
245227
  name: typing.Optional[builtins.str] = None,
245228
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
245122
245229
  topic_id: typing.Optional[builtins.str] = None,
245123
245230
  user_experience_version: typing.Optional[builtins.str] = None,
245124
245231
  ) -> None: