aws-cdk-lib 2.173.3__py3-none-any.whl → 2.174.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 (88) hide show
  1. aws_cdk/__init__.py +210 -181
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.173.3.jsii.tgz → aws-cdk-lib@2.174.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +127 -168
  5. aws_cdk/aws_appconfig/__init__.py +498 -1
  6. aws_cdk/aws_applicationautoscaling/__init__.py +4 -1
  7. aws_cdk/aws_appsync/__init__.py +4 -0
  8. aws_cdk/aws_autoscaling/__init__.py +96 -0
  9. aws_cdk/aws_batch/__init__.py +1084 -233
  10. aws_cdk/aws_bedrock/__init__.py +2119 -181
  11. aws_cdk/aws_cassandra/__init__.py +476 -4
  12. aws_cdk/aws_cleanrooms/__init__.py +543 -17
  13. aws_cdk/aws_cloudformation/__init__.py +172 -169
  14. aws_cdk/aws_cloudfront/__init__.py +773 -26
  15. aws_cdk/aws_cloudtrail/__init__.py +8 -2
  16. aws_cdk/aws_codebuild/__init__.py +83 -0
  17. aws_cdk/aws_codepipeline/__init__.py +2 -1
  18. aws_cdk/aws_cognito/__init__.py +232 -200
  19. aws_cdk/aws_connect/__init__.py +187 -36
  20. aws_cdk/aws_connectcampaignsv2/__init__.py +106 -12
  21. aws_cdk/aws_databrew/__init__.py +69 -1
  22. aws_cdk/aws_datasync/__init__.py +33 -28
  23. aws_cdk/aws_datazone/__init__.py +141 -41
  24. aws_cdk/aws_dlm/__init__.py +20 -10
  25. aws_cdk/aws_dms/__init__.py +722 -30
  26. aws_cdk/aws_dynamodb/__init__.py +76 -4
  27. aws_cdk/aws_ec2/__init__.py +1233 -65
  28. aws_cdk/aws_ecr/__init__.py +31 -0
  29. aws_cdk/aws_ecr_assets/__init__.py +5 -0
  30. aws_cdk/aws_ecs/__init__.py +88 -11
  31. aws_cdk/aws_efs/__init__.py +15 -8
  32. aws_cdk/aws_eks/__init__.py +114 -45
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  34. aws_cdk/aws_emrserverless/__init__.py +143 -0
  35. aws_cdk/aws_events/__init__.py +50 -30
  36. aws_cdk/aws_fis/__init__.py +33 -33
  37. aws_cdk/aws_fsx/__init__.py +20 -10
  38. aws_cdk/aws_glue/__init__.py +34 -11
  39. aws_cdk/aws_greengrass/__init__.py +8 -8
  40. aws_cdk/aws_guardduty/__init__.py +1 -1
  41. aws_cdk/aws_imagebuilder/__init__.py +45 -47
  42. aws_cdk/aws_internetmonitor/__init__.py +3 -3
  43. aws_cdk/aws_invoicing/__init__.py +55 -30
  44. aws_cdk/aws_iot/__init__.py +1117 -4
  45. aws_cdk/aws_iot1click/__init__.py +17 -7
  46. aws_cdk/aws_kendra/__init__.py +4 -6
  47. aws_cdk/aws_lambda/__init__.py +15 -1
  48. aws_cdk/aws_logs/__init__.py +4011 -86
  49. aws_cdk/aws_m2/__init__.py +41 -0
  50. aws_cdk/aws_mediaconnect/__init__.py +202 -7
  51. aws_cdk/aws_memorydb/__init__.py +22 -22
  52. aws_cdk/aws_networkmanager/__init__.py +758 -0
  53. aws_cdk/aws_opensearchservice/__init__.py +222 -0
  54. aws_cdk/aws_organizations/__init__.py +5 -3
  55. aws_cdk/aws_pcs/__init__.py +3038 -0
  56. aws_cdk/aws_pipes/__init__.py +10 -10
  57. aws_cdk/aws_qbusiness/__init__.py +415 -140
  58. aws_cdk/aws_quicksight/__init__.py +15932 -6448
  59. aws_cdk/aws_ram/__init__.py +5 -11
  60. aws_cdk/aws_rbin/__init__.py +28 -16
  61. aws_cdk/aws_rds/__init__.py +184 -24
  62. aws_cdk/aws_redshiftserverless/__init__.py +156 -0
  63. aws_cdk/aws_resiliencehub/__init__.py +2 -1
  64. aws_cdk/aws_route53_targets/__init__.py +5 -5
  65. aws_cdk/aws_s3/__init__.py +25 -15
  66. aws_cdk/aws_s3express/__init__.py +7 -7
  67. aws_cdk/aws_s3tables/__init__.py +683 -0
  68. aws_cdk/aws_sagemaker/__init__.py +574 -189
  69. aws_cdk/aws_secretsmanager/__init__.py +2 -0
  70. aws_cdk/aws_securityhub/__init__.py +41 -165
  71. aws_cdk/aws_servicediscovery/__init__.py +10 -3
  72. aws_cdk/aws_ses/__init__.py +190 -5
  73. aws_cdk/aws_sns/__init__.py +7 -3
  74. aws_cdk/aws_synthetics/__init__.py +29 -4
  75. aws_cdk/aws_transfer/__init__.py +8 -0
  76. aws_cdk/aws_vpclattice/__init__.py +147 -77
  77. aws_cdk/aws_wafv2/__init__.py +20 -8
  78. aws_cdk/aws_wisdom/__init__.py +162 -111
  79. aws_cdk/aws_workspaces/__init__.py +10 -4
  80. aws_cdk/cloud_assembly_schema/__init__.py +22 -0
  81. aws_cdk/custom_resources/__init__.py +31 -0
  82. aws_cdk/cx_api/__init__.py +19 -0
  83. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/LICENSE +1 -1
  84. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/METADATA +2 -2
  85. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/NOTICE +1 -1
  86. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/RECORD +88 -86
  87. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/WHEEL +0 -0
  88. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/top_level.txt +0 -0
