aws-cdk-lib 2.165.0__py3-none-any.whl → 2.167.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (60) hide show
  1. aws_cdk/__init__.py +1 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.165.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +9 -0
  5. aws_cdk/aws_appsync/__init__.py +2271 -359
  6. aws_cdk/aws_backup/__init__.py +57 -31
  7. aws_cdk/aws_bedrock/__init__.py +994 -197
  8. aws_cdk/aws_cleanrooms/__init__.py +66 -5
  9. aws_cdk/aws_cloudfront/__init__.py +21 -3
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
  11. aws_cdk/aws_codebuild/__init__.py +59 -29
  12. aws_cdk/aws_codepipeline/__init__.py +98 -5
  13. aws_cdk/aws_codestar/__init__.py +1 -1
  14. aws_cdk/aws_cognito/__init__.py +0 -8
  15. aws_cdk/aws_connect/__init__.py +1 -1
  16. aws_cdk/aws_datasync/__init__.py +60 -7
  17. aws_cdk/aws_devopsguru/__init__.py +2 -2
  18. aws_cdk/aws_dms/__init__.py +762 -0
  19. aws_cdk/aws_dynamodb/__init__.py +13 -8
  20. aws_cdk/aws_ec2/__init__.py +316 -11
  21. aws_cdk/aws_ecs/__init__.py +20 -7
  22. aws_cdk/aws_elasticache/__init__.py +16 -9
  23. aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
  24. aws_cdk/aws_emrserverless/__init__.py +35 -33
  25. aws_cdk/aws_events/__init__.py +25 -30
  26. aws_cdk/aws_gamelift/__init__.py +52 -40
  27. aws_cdk/aws_inspectorv2/__init__.py +6 -12
  28. aws_cdk/aws_kinesis/__init__.py +297 -1
  29. aws_cdk/aws_kms/__init__.py +2 -0
  30. aws_cdk/aws_lambda/__init__.py +339 -22
  31. aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
  32. aws_cdk/aws_logs/__init__.py +214 -0
  33. aws_cdk/aws_m2/__init__.py +58 -58
  34. aws_cdk/aws_mediapackagev2/__init__.py +191 -0
  35. aws_cdk/aws_networkfirewall/__init__.py +14 -5
  36. aws_cdk/aws_nimblestudio/__init__.py +6 -103
  37. aws_cdk/aws_opensearchservice/__init__.py +969 -0
  38. aws_cdk/aws_pipes/__init__.py +1 -1
  39. aws_cdk/aws_qbusiness/__init__.py +2 -0
  40. aws_cdk/aws_quicksight/__init__.py +481 -10
  41. aws_cdk/aws_rds/__init__.py +667 -16
  42. aws_cdk/aws_route53/__init__.py +38 -12
  43. aws_cdk/aws_s3_assets/__init__.py +37 -0
  44. aws_cdk/aws_s3_deployment/__init__.py +18 -7
  45. aws_cdk/aws_sagemaker/__init__.py +61 -25
  46. aws_cdk/aws_secretsmanager/__init__.py +2 -1
  47. aws_cdk/aws_servicecatalog/__init__.py +52 -4
  48. aws_cdk/aws_ses/__init__.py +22 -1
  49. aws_cdk/aws_sqs/__init__.py +12 -9
  50. aws_cdk/aws_stepfunctions/__init__.py +8 -0
  51. aws_cdk/aws_synthetics/__init__.py +133 -1
  52. aws_cdk/aws_timestream/__init__.py +41 -0
  53. aws_cdk/aws_wisdom/__init__.py +2348 -54
  54. aws_cdk/triggers/__init__.py +3 -3
  55. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
  56. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +60 -60
  57. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
  58. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
  59. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
  60. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
@@ -143044,7 +143044,21 @@ class CfnDataSource(
143044
143044
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
143045
143045
  database="database",
143046
143046
  host="host",
143047
- warehouse="warehouse"
143047
+ warehouse="warehouse",
143048
+
143049
+ # the properties below are optional
143050
+ authentication_type="authenticationType",
143051
+ database_access_control_role="databaseAccessControlRole",
143052
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143053
+ token_provider_url="tokenProviderUrl",
143054
+
143055
+ # the properties below are optional
143056
+ identity_provider_resource_uri="identityProviderResourceUri",
143057
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143058
+ vpc_connection_arn="vpcConnectionArn"
143059
+ ),
143060
+ o_auth_scope="oAuthScope"
143061
+ )
143048
143062
  ),
143049
143063
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
143050
143064
  host="host",