@@ -1677,9 +1677,30 @@ class CfnConfiguredTable(
1677
1677
  analysis_method="analysisMethod",
1678
1678
  name="name",
1679
1679
  table_reference=cleanrooms.CfnConfiguredTable.TableReferenceProperty(
1680
+ athena=cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty(
1681
+ database_name="databaseName",
1682
+ table_name="tableName",
1683
+ work_group="workGroup",
1684
+
1685
+ # the properties below are optional
1686
+ output_location="outputLocation"
1687
+ ),
1680
1688
  glue=cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty(
1681
1689
  database_name="databaseName",
1682
1690
  table_name="tableName"
1691
+ ),
1692
+ snowflake=cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty(
1693
+ account_identifier="accountIdentifier",
1694
+ database_name="databaseName",
1695
+ schema_name="schemaName",
1696
+ secret_arn="secretArn",
1697
+ table_name="tableName",
1698
+ table_schema=cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty(
1699
+ v1=[cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
1700
+ column_name="columnName",
1701
+ column_type="columnType"
1702
+ )]
1703
+ )
1683
1704
  )
1684
1705
  ),
1685
1706
 
@@ -2661,6 +2682,114 @@ class CfnConfiguredTable(
2661
2682
  k + "=" + repr(v) for k, v in self._values.items()
2662
2683
  )
2663
2684
 