@@ -143061,6 +143075,18 @@ class CfnDataSource(
143061
143075
  port=123,
143062
143076
 
143063
143077
  # the properties below are optional
143078
+ authentication_type="authenticationType",
143079
+ database_access_control_role="databaseAccessControlRole",
143080
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143081
+ token_provider_url="tokenProviderUrl",
143082
+
143083
+ # the properties below are optional
143084
+ identity_provider_resource_uri="identityProviderResourceUri",
143085
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143086
+ vpc_connection_arn="vpcConnectionArn"
143087
+ ),
143088
+ o_auth_scope="oAuthScope"
143089
+ ),
143064
143090
  product_type="productType"
143065
143091
  ),
143066
143092
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -143168,7 +143194,21 @@ class CfnDataSource(
143168
143194
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
143169
143195
  database="database",
143170
143196
  host="host",
143171
- warehouse="warehouse"
143197
+ warehouse="warehouse",
143198
+
143199
+ # the properties below are optional
143200
+ authentication_type="authenticationType",
143201
+ database_access_control_role="databaseAccessControlRole",
143202
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143203
+ token_provider_url="tokenProviderUrl",
143204
+
143205
+ # the properties below are optional
143206
+ identity_provider_resource_uri="identityProviderResourceUri",
143207
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143208
+ vpc_connection_arn="vpcConnectionArn"
143209
+ ),
143210
+ o_auth_scope="oAuthScope"
143211
+ )
143172
143212
  ),
143173
143213
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
143174
143214
  host="host",
@@ -143185,6 +143225,18 @@ class CfnDataSource(
143185
143225
  port=123,
143186
143226
 
143187
143227
  # the properties below are optional
143228
+ authentication_type="authenticationType",
143229
+ database_access_control_role="databaseAccessControlRole",
143230
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143231
+ token_provider_url="tokenProviderUrl",
143232
+
143233
+ # the properties below are optional
143234
+ identity_provider_resource_uri="identityProviderResourceUri",
143235
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143236
+ vpc_connection_arn="vpcConnectionArn"
143237
+ ),
143238
+ o_auth_scope="oAuthScope"
143239
+ ),
143188
143240
  product_type="productType"
143189
143241
  ),
143190
143242
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -143288,7 +143340,21 @@ class CfnDataSource(
143288
143340
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
143289
143341
  database="database",
143290
143342
  host="host",
143291
- warehouse="warehouse"
143343
+ warehouse="warehouse",
143344
+
143345
+ # the properties below are optional
143346
+ authentication_type="authenticationType",
143347
+ database_access_control_role="databaseAccessControlRole",
143348
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143349
+ token_provider_url="tokenProviderUrl",
143350
+
143351
+ # the properties below are optional
143352
+ identity_provider_resource_uri="identityProviderResourceUri",
143353
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143354
+ vpc_connection_arn="vpcConnectionArn"
143355
+ ),
143356
+ o_auth_scope="oAuthScope"
143357
+ )
143292
143358
  ),
143293
143359
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
143294
143360
  host="host",
@@ -143305,6 +143371,18 @@ class CfnDataSource(
143305
143371
  port=123,
143306
143372
 
143307
143373
  # the properties below are optional
143374
+ authentication_type="authenticationType",
143375
+ database_access_control_role="databaseAccessControlRole",
143376
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
143377
+ token_provider_url="tokenProviderUrl",
143378
+
143379
+ # the properties below are optional
143380
+ identity_provider_resource_uri="identityProviderResourceUri",
143381
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
143382
+ vpc_connection_arn="vpcConnectionArn"
143383
+ ),
143384
+ o_auth_scope="oAuthScope"
143385
+ ),
143308
143386
  product_type="productType"
143309
143387
  ),
143310
143388
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -144159,7 +144237,21 @@ class CfnDataSource(
144159
144237
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
144160
144238
  database="database",
144161
144239
  host="host",
144162
- warehouse="warehouse"
144240
+ warehouse="warehouse",
144241
+
144242
+ # the properties below are optional
144243
+ authentication_type="authenticationType",
144244
+ database_access_control_role="databaseAccessControlRole",
144245
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144246
+ token_provider_url="tokenProviderUrl",
144247
+
144248
+ # the properties below are optional
144249
+ identity_provider_resource_uri="identityProviderResourceUri",
144250
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144251
+ vpc_connection_arn="vpcConnectionArn"
144252
+ ),
144253
+ o_auth_scope="oAuthScope"
144254
+ )
144163
144255
  ),
144164
144256
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
144165
144257
  host="host",
@@ -144176,6 +144268,18 @@ class CfnDataSource(
144176
144268
  port=123,
144177
144269
 
144178
144270
  # the properties below are optional
144271
+ authentication_type="authenticationType",
144272
+ database_access_control_role="databaseAccessControlRole",
144273
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144274
+ token_provider_url="tokenProviderUrl",
144275
+
144276
+ # the properties below are optional
144277
+ identity_provider_resource_uri="identityProviderResourceUri",
144278
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144279
+ vpc_connection_arn="vpcConnectionArn"
144280
+ ),
144281
+ o_auth_scope="oAuthScope"
144282
+ ),
144179
144283
  product_type="productType"
144180
144284
  ),
144181
144285
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -144374,7 +144478,21 @@ class CfnDataSource(
144374
144478
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
144375
144479
  database="database",
144376
144480
  host="host",
144377
- warehouse="warehouse"
144481
+ warehouse="warehouse",
144482
+
144483
+ # the properties below are optional
144484
+ authentication_type="authenticationType",
144485
+ database_access_control_role="databaseAccessControlRole",
144486
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144487
+ token_provider_url="tokenProviderUrl",
144488
+
144489
+ # the properties below are optional
144490
+ identity_provider_resource_uri="identityProviderResourceUri",
144491
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144492
+ vpc_connection_arn="vpcConnectionArn"
144493
+ ),
144494
+ o_auth_scope="oAuthScope"
144495
+ )
144378
144496
  ),
144379
144497
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
144380
144498
  host="host",
@@ -144391,6 +144509,18 @@ class CfnDataSource(
144391
144509
  port=123,
144392
144510
 
144393
144511
  # the properties below are optional
144512
+ authentication_type="authenticationType",
144513
+ database_access_control_role="databaseAccessControlRole",
144514
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144515
+ token_provider_url="tokenProviderUrl",
144516
+
144517
+ # the properties below are optional
144518
+ identity_provider_resource_uri="identityProviderResourceUri",
144519
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144520
+ vpc_connection_arn="vpcConnectionArn"
144521
+ ),
144522
+ o_auth_scope="oAuthScope"
144523
+ ),
144394
144524
  product_type="productType"
144395
144525
  ),
144396
144526
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -144706,7 +144836,21 @@ class CfnDataSource(
144706
144836
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
144707
144837
  database="database",
144708
144838
  host="host",
144709
- warehouse="warehouse"
144839
+ warehouse="warehouse",
144840
+
144841
+ # the properties below are optional
144842
+ authentication_type="authenticationType",
144843
+ database_access_control_role="databaseAccessControlRole",
144844
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144845
+ token_provider_url="tokenProviderUrl",
144846
+
144847
+ # the properties below are optional
144848
+ identity_provider_resource_uri="identityProviderResourceUri",
144849
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144850
+ vpc_connection_arn="vpcConnectionArn"
144851
+ ),
144852
+ o_auth_scope="oAuthScope"
144853
+ )
144710
144854
  ),
144711
144855
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
144712
144856
  host="host",
@@ -144723,6 +144867,18 @@ class CfnDataSource(
144723
144867
  port=123,
144724
144868
 
144725
144869
  # the properties below are optional
144870
+ authentication_type="authenticationType",
144871
+ database_access_control_role="databaseAccessControlRole",
144872
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
144873
+ token_provider_url="tokenProviderUrl",
144874
+
144875
+ # the properties below are optional
144876
+ identity_provider_resource_uri="identityProviderResourceUri",
144877
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
144878
+ vpc_connection_arn="vpcConnectionArn"
144879
+ ),
144880
+ o_auth_scope="oAuthScope"
144881
+ ),
144726
144882
  product_type="productType"
144727
144883
  ),
144728
144884
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -145423,6 +145579,113 @@ class CfnDataSource(
145423
145579
  k + "=" + repr(v) for k, v in self._values.items()
145424
145580
  )
145425
145581
 