2685
+ @jsii.data_type(
2686
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty",
2687
+ jsii_struct_bases=[],
2688
+ name_mapping={
2689
+ "database_name": "databaseName",
2690
+ "table_name": "tableName",
2691
+ "work_group": "workGroup",
2692
+ "output_location": "outputLocation",
2693
+ },
2694
+ )
2695
+ class AthenaTableReferenceProperty:
2696
+ def __init__(
2697
+ self,
2698
+ *,
2699
+ database_name: builtins.str,
2700
+ table_name: builtins.str,
2701
+ work_group: builtins.str,
2702
+ output_location: typing.Optional[builtins.str] = None,
2703
+ ) -> None:
2704
+ '''A reference to a table within Athena.
2705
+
2706
+ :param database_name: The database name.
2707
+ :param table_name: The table reference.
2708
+ :param work_group: The workgroup of the Athena table reference.
2709
+ :param output_location: The output location for the Athena table.
2710
+
2711
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html
2712
+ :exampleMetadata: fixture=_generated
2713
+
2714
+ Example::
2715
+
2716
+ # The code below shows an example of how to instantiate this type.
2717
+ # The values are placeholders you should change.
2718
+ from aws_cdk import aws_cleanrooms as cleanrooms
2719
+
2720
+ athena_table_reference_property = cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty(
2721
+ database_name="databaseName",
2722
+ table_name="tableName",
2723
+ work_group="workGroup",
2724
+
2725
+ # the properties below are optional
2726
+ output_location="outputLocation"
2727
+ )
2728
+ '''
2729
+ if __debug__:
2730
+ type_hints = typing.get_type_hints(_typecheckingstub__58a53beb1a0a90ec538b0213243c8721465a73c73f8bf745778a09f20fde15e2)
2731
+ check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
2732
+ check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
2733
+ check_type(argname="argument work_group", value=work_group, expected_type=type_hints["work_group"])
2734
+ check_type(argname="argument output_location", value=output_location, expected_type=type_hints["output_location"])
2735
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2736
+ "database_name": database_name,
2737
+ "table_name": table_name,
2738
+ "work_group": work_group,
2739
+ }
2740
+ if output_location is not None:
2741
+ self._values["output_location"] = output_location
2742
+
2743
+ @builtins.property
2744
+ def database_name(self) -> builtins.str:
2745
+ '''The database name.
2746
+
2747
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-databasename
2748
+ '''
2749
+ result = self._values.get("database_name")
2750
+ assert result is not None, "Required property 'database_name' is missing"
2751
+ return typing.cast(builtins.str, result)
2752
+
2753
+ @builtins.property
2754
+ def table_name(self) -> builtins.str:
2755
+ '''The table reference.
2756
+
2757
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-tablename
2758
+ '''
2759
+ result = self._values.get("table_name")
2760
+ assert result is not None, "Required property 'table_name' is missing"
2761
+ return typing.cast(builtins.str, result)
2762
+
2763
+ @builtins.property
2764
+ def work_group(self) -> builtins.str:
2765
+ '''The workgroup of the Athena table reference.
2766
+
2767
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-workgroup
2768
+ '''
2769
+ result = self._values.get("work_group")
2770
+ assert result is not None, "Required property 'work_group' is missing"
2771
+ return typing.cast(builtins.str, result)
2772
+
2773
+ @builtins.property
2774
+ def output_location(self) -> typing.Optional[builtins.str]:
2775
+ '''The output location for the Athena table.
2776
+
2777
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-outputlocation
2778
+ '''
2779
+ result = self._values.get("output_location")
2780
+ return typing.cast(typing.Optional[builtins.str], result)
2781
+
2782
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2783
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2784
+
2785
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2786
+ return not (rhs == self)
2787
+
2788
+ def __repr__(self) -> str:
2789
+ return "AthenaTableReferenceProperty(%s)" % ", ".join(
2790
+ k + "=" + repr(v) for k, v in self._values.items()
2791
+ )
2792
+
2664
2793
  @jsii.data_type(
2665
2794
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.ConfiguredTableAnalysisRulePolicyProperty",
2666
2795
  jsii_struct_bases=[],
@@ -3081,20 +3210,303 @@ class CfnConfiguredTable(
3081
3210
  k + "=" + repr(v) for k, v in self._values.items()
3082
3211
  )
3083
3212
 
3213
+ @jsii.data_type(
3214
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty",
3215
+ jsii_struct_bases=[],
3216
+ name_mapping={
3217
+ "account_identifier": "accountIdentifier",
3218
+ "database_name": "databaseName",
3219
+ "schema_name": "schemaName",
3220
+ "secret_arn": "secretArn",
3221
+ "table_name": "tableName",
3222
+ "table_schema": "tableSchema",
3223
+ },
3224
+ )
3225
+ class SnowflakeTableReferenceProperty:
3226
+ def __init__(
3227
+ self,
3228
+ *,
3229
+ account_identifier: builtins.str,
3230
+ database_name: builtins.str,
3231
+ schema_name: builtins.str,
3232
+ secret_arn: builtins.str,
3233
+ table_name: builtins.str,
3234
+ table_schema: typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.SnowflakeTableSchemaProperty", typing.Dict[builtins.str, typing.Any]]],
3235
+ ) -> None:
3236
+ '''A reference to a table within Snowflake.
3237
+
3238
+ :param account_identifier: The account identifier for the Snowflake table reference.
3239
+ :param database_name: The name of the database the Snowflake table belongs to.
3240
+ :param schema_name: The schema name of the Snowflake table reference.
3241
+ :param secret_arn: The secret ARN of the Snowflake table reference.
3242
+ :param table_name: The name of the Snowflake table.
3243
+ :param table_schema: The schema of the Snowflake table.
3244
+
3245
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html
3246
+ :exampleMetadata: fixture=_generated
3247
+
3248
+ Example::
3249
+
3250
+ # The code below shows an example of how to instantiate this type.
3251
+ # The values are placeholders you should change.
3252
+ from aws_cdk import aws_cleanrooms as cleanrooms
3253
+
3254
+ snowflake_table_reference_property = cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty(
3255
+ account_identifier="accountIdentifier",
3256
+ database_name="databaseName",
3257
+ schema_name="schemaName",
3258
+ secret_arn="secretArn",
3259
+ table_name="tableName",
3260
+ table_schema=cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty(
3261
+ v1=[cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
3262
+ column_name="columnName",
3263
+ column_type="columnType"
3264
+ )]
3265
+ )
3266
+ )
3267
+ '''
3268
+ if __debug__:
3269
+ type_hints = typing.get_type_hints(_typecheckingstub__f0bac88ed34f9327592c380e538ab50720af8f52dd5162e61df0aec6adf2833a)
3270
+ check_type(argname="argument account_identifier", value=account_identifier, expected_type=type_hints["account_identifier"])
3271
+ check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
3272
+ check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
3273
+ check_type(argname="argument secret_arn", value=secret_arn, expected_type=type_hints["secret_arn"])
3274
+ check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
3275
+ check_type(argname="argument table_schema", value=table_schema, expected_type=type_hints["table_schema"])
3276
+ self._values: typing.Dict[builtins.str, typing.Any] = {
3277
+ "account_identifier": account_identifier,
3278
+ "database_name": database_name,
3279
+ "schema_name": schema_name,
3280
+ "secret_arn": secret_arn,
3281
+ "table_name": table_name,
3282
+ "table_schema": table_schema,
3283
+ }
3284
+
3285
+ @builtins.property
3286
+ def account_identifier(self) -> builtins.str:
3287
+ '''The account identifier for the Snowflake table reference.
3288
+
3289
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-accountidentifier
3290
+ '''
3291
+ result = self._values.get("account_identifier")
3292
+ assert result is not None, "Required property 'account_identifier' is missing"
3293
+ return typing.cast(builtins.str, result)
3294
+
3295
+ @builtins.property
3296
+ def database_name(self) -> builtins.str:
3297
+ '''The name of the database the Snowflake table belongs to.
3298
+
3299
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-databasename
3300
+ '''
3301
+ result = self._values.get("database_name")
3302
+ assert result is not None, "Required property 'database_name' is missing"
3303
+ return typing.cast(builtins.str, result)
3304
+
3305
+ @builtins.property
3306
+ def schema_name(self) -> builtins.str:
3307
+ '''The schema name of the Snowflake table reference.
3308
+
3309
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-schemaname
3310
+ '''
3311
+ result = self._values.get("schema_name")
3312
+ assert result is not None, "Required property 'schema_name' is missing"
3313
+ return typing.cast(builtins.str, result)
3314
+
3315
+ @builtins.property
3316
+ def secret_arn(self) -> builtins.str:
3317
+ '''The secret ARN of the Snowflake table reference.
3318
+
3319
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-secretarn
3320
+ '''
3321
+ result = self._values.get("secret_arn")
3322
+ assert result is not None, "Required property 'secret_arn' is missing"
3323
+ return typing.cast(builtins.str, result)
3324
+
3325
+ @builtins.property
3326
+ def table_name(self) -> builtins.str:
3327
+ '''The name of the Snowflake table.
3328
+
3329
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tablename
3330
+ '''
3331
+ result = self._values.get("table_name")
3332
+ assert result is not None, "Required property 'table_name' is missing"
3333
+ return typing.cast(builtins.str, result)
3334
+
3335
+ @builtins.property
3336
+ def table_schema(
3337
+ self,
3338
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableSchemaProperty"]:
3339
+ '''The schema of the Snowflake table.
3340
+
3341
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tableschema
3342
+ '''
3343
+ result = self._values.get("table_schema")
3344
+ assert result is not None, "Required property 'table_schema' is missing"
3345
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableSchemaProperty"], result)
3346
+
3347
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3348
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3349
+
3350
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3351
+ return not (rhs == self)
3352
+
3353
+ def __repr__(self) -> str:
3354
+ return "SnowflakeTableReferenceProperty(%s)" % ", ".join(
3355
+ k + "=" + repr(v) for k, v in self._values.items()
3356
+ )
3357
+
3358
+ @jsii.data_type(
3359
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty",
3360
+ jsii_struct_bases=[],
3361
+ name_mapping={"v1": "v1"},
3362
+ )
3363
+ class SnowflakeTableSchemaProperty:
3364
+ def __init__(
3365
+ self,
3366
+ *,
3367
+ v1: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.SnowflakeTableSchemaV1Property", typing.Dict[builtins.str, typing.Any]]]]],
3368
+ ) -> None:
3369
+ '''The schema of a Snowflake table.
3370
+
3371
+ :param v1: The schema of a Snowflake table.
3372
+
3373
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html
3374
+ :exampleMetadata: fixture=_generated
3375
+
3376
+ Example::
3377
+
3378
+ # The code below shows an example of how to instantiate this type.
3379
+ # The values are placeholders you should change.
3380
+ from aws_cdk import aws_cleanrooms as cleanrooms
3381
+
3382
+ snowflake_table_schema_property = cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty(
3383
+ v1=[cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
3384
+ column_name="columnName",
3385
+ column_type="columnType"
3386
+ )]
3387
+ )
3388
+ '''
3389
+ if __debug__:
3390
+ type_hints = typing.get_type_hints(_typecheckingstub__239c59d3fbfbc31d3d63df05389a6d08ab60a5a59b54a1d142b38a1317d9924a)
3391
+ check_type(argname="argument v1", value=v1, expected_type=type_hints["v1"])
3392
+ self._values: typing.Dict[builtins.str, typing.Any] = {
3393
+ "v1": v1,
3394
+ }
3395
+
3396
+ @builtins.property
3397
+ def v1(
3398
+ self,
3399
+ ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableSchemaV1Property"]]]:
3400
+ '''The schema of a Snowflake table.
3401
+
3402
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html#cfn-cleanrooms-configuredtable-snowflaketableschema-v1
3403
+ '''
3404
+ result = self._values.get("v1")
3405
+ assert result is not None, "Required property 'v1' is missing"
3406
+ return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableSchemaV1Property"]]], result)
3407
+
3408
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3409
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3410
+
3411
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3412
+ return not (rhs == self)
3413
+
3414
+ def __repr__(self) -> str:
3415
+ return "SnowflakeTableSchemaProperty(%s)" % ", ".join(
3416
+ k + "=" + repr(v) for k, v in self._values.items()
3417
+ )
3418
+
3419
+ @jsii.data_type(
3420
+ jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property",
3421
+ jsii_struct_bases=[],
3422
+ name_mapping={"column_name": "columnName", "column_type": "columnType"},
3423
+ )
3424
+ class SnowflakeTableSchemaV1Property:
3425
+ def __init__(
3426
+ self,
3427
+ *,
3428
+ column_name: builtins.str,
3429
+ column_type: builtins.str,
3430
+ ) -> None:
3431
+ '''The Snowflake table schema.
3432
+
3433
+ :param column_name: The column name.
3434
+ :param column_type: The column's data type. Supported data types: ``ARRAY`` , ``BIGINT`` , ``BOOLEAN`` , ``CHAR`` , ``DATE`` , ``DECIMAL`` , ``DOUBLE`` , ``DOUBLE PRECISION`` , ``FLOAT`` , ``FLOAT4`` , ``INT`` , ``INTEGER`` , ``MAP`` , ``NUMERIC`` , ``NUMBER`` , ``REAL`` , ``SMALLINT`` , ``STRING`` , ``TIMESTAMP`` , ``TIMESTAMP_LTZ`` , ``TIMESTAMP_NTZ`` , ``DATETIME`` , ``TINYINT`` , ``VARCHAR`` , ``TEXT`` , ``CHARACTER`` .
3435
+
3436
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html
3437
+ :exampleMetadata: fixture=_generated
3438
+
3439
+ Example::
3440
+
3441
+ # The code below shows an example of how to instantiate this type.
3442
+ # The values are placeholders you should change.
3443
+ from aws_cdk import aws_cleanrooms as cleanrooms
3444
+
3445
+ snowflake_table_schema_v1_property = cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
3446
+ column_name="columnName",
3447
+ column_type="columnType"
3448
+ )
3449
+ '''
3450
+ if __debug__:
3451
+ type_hints = typing.get_type_hints(_typecheckingstub__83fba8d181362fec1a7a64673d96ded09367f372899b9e1e5eb170f94c17c13f)
3452
+ check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
3453
+ check_type(argname="argument column_type", value=column_type, expected_type=type_hints["column_type"])
3454
+ self._values: typing.Dict[builtins.str, typing.Any] = {
3455
+ "column_name": column_name,
3456
+ "column_type": column_type,
3457
+ }
3458
+
3459
+ @builtins.property
3460
+ def column_name(self) -> builtins.str:
3461
+ '''The column name.
3462
+
3463
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html#cfn-cleanrooms-configuredtable-snowflaketableschemav1-columnname
3464
+ '''
3465
+ result = self._values.get("column_name")
3466
+ assert result is not None, "Required property 'column_name' is missing"
3467
+ return typing.cast(builtins.str, result)
3468
+
3469
+ @builtins.property
3470
+ def column_type(self) -> builtins.str:
3471
+ '''The column's data type.
3472
+
3473
+ Supported data types: ``ARRAY`` , ``BIGINT`` , ``BOOLEAN`` , ``CHAR`` , ``DATE`` , ``DECIMAL`` , ``DOUBLE`` , ``DOUBLE PRECISION`` , ``FLOAT`` , ``FLOAT4`` , ``INT`` , ``INTEGER`` , ``MAP`` , ``NUMERIC`` , ``NUMBER`` , ``REAL`` , ``SMALLINT`` , ``STRING`` , ``TIMESTAMP`` , ``TIMESTAMP_LTZ`` , ``TIMESTAMP_NTZ`` , ``DATETIME`` , ``TINYINT`` , ``VARCHAR`` , ``TEXT`` , ``CHARACTER`` .
3474
+
3475
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html#cfn-cleanrooms-configuredtable-snowflaketableschemav1-columntype
3476
+ '''
3477
+ result = self._values.get("column_type")
3478
+ assert result is not None, "Required property 'column_type' is missing"
3479
+ return typing.cast(builtins.str, result)
3480
+
3481
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3482
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3483
+
3484
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3485
+ return not (rhs == self)
3486
+
3487
+ def __repr__(self) -> str:
3488
+ return "SnowflakeTableSchemaV1Property(%s)" % ", ".join(
3489
+ k + "=" + repr(v) for k, v in self._values.items()
3490
+ )
3491
+
3084
3492
  @jsii.data_type(
3085
3493
  jsii_type="aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.TableReferenceProperty",
3086
3494
  jsii_struct_bases=[],
3087
- name_mapping={"glue": "glue"},
3495
+ name_mapping={"athena": "athena", "glue": "glue", "snowflake": "snowflake"},
3088
3496
  )
3089
3497
  class TableReferenceProperty:
3090
3498
  def __init__(
3091
3499
  self,
3092
3500
  *,
3093
- glue: typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.GlueTableReferenceProperty", typing.Dict[builtins.str, typing.Any]]],
3501
+ athena: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.AthenaTableReferenceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3502
+ glue: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.GlueTableReferenceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3503
+ snowflake: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.SnowflakeTableReferenceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3094
3504
  ) -> None:
3095
3505
  '''A pointer to the dataset that underlies this table.
3096
3506
 
3507
+ :param athena: If present, a reference to the Athena table referred to by this table reference.
3097
3508
  :param glue: If present, a reference to the AWS Glue table referred to by this table reference.
3509
+ :param snowflake: If present, a reference to the Snowflake table referred to by this table reference.
3098
3510
 
3099
3511
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html
3100
3512
  :exampleMetadata: fixture=_generated
@@ -3106,30 +3518,78 @@ class CfnConfiguredTable(
3106
3518
  from aws_cdk import aws_cleanrooms as cleanrooms
3107
3519
 
3108
3520
  table_reference_property = cleanrooms.CfnConfiguredTable.TableReferenceProperty(
3521
+ athena=cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty(
3522
+ database_name="databaseName",
3523
+ table_name="tableName",
3524
+ work_group="workGroup",
3525
+
3526
+ # the properties below are optional
3527
+ output_location="outputLocation"
3528
+ ),
3109
3529
  glue=cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty(
3110
3530
  database_name="databaseName",
3111
3531
  table_name="tableName"
3532
+ ),
3533
+ snowflake=cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty(
3534
+ account_identifier="accountIdentifier",
3535
+ database_name="databaseName",
3536
+ schema_name="schemaName",
3537
+ secret_arn="secretArn",
3538
+ table_name="tableName",
3539
+ table_schema=cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty(
3540
+ v1=[cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
3541
+ column_name="columnName",
3542
+ column_type="columnType"
3543
+ )]
3544
+ )
3112
3545
  )
3113
3546
  )
3114
3547
  '''
3115
3548
  if __debug__:
3116
3549
  type_hints = typing.get_type_hints(_typecheckingstub__48547ee47249030cb21aff2b6c33202b13d80f1552ddf62b21595c3e0bb02374)
3550
+ check_type(argname="argument athena", value=athena, expected_type=type_hints["athena"])
3117
3551
  check_type(argname="argument glue", value=glue, expected_type=type_hints["glue"])
3118
- self._values: typing.Dict[builtins.str, typing.Any] = {
3119
- "glue": glue,
3120
- }
3552
+ check_type(argname="argument snowflake", value=snowflake, expected_type=type_hints["snowflake"])
3553
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
3554
+ if athena is not None:
3555
+ self._values["athena"] = athena
3556
+ if glue is not None:
3557
+ self._values["glue"] = glue
3558
+ if snowflake is not None:
3559
+ self._values["snowflake"] = snowflake
3560
+
3561
+ @builtins.property
3562
+ def athena(
3563
+ self,
3564
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.AthenaTableReferenceProperty"]]:
3565
+ '''If present, a reference to the Athena table referred to by this table reference.
3566
+
3567
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-athena
3568
+ '''
3569
+ result = self._values.get("athena")
3570
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.AthenaTableReferenceProperty"]], result)
3121
3571
 
3122
3572
  @builtins.property
3123
3573
  def glue(
3124
3574
  self,
3125
- ) -> typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.GlueTableReferenceProperty"]:
3575
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.GlueTableReferenceProperty"]]:
3126
3576
  '''If present, a reference to the AWS Glue table referred to by this table reference.
3127
3577
 
3128
3578
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-glue
3129
3579
  '''
3130
3580
  result = self._values.get("glue")
3131
- assert result is not None, "Required property 'glue' is missing"
3132
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.GlueTableReferenceProperty"], result)
3581
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.GlueTableReferenceProperty"]], result)
3582
+
3583
+ @builtins.property
3584
+ def snowflake(
3585
+ self,
3586
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableReferenceProperty"]]:
3587
+ '''If present, a reference to the Snowflake table referred to by this table reference.
3588
+
3589
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-snowflake
3590
+ '''
3591
+ result = self._values.get("snowflake")
3592
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.SnowflakeTableReferenceProperty"]], result)
3133
3593
 
3134
3594
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3135
3595
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -4134,9 +4594,30 @@ class CfnConfiguredTableProps:
4134
4594
  analysis_method="analysisMethod",
4135
4595
  name="name",
4136
4596
  table_reference=cleanrooms.CfnConfiguredTable.TableReferenceProperty(
4597
+ athena=cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty(
4598
+ database_name="databaseName",
4599
+ table_name="tableName",
4600
+ work_group="workGroup",
4601
+
4602
+ # the properties below are optional
4603
+ output_location="outputLocation"
4604
+ ),
4137
4605
  glue=cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty(
4138
4606
  database_name="databaseName",
4139
4607
  table_name="tableName"
4608
+ ),
4609
+ snowflake=cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty(
4610
+ account_identifier="accountIdentifier",
4611
+ database_name="databaseName",
4612
+ schema_name="schemaName",
4613
+ secret_arn="secretArn",
4614
+ table_name="tableName",
4615
+ table_schema=cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty(
4616
+ v1=[cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaV1Property(
4617
+ column_name="columnName",
4618
+ column_type="columnType"
4619
+ )]
4620
+ )
4140
4621
  )
4141
4622
  ),
4142
4623
 
@@ -4428,7 +4909,8 @@ class CfnIdMappingTable(
4428
4909
  @builtins.property
4429
4910
  @jsii.member(jsii_name="attrCollaborationIdentifier")
4430
4911
  def attr_collaboration_identifier(self) -> builtins.str:
4431
- '''
4912
+ '''The unique identifier of the collaboration that contains this ID mapping table.
4913
+
4432
4914
  :cloudformationAttribute: CollaborationIdentifier
4433
4915
  '''
4434
4916
  return typing.cast(builtins.str, jsii.get(self, "attrCollaborationIdentifier"))
@@ -4436,7 +4918,8 @@ class CfnIdMappingTable(
4436
4918
  @builtins.property
4437
4919
  @jsii.member(jsii_name="attrIdMappingTableIdentifier")
4438
4920
  def attr_id_mapping_table_identifier(self) -> builtins.str:
4439
- '''
4921
+ '''The unique identifier of the ID mapping table identifier that you want to retrieve.
4922
+
4440
4923
  :cloudformationAttribute: IdMappingTableIdentifier
4441
4924
  '''
4442
4925
  return typing.cast(builtins.str, jsii.get(self, "attrIdMappingTableIdentifier"))
@@ -5045,7 +5528,8 @@ class CfnIdNamespaceAssociation(
5045
5528
  @builtins.property
5046
5529
  @jsii.member(jsii_name="attrCollaborationIdentifier")
5047
5530
  def attr_collaboration_identifier(self) -> builtins.str:
5048
- '''
5531
+ '''The unique identifier of the collaboration that contains this ID namespace association.
5532
+
5049
5533
  :cloudformationAttribute: CollaborationIdentifier
5050
5534
  '''
5051
5535
  return typing.cast(builtins.str, jsii.get(self, "attrCollaborationIdentifier"))
@@ -5053,7 +5537,8 @@ class CfnIdNamespaceAssociation(
5053
5537
  @builtins.property
5054
5538
  @jsii.member(jsii_name="attrIdNamespaceAssociationIdentifier")
5055
5539
  def attr_id_namespace_association_identifier(self) -> builtins.str:
5056
- '''
5540
+ '''The unique identifier of the ID namespace association that you want to retrieve.
5541
+
5057
5542
  :cloudformationAttribute: IdNamespaceAssociationIdentifier
5058
5543
  '''
5059
5544
  return typing.cast(builtins.str, jsii.get(self, "attrIdNamespaceAssociationIdentifier"))
@@ -6384,7 +6869,7 @@ class CfnPrivacyBudgetTemplate(
6384
6869
  :param membership_identifier: The identifier for a membership resource.
6385
6870
  :param parameters: Specifies the epsilon and noise parameters for the privacy budget template.
6386
6871
  :param privacy_budget_type: Specifies the type of the privacy budget template.
6387
- :param tags: An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
6872
+ :param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
6388
6873
  '''
6389
6874
  if __debug__:
6390
6875
  type_hints = typing.get_type_hints(_typecheckingstub__f4ef80e47afb9dceb9f249b561d13bd079011c08e3eadfd7c85afef7b15b6395)
@@ -6548,7 +7033,7 @@ class CfnPrivacyBudgetTemplate(
6548
7033
  @builtins.property
6549
7034
  @jsii.member(jsii_name="tags")
6550
7035
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
6551
- '''An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.'''
7036
+ '''An optional label that you can assign to a resource when you create it.'''
6552
7037
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
6553
7038
 
6554
7039
  @tags.setter
@@ -6662,7 +7147,7 @@ class CfnPrivacyBudgetTemplateProps:
6662
7147
  :param membership_identifier: The identifier for a membership resource.
6663
7148
  :param parameters: Specifies the epsilon and noise parameters for the privacy budget template.
6664
7149
  :param privacy_budget_type: Specifies the type of the privacy budget template.
6665
- :param tags: An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
7150
+ :param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
6666
7151
 
6667
7152
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html
6668
7153
  :exampleMetadata: fixture=_generated
@@ -6753,7 +7238,9 @@ class CfnPrivacyBudgetTemplateProps:
6753
7238
 
6754
7239
  @builtins.property
6755
7240
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
6756
- '''An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
7241
+ '''An optional label that you can assign to a resource when you create it.
7242
+
7243
+ Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
6757
7244
 
6758
7245
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-tags
6759
7246
  '''
@@ -7167,6 +7654,16 @@ def _typecheckingstub__124c3b77588197cdbfdd27c90ac026b586926dd1d223cf478cf9815b9
7167
7654
  """Type checking stubs"""
7168
7655
  pass
7169
7656
 
7657
+ def _typecheckingstub__58a53beb1a0a90ec538b0213243c8721465a73c73f8bf745778a09f20fde15e2(
7658
+ *,
7659
+ database_name: builtins.str,
7660
+ table_name: builtins.str,
7661
+ work_group: builtins.str,
7662
+ output_location: typing.Optional[builtins.str] = None,
7663
+ ) -> None:
7664
+ """Type checking stubs"""
7665
+ pass
7666
+
7170
7667
  def _typecheckingstub__6f1e3e5a795ca7258552d46676801756cc639b2cf39b0a42555fb510dee59fc1(
7171
7668
  *,
7172
7669
  v1: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.ConfiguredTableAnalysisRulePolicyV1Property, typing.Dict[builtins.str, typing.Any]]],
@@ -7205,9 +7702,38 @@ def _typecheckingstub__ad49810a315ae1c04064504cefbb3e0bc6fec52a1add50545955db56f
7205
7702
  """Type checking stubs"""
7206
7703
  pass
7207
7704
 
7705
+ def _typecheckingstub__f0bac88ed34f9327592c380e538ab50720af8f52dd5162e61df0aec6adf2833a(
7706
+ *,
7707
+ account_identifier: builtins.str,
7708
+ database_name: builtins.str,
7709
+ schema_name: builtins.str,
7710
+ secret_arn: builtins.str,
7711
+ table_name: builtins.str,
7712
+ table_schema: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.SnowflakeTableSchemaProperty, typing.Dict[builtins.str, typing.Any]]],
7713
+ ) -> None:
7714
+ """Type checking stubs"""
7715
+ pass
7716
+
7717
+ def _typecheckingstub__239c59d3fbfbc31d3d63df05389a6d08ab60a5a59b54a1d142b38a1317d9924a(
7718
+ *,
7719
+ v1: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.SnowflakeTableSchemaV1Property, typing.Dict[builtins.str, typing.Any]]]]],
7720
+ ) -> None:
7721
+ """Type checking stubs"""
7722
+ pass
7723
+
7724
+ def _typecheckingstub__83fba8d181362fec1a7a64673d96ded09367f372899b9e1e5eb170f94c17c13f(
7725
+ *,
7726
+ column_name: builtins.str,
7727
+ column_type: builtins.str,
7728
+ ) -> None:
7729
+ """Type checking stubs"""
7730
+ pass
7731
+
7208
7732
  def _typecheckingstub__48547ee47249030cb21aff2b6c33202b13d80f1552ddf62b21595c3e0bb02374(
7209
7733
  *,
7210
- glue: typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.GlueTableReferenceProperty, typing.Dict[builtins.str, typing.Any]]],
7734
+ athena: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.AthenaTableReferenceProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7735
+ glue: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.GlueTableReferenceProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7736
+ snowflake: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfiguredTable.SnowflakeTableReferenceProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7211
7737
  ) -> None:
7212
7738
  """Type checking stubs"""
7213
7739
  pass