145582
+ @jsii.data_type(
145583
+ jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.OAuthParametersProperty",
145584
+ jsii_struct_bases=[],
145585
+ name_mapping={
145586
+ "token_provider_url": "tokenProviderUrl",
145587
+ "identity_provider_resource_uri": "identityProviderResourceUri",
145588
+ "identity_provider_vpc_connection_properties": "identityProviderVpcConnectionProperties",
145589
+ "o_auth_scope": "oAuthScope",
145590
+ },
145591
+ )
145592
+ class OAuthParametersProperty:
145593
+ def __init__(
145594
+ self,
145595
+ *,
145596
+ token_provider_url: builtins.str,
145597
+ identity_provider_resource_uri: typing.Optional[builtins.str] = None,
145598
+ identity_provider_vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.VpcConnectionPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
145599
+ o_auth_scope: typing.Optional[builtins.str] = None,
145600
+ ) -> None:
145601
+ '''
145602
+ :param token_provider_url:
145603
+ :param identity_provider_resource_uri:
145604
+ :param identity_provider_vpc_connection_properties:
145605
+ :param o_auth_scope:
145606
+
145607
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oauthparameters.html
145608
+ :exampleMetadata: fixture=_generated
145609
+
145610
+ Example::
145611
+
145612
+ # The code below shows an example of how to instantiate this type.
145613
+ # The values are placeholders you should change.
145614
+ from aws_cdk import aws_quicksight as quicksight
145615
+
145616
+ o_auth_parameters_property = quicksight.CfnDataSource.OAuthParametersProperty(
145617
+ token_provider_url="tokenProviderUrl",
145618
+
145619
+ # the properties below are optional
145620
+ identity_provider_resource_uri="identityProviderResourceUri",
145621
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
145622
+ vpc_connection_arn="vpcConnectionArn"
145623
+ ),
145624
+ o_auth_scope="oAuthScope"
145625
+ )
145626
+ '''
145627
+ if __debug__:
145628
+ type_hints = typing.get_type_hints(_typecheckingstub__0d2c4372d1913a04a96ea6674314818124d2c34eeffec2bcd2369b389f37689d)
145629
+ check_type(argname="argument token_provider_url", value=token_provider_url, expected_type=type_hints["token_provider_url"])
145630
+ check_type(argname="argument identity_provider_resource_uri", value=identity_provider_resource_uri, expected_type=type_hints["identity_provider_resource_uri"])
145631
+ check_type(argname="argument identity_provider_vpc_connection_properties", value=identity_provider_vpc_connection_properties, expected_type=type_hints["identity_provider_vpc_connection_properties"])
145632
+ check_type(argname="argument o_auth_scope", value=o_auth_scope, expected_type=type_hints["o_auth_scope"])
145633
+ self._values: typing.Dict[builtins.str, typing.Any] = {
145634
+ "token_provider_url": token_provider_url,
145635
+ }
145636
+ if identity_provider_resource_uri is not None:
145637
+ self._values["identity_provider_resource_uri"] = identity_provider_resource_uri
145638
+ if identity_provider_vpc_connection_properties is not None:
145639
+ self._values["identity_provider_vpc_connection_properties"] = identity_provider_vpc_connection_properties
145640
+ if o_auth_scope is not None:
145641
+ self._values["o_auth_scope"] = o_auth_scope
145642
+
145643
+ @builtins.property
145644
+ def token_provider_url(self) -> builtins.str:
145645
+ '''
145646
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oauthparameters.html#cfn-quicksight-datasource-oauthparameters-tokenproviderurl
145647
+ '''
145648
+ result = self._values.get("token_provider_url")
145649
+ assert result is not None, "Required property 'token_provider_url' is missing"
145650
+ return typing.cast(builtins.str, result)
145651
+
145652
+ @builtins.property
145653
+ def identity_provider_resource_uri(self) -> typing.Optional[builtins.str]:
145654
+ '''
145655
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oauthparameters.html#cfn-quicksight-datasource-oauthparameters-identityproviderresourceuri
145656
+ '''
145657
+ result = self._values.get("identity_provider_resource_uri")
145658
+ return typing.cast(typing.Optional[builtins.str], result)
145659
+
145660
+ @builtins.property
145661
+ def identity_provider_vpc_connection_properties(
145662
+ self,
145663
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.VpcConnectionPropertiesProperty"]]:
145664
+ '''
145665
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oauthparameters.html#cfn-quicksight-datasource-oauthparameters-identityprovidervpcconnectionproperties
145666
+ '''
145667
+ result = self._values.get("identity_provider_vpc_connection_properties")
145668
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.VpcConnectionPropertiesProperty"]], result)
145669
+
145670
+ @builtins.property
145671
+ def o_auth_scope(self) -> typing.Optional[builtins.str]:
145672
+ '''
145673
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oauthparameters.html#cfn-quicksight-datasource-oauthparameters-oauthscope
145674
+ '''
145675
+ result = self._values.get("o_auth_scope")
145676
+ return typing.cast(typing.Optional[builtins.str], result)
145677
+
145678
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
145679
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
145680
+
145681
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
145682
+ return not (rhs == self)
145683
+
145684
+ def __repr__(self) -> str:
145685
+ return "OAuthParametersProperty(%s)" % ", ".join(
145686
+ k + "=" + repr(v) for k, v in self._values.items()
145687
+ )
145688
+
145426
145689
  @jsii.data_type(
145427
145690
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.OracleParametersProperty",
145428
145691
  jsii_struct_bases=[],
@@ -146234,6 +146497,9 @@ class CfnDataSource(
146234
146497
  "database": "database",
146235
146498
  "host": "host",
146236
146499
  "warehouse": "warehouse",
146500
+ "authentication_type": "authenticationType",
146501
+ "database_access_control_role": "databaseAccessControlRole",
146502
+ "o_auth_parameters": "oAuthParameters",
146237
146503
  },
146238
146504
  )
146239
146505
  class SnowflakeParametersProperty:
@@ -146243,12 +146509,18 @@ class CfnDataSource(
146243
146509
  database: builtins.str,
146244
146510
  host: builtins.str,
146245
146511
  warehouse: builtins.str,
146512
+ authentication_type: typing.Optional[builtins.str] = None,
146513
+ database_access_control_role: typing.Optional[builtins.str] = None,
146514
+ o_auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.OAuthParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
146246
146515
  ) -> None:
146247
146516
  '''The parameters for Snowflake.
146248
146517
 
146249
146518
  :param database: Database.
146250
146519
  :param host: Host.
146251
146520
  :param warehouse: Warehouse.
146521
+ :param authentication_type:
146522
+ :param database_access_control_role:
146523
+ :param o_auth_parameters:
146252
146524
 
146253
146525
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-snowflakeparameters.html
146254
146526
  :exampleMetadata: fixture=_generated
@@ -146262,7 +146534,21 @@ class CfnDataSource(
146262
146534
  snowflake_parameters_property = quicksight.CfnDataSource.SnowflakeParametersProperty(
146263
146535
  database="database",
146264
146536
  host="host",
146265
- warehouse="warehouse"
146537
+ warehouse="warehouse",
146538
+
146539
+ # the properties below are optional
146540
+ authentication_type="authenticationType",
146541
+ database_access_control_role="databaseAccessControlRole",
146542
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
146543
+ token_provider_url="tokenProviderUrl",
146544
+
146545
+ # the properties below are optional
146546
+ identity_provider_resource_uri="identityProviderResourceUri",
146547
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
146548
+ vpc_connection_arn="vpcConnectionArn"
146549
+ ),
146550
+ o_auth_scope="oAuthScope"
146551
+ )
146266
146552
  )
146267
146553
  '''
146268
146554
  if __debug__:
@@ -146270,11 +146556,20 @@ class CfnDataSource(
146270
146556
  check_type(argname="argument database", value=database, expected_type=type_hints["database"])
146271
146557
  check_type(argname="argument host", value=host, expected_type=type_hints["host"])
146272
146558
  check_type(argname="argument warehouse", value=warehouse, expected_type=type_hints["warehouse"])
146559
+ check_type(argname="argument authentication_type", value=authentication_type, expected_type=type_hints["authentication_type"])
146560
+ check_type(argname="argument database_access_control_role", value=database_access_control_role, expected_type=type_hints["database_access_control_role"])
146561
+ check_type(argname="argument o_auth_parameters", value=o_auth_parameters, expected_type=type_hints["o_auth_parameters"])
146273
146562
  self._values: typing.Dict[builtins.str, typing.Any] = {
146274
146563
  "database": database,
146275
146564
  "host": host,
146276
146565
  "warehouse": warehouse,
146277
146566
  }
146567
+ if authentication_type is not None:
146568
+ self._values["authentication_type"] = authentication_type
146569
+ if database_access_control_role is not None:
146570
+ self._values["database_access_control_role"] = database_access_control_role
146571
+ if o_auth_parameters is not None:
146572
+ self._values["o_auth_parameters"] = o_auth_parameters
146278
146573
 
146279
146574
  @builtins.property
146280
146575
  def database(self) -> builtins.str:
@@ -146306,6 +146601,32 @@ class CfnDataSource(
146306
146601
  assert result is not None, "Required property 'warehouse' is missing"
146307
146602
  return typing.cast(builtins.str, result)
146308
146603
 
146604
+ @builtins.property
146605
+ def authentication_type(self) -> typing.Optional[builtins.str]:
146606
+ '''
146607
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-snowflakeparameters.html#cfn-quicksight-datasource-snowflakeparameters-authenticationtype
146608
+ '''
146609
+ result = self._values.get("authentication_type")
146610
+ return typing.cast(typing.Optional[builtins.str], result)
146611
+
146612
+ @builtins.property
146613
+ def database_access_control_role(self) -> typing.Optional[builtins.str]:
146614
+ '''
146615
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-snowflakeparameters.html#cfn-quicksight-datasource-snowflakeparameters-databaseaccesscontrolrole
146616
+ '''
146617
+ result = self._values.get("database_access_control_role")
146618
+ return typing.cast(typing.Optional[builtins.str], result)
146619
+
146620
+ @builtins.property
146621
+ def o_auth_parameters(
146622
+ self,
146623
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.OAuthParametersProperty"]]:
146624
+ '''
146625
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-snowflakeparameters.html#cfn-quicksight-datasource-snowflakeparameters-oauthparameters
146626
+ '''
146627
+ result = self._values.get("o_auth_parameters")
146628
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.OAuthParametersProperty"]], result)
146629
+
146309
146630
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
146310
146631
  return isinstance(rhs, self.__class__) and rhs._values == self._values
146311
146632
 
@@ -146539,6 +146860,9 @@ class CfnDataSource(
146539
146860
  "catalog": "catalog",
146540
146861
  "host": "host",
146541
146862
  "port": "port",
146863
+ "authentication_type": "authenticationType",
146864
+ "database_access_control_role": "databaseAccessControlRole",
146865
+ "o_auth_parameters": "oAuthParameters",
146542
146866
  "product_type": "productType",
146543
146867
  },
146544
146868
  )
@@ -146549,6 +146873,9 @@ class CfnDataSource(
146549
146873
  catalog: builtins.str,
146550
146874
  host: builtins.str,
146551
146875
  port: jsii.Number,
146876
+ authentication_type: typing.Optional[builtins.str] = None,
146877
+ database_access_control_role: typing.Optional[builtins.str] = None,
146878
+ o_auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.OAuthParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
146552
146879
  product_type: typing.Optional[builtins.str] = None,
146553
146880
  ) -> None:
146554
146881
  '''The parameters that are required to connect to a Starburst data source.
@@ -146556,6 +146883,9 @@ class CfnDataSource(
146556
146883
  :param catalog: The catalog name for the Starburst data source.
146557
146884
  :param host: The host name of the Starburst data source.
146558
146885
  :param port: The port for the Starburst data source. Default: - 0
146886
+ :param authentication_type:
146887
+ :param database_access_control_role:
146888
+ :param o_auth_parameters:
146559
146889
  :param product_type: The product type for the Starburst data source.
146560
146890
 
146561
146891
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html
@@ -146573,6 +146903,18 @@ class CfnDataSource(
146573
146903
  port=123,
146574
146904
 
146575
146905
  # the properties below are optional
146906
+ authentication_type="authenticationType",
146907
+ database_access_control_role="databaseAccessControlRole",
146908
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
146909
+ token_provider_url="tokenProviderUrl",
146910
+
146911
+ # the properties below are optional
146912
+ identity_provider_resource_uri="identityProviderResourceUri",
146913
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
146914
+ vpc_connection_arn="vpcConnectionArn"
146915
+ ),
146916
+ o_auth_scope="oAuthScope"
146917
+ ),
146576
146918
  product_type="productType"
146577
146919
  )
146578
146920
  '''
@@ -146581,12 +146923,21 @@ class CfnDataSource(
146581
146923
  check_type(argname="argument catalog", value=catalog, expected_type=type_hints["catalog"])
146582
146924
  check_type(argname="argument host", value=host, expected_type=type_hints["host"])
146583
146925
  check_type(argname="argument port", value=port, expected_type=type_hints["port"])
146926
+ check_type(argname="argument authentication_type", value=authentication_type, expected_type=type_hints["authentication_type"])
146927
+ check_type(argname="argument database_access_control_role", value=database_access_control_role, expected_type=type_hints["database_access_control_role"])
146928
+ check_type(argname="argument o_auth_parameters", value=o_auth_parameters, expected_type=type_hints["o_auth_parameters"])
146584
146929
  check_type(argname="argument product_type", value=product_type, expected_type=type_hints["product_type"])
146585
146930
  self._values: typing.Dict[builtins.str, typing.Any] = {
146586
146931
  "catalog": catalog,
146587
146932
  "host": host,
146588
146933
  "port": port,
146589
146934
  }
146935
+ if authentication_type is not None:
146936
+ self._values["authentication_type"] = authentication_type
146937
+ if database_access_control_role is not None:
146938
+ self._values["database_access_control_role"] = database_access_control_role
146939
+ if o_auth_parameters is not None:
146940
+ self._values["o_auth_parameters"] = o_auth_parameters
146590
146941
  if product_type is not None:
146591
146942
  self._values["product_type"] = product_type
146592
146943
 
@@ -146622,6 +146973,32 @@ class CfnDataSource(
146622
146973
  assert result is not None, "Required property 'port' is missing"
146623
146974
  return typing.cast(jsii.Number, result)
146624
146975
 
146976
+ @builtins.property
146977
+ def authentication_type(self) -> typing.Optional[builtins.str]:
146978
+ '''
146979
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html#cfn-quicksight-datasource-starburstparameters-authenticationtype
146980
+ '''
146981
+ result = self._values.get("authentication_type")
146982
+ return typing.cast(typing.Optional[builtins.str], result)
146983
+
146984
+ @builtins.property
146985
+ def database_access_control_role(self) -> typing.Optional[builtins.str]:
146986
+ '''
146987
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html#cfn-quicksight-datasource-starburstparameters-databaseaccesscontrolrole
146988
+ '''
146989
+ result = self._values.get("database_access_control_role")
146990
+ return typing.cast(typing.Optional[builtins.str], result)
146991
+
146992
+ @builtins.property
146993
+ def o_auth_parameters(
146994
+ self,
146995
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.OAuthParametersProperty"]]:
146996
+ '''
146997
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html#cfn-quicksight-datasource-starburstparameters-oauthparameters
146998
+ '''
146999
+ result = self._values.get("o_auth_parameters")
147000
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.OAuthParametersProperty"]], result)
147001
+
146625
147002
  @builtins.property
146626
147003
  def product_type(self) -> typing.Optional[builtins.str]:
146627
147004
  '''The product type for the Starburst data source.
@@ -147024,7 +147401,21 @@ class CfnDataSourceProps:
147024
147401
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
147025
147402
  database="database",
147026
147403
  host="host",
147027
- warehouse="warehouse"
147404
+ warehouse="warehouse",
147405
+
147406
+ # the properties below are optional
147407
+ authentication_type="authenticationType",
147408
+ database_access_control_role="databaseAccessControlRole",
147409
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147410
+ token_provider_url="tokenProviderUrl",
147411
+
147412
+ # the properties below are optional
147413
+ identity_provider_resource_uri="identityProviderResourceUri",
147414
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147415
+ vpc_connection_arn="vpcConnectionArn"
147416
+ ),
147417
+ o_auth_scope="oAuthScope"
147418
+ )
147028
147419
  ),
147029
147420
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
147030
147421
  host="host",
@@ -147041,6 +147432,18 @@ class CfnDataSourceProps:
147041
147432
  port=123,
147042
147433
 
147043
147434
  # the properties below are optional
147435
+ authentication_type="authenticationType",
147436
+ database_access_control_role="databaseAccessControlRole",
147437
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147438
+ token_provider_url="tokenProviderUrl",
147439
+
147440
+ # the properties below are optional
147441
+ identity_provider_resource_uri="identityProviderResourceUri",
147442
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147443
+ vpc_connection_arn="vpcConnectionArn"
147444
+ ),
147445
+ o_auth_scope="oAuthScope"
147446
+ ),
147044
147447
  product_type="productType"
147045
147448
  ),
147046
147449
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -147148,7 +147551,21 @@ class CfnDataSourceProps:
147148
147551
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
147149
147552
  database="database",
147150
147553
  host="host",
147151
- warehouse="warehouse"
147554
+ warehouse="warehouse",
147555
+
147556
+ # the properties below are optional
147557
+ authentication_type="authenticationType",
147558
+ database_access_control_role="databaseAccessControlRole",
147559
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147560
+ token_provider_url="tokenProviderUrl",
147561
+
147562
+ # the properties below are optional
147563
+ identity_provider_resource_uri="identityProviderResourceUri",
147564
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147565
+ vpc_connection_arn="vpcConnectionArn"
147566
+ ),
147567
+ o_auth_scope="oAuthScope"
147568
+ )
147152
147569
  ),
147153
147570
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
147154
147571
  host="host",
@@ -147165,6 +147582,18 @@ class CfnDataSourceProps:
147165
147582
  port=123,
147166
147583
 
147167
147584
  # the properties below are optional
147585
+ authentication_type="authenticationType",
147586
+ database_access_control_role="databaseAccessControlRole",
147587
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147588
+ token_provider_url="tokenProviderUrl",
147589
+
147590
+ # the properties below are optional
147591
+ identity_provider_resource_uri="identityProviderResourceUri",
147592
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147593
+ vpc_connection_arn="vpcConnectionArn"
147594
+ ),
147595
+ o_auth_scope="oAuthScope"
147596
+ ),
147168
147597
  product_type="productType"
147169
147598
  ),
147170
147599
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -147268,7 +147697,21 @@ class CfnDataSourceProps:
147268
147697
  snowflake_parameters=quicksight.CfnDataSource.SnowflakeParametersProperty(
147269
147698
  database="database",
147270
147699
  host="host",
147271
- warehouse="warehouse"
147700
+ warehouse="warehouse",
147701
+
147702
+ # the properties below are optional
147703
+ authentication_type="authenticationType",
147704
+ database_access_control_role="databaseAccessControlRole",
147705
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147706
+ token_provider_url="tokenProviderUrl",
147707
+
147708
+ # the properties below are optional
147709
+ identity_provider_resource_uri="identityProviderResourceUri",
147710
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147711
+ vpc_connection_arn="vpcConnectionArn"
147712
+ ),
147713
+ o_auth_scope="oAuthScope"
147714
+ )
147272
147715
  ),
147273
147716
  spark_parameters=quicksight.CfnDataSource.SparkParametersProperty(
147274
147717
  host="host",
@@ -147285,6 +147728,18 @@ class CfnDataSourceProps:
147285
147728
  port=123,
147286
147729
 
147287
147730
  # the properties below are optional
147731
+ authentication_type="authenticationType",
147732
+ database_access_control_role="databaseAccessControlRole",
147733
+ o_auth_parameters=quicksight.CfnDataSource.OAuthParametersProperty(
147734
+ token_provider_url="tokenProviderUrl",
147735
+
147736
+ # the properties below are optional
147737
+ identity_provider_resource_uri="identityProviderResourceUri",
147738
+ identity_provider_vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
147739
+ vpc_connection_arn="vpcConnectionArn"
147740
+ ),
147741
+ o_auth_scope="oAuthScope"
147742
+ ),
147288
147743
  product_type="productType"
147289
147744
  ),
147290
147745
  teradata_parameters=quicksight.CfnDataSource.TeradataParametersProperty(
@@ -233939,6 +234394,16 @@ def _typecheckingstub__1e2e40985366cbbc121572739d313b83bf11f9b7c050e592ad7e02d8d
233939
234394
  """Type checking stubs"""
233940
234395
  pass
233941
234396
 
234397
+ def _typecheckingstub__0d2c4372d1913a04a96ea6674314818124d2c34eeffec2bcd2369b389f37689d(
234398
+ *,
234399
+ token_provider_url: builtins.str,
234400
+ identity_provider_resource_uri: typing.Optional[builtins.str] = None,
234401
+ identity_provider_vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.VpcConnectionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
234402
+ o_auth_scope: typing.Optional[builtins.str] = None,
234403
+ ) -> None:
234404
+ """Type checking stubs"""
234405
+ pass
234406
+
233942
234407
  def _typecheckingstub__bf876de431aaf56f73ba4abd947cffbe8be9feb3c6a773f4c8d14cbb6e3d1857(
233943
234408
  *,
233944
234409
  database: builtins.str,
@@ -234018,6 +234483,9 @@ def _typecheckingstub__74a75243f71c1f458ba441efa6b1ed83942a35c740ae1f76ccb413de6
234018
234483
  database: builtins.str,
234019
234484
  host: builtins.str,
234020
234485
  warehouse: builtins.str,
234486
+ authentication_type: typing.Optional[builtins.str] = None,
234487
+ database_access_control_role: typing.Optional[builtins.str] = None,
234488
+ o_auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.OAuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
234021
234489
  ) -> None:
234022
234490
  """Type checking stubs"""
234023
234491
  pass
@@ -234051,6 +234519,9 @@ def _typecheckingstub__0f2aa9471e955cd600412f1750933ac79c8c63536aa9a69f8307c8a44
234051
234519
  catalog: builtins.str,
234052
234520
  host: builtins.str,
234053
234521
  port: jsii.Number,
234522
+ authentication_type: typing.Optional[builtins.str] = None,
234523
+ database_access_control_role: typing.Optional[builtins.str] = None,
234524
+ o_auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.OAuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
234054
234525
  product_type: typing.Optional[builtins.str] = None,
234055
234526
  ) -> None:
234056
234527
  """Type checking stubs"""