aws-cdk-lib 2.139.1__py3-none-any.whl → 2.141.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.
- aws_cdk/__init__.py +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.139.1.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +70 -56
- aws_cdk/aws_apigateway/__init__.py +126 -53
- aws_cdk/aws_applicationautoscaling/__init__.py +1 -4
- aws_cdk/aws_arczonalshift/__init__.py +49 -44
- aws_cdk/aws_bedrock/__init__.py +2829 -147
- aws_cdk/aws_cloudfront/__init__.py +51 -9
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codecommit/__init__.py +72 -46
- aws_cdk/aws_connectcampaigns/__init__.py +34 -4
- aws_cdk/aws_datasync/__init__.py +96 -75
- aws_cdk/aws_dms/__init__.py +0 -269
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +239 -84
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +2 -4
- aws_cdk/aws_efs/__init__.py +16 -2
- aws_cdk/aws_eks/__init__.py +57 -0
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +115 -0
- aws_cdk/aws_events_targets/__init__.py +15 -0
- aws_cdk/aws_fis/__init__.py +2 -1
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +1984 -107
- aws_cdk/aws_globalaccelerator/__init__.py +20 -16
- aws_cdk/aws_iam/__init__.py +2 -2
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kinesis/__init__.py +21 -0
- aws_cdk/aws_kinesisvideo/__init__.py +6 -4
- aws_cdk/aws_kms/__init__.py +33 -6
- aws_cdk/aws_lambda/__init__.py +0 -9
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_medialive/__init__.py +444 -3
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +1155 -0
- aws_cdk/aws_personalize/__init__.py +8 -2
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +5583 -0
- aws_cdk/aws_quicksight/__init__.py +10063 -1450
- aws_cdk/aws_rds/__init__.py +77 -5
- aws_cdk/aws_redshiftserverless/__init__.py +13 -9
- aws_cdk/aws_route53/__init__.py +350 -0
- aws_cdk/aws_route53profiles/__init__.py +1048 -0
- aws_cdk/aws_s3/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_transfer/__init__.py +102 -37
- aws_cdk/aws_voiceid/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +92 -6
- aws_cdk/custom_resources/__init__.py +23 -2
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +60 -57
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_dms/__init__.py
CHANGED
|
@@ -311,15 +311,6 @@ class CfnDataProvider(
|
|
|
311
311
|
data_provider_name="dataProviderName",
|
|
312
312
|
description="description",
|
|
313
313
|
exact_settings=False,
|
|
314
|
-
settings=dms.CfnDataProvider.SettingsProperty(
|
|
315
|
-
postgre_sql_settings=dms.CfnDataProvider.PostgreSqlSettingsProperty(
|
|
316
|
-
certificate_arn="certificateArn",
|
|
317
|
-
database_name="databaseName",
|
|
318
|
-
port=123,
|
|
319
|
-
server_name="serverName",
|
|
320
|
-
ssl_mode="sslMode"
|
|
321
|
-
)
|
|
322
|
-
),
|
|
323
314
|
tags=[CfnTag(
|
|
324
315
|
key="key",
|
|
325
316
|
value="value"
|
|
@@ -337,7 +328,6 @@ class CfnDataProvider(
|
|
|
337
328
|
data_provider_name: typing.Optional[builtins.str] = None,
|
|
338
329
|
description: typing.Optional[builtins.str] = None,
|
|
339
330
|
exact_settings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
340
|
-
settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataProvider.SettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
341
331
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
342
332
|
) -> None:
|
|
343
333
|
'''
|
|
@@ -348,7 +338,6 @@ class CfnDataProvider(
|
|
|
348
338
|
:param data_provider_name: The name of the data provider.
|
|
349
339
|
:param description: A description of the data provider. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
|
350
340
|
:param exact_settings: The property describes the exact settings which can be modified. Default: - false
|
|
351
|
-
:param settings: The settings in JSON format for a data provider.
|
|
352
341
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
353
342
|
'''
|
|
354
343
|
if __debug__:
|
|
@@ -361,7 +350,6 @@ class CfnDataProvider(
|
|
|
361
350
|
data_provider_name=data_provider_name,
|
|
362
351
|
description=description,
|
|
363
352
|
exact_settings=exact_settings,
|
|
364
|
-
settings=settings,
|
|
365
353
|
tags=tags,
|
|
366
354
|
)
|
|
367
355
|
|
|
@@ -496,24 +484,6 @@ class CfnDataProvider(
|
|
|
496
484
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
497
485
|
jsii.set(self, "exactSettings", value)
|
|
498
486
|
|
|
499
|
-
@builtins.property
|
|
500
|
-
@jsii.member(jsii_name="settings")
|
|
501
|
-
def settings(
|
|
502
|
-
self,
|
|
503
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProvider.SettingsProperty"]]:
|
|
504
|
-
'''The settings in JSON format for a data provider.'''
|
|
505
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProvider.SettingsProperty"]], jsii.get(self, "settings"))
|
|
506
|
-
|
|
507
|
-
@settings.setter
|
|
508
|
-
def settings(
|
|
509
|
-
self,
|
|
510
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProvider.SettingsProperty"]],
|
|
511
|
-
) -> None:
|
|
512
|
-
if __debug__:
|
|
513
|
-
type_hints = typing.get_type_hints(_typecheckingstub__e759668e5454c7b728515ac0c320d568f1fc6f406c7ed4f0c45e830f497f443e)
|
|
514
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
515
|
-
jsii.set(self, "settings", value)
|
|
516
|
-
|
|
517
487
|
@builtins.property
|
|
518
488
|
@jsii.member(jsii_name="tags")
|
|
519
489
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -527,193 +497,6 @@ class CfnDataProvider(
|
|
|
527
497
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
528
498
|
jsii.set(self, "tags", value)
|
|
529
499
|
|
|
530
|
-
@jsii.data_type(
|
|
531
|
-
jsii_type="aws-cdk-lib.aws_dms.CfnDataProvider.PostgreSqlSettingsProperty",
|
|
532
|
-
jsii_struct_bases=[],
|
|
533
|
-
name_mapping={
|
|
534
|
-
"certificate_arn": "certificateArn",
|
|
535
|
-
"database_name": "databaseName",
|
|
536
|
-
"port": "port",
|
|
537
|
-
"server_name": "serverName",
|
|
538
|
-
"ssl_mode": "sslMode",
|
|
539
|
-
},
|
|
540
|
-
)
|
|
541
|
-
class PostgreSqlSettingsProperty:
|
|
542
|
-
def __init__(
|
|
543
|
-
self,
|
|
544
|
-
*,
|
|
545
|
-
certificate_arn: typing.Optional[builtins.str] = None,
|
|
546
|
-
database_name: typing.Optional[builtins.str] = None,
|
|
547
|
-
port: typing.Optional[jsii.Number] = None,
|
|
548
|
-
server_name: typing.Optional[builtins.str] = None,
|
|
549
|
-
ssl_mode: typing.Optional[builtins.str] = None,
|
|
550
|
-
) -> None:
|
|
551
|
-
'''Provides information that defines a PostgreSQL endpoint.
|
|
552
|
-
|
|
553
|
-
:param certificate_arn:
|
|
554
|
-
:param database_name: Database name for the endpoint.
|
|
555
|
-
:param port: Endpoint TCP port. The default is 5432.
|
|
556
|
-
:param server_name: The host name of the endpoint database. For an Amazon RDS PostgreSQL instance, this is the output of `DescribeDBInstances <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html>`_ , in the ``[Endpoint](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html) .Address`` field. For an Aurora PostgreSQL instance, this is the output of `DescribeDBClusters <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html>`_ , in the ``Endpoint`` field.
|
|
557
|
-
:param ssl_mode:
|
|
558
|
-
|
|
559
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html
|
|
560
|
-
:exampleMetadata: fixture=_generated
|
|
561
|
-
|
|
562
|
-
Example::
|
|
563
|
-
|
|
564
|
-
# The code below shows an example of how to instantiate this type.
|
|
565
|
-
# The values are placeholders you should change.
|
|
566
|
-
from aws_cdk import aws_dms as dms
|
|
567
|
-
|
|
568
|
-
postgre_sql_settings_property = dms.CfnDataProvider.PostgreSqlSettingsProperty(
|
|
569
|
-
certificate_arn="certificateArn",
|
|
570
|
-
database_name="databaseName",
|
|
571
|
-
port=123,
|
|
572
|
-
server_name="serverName",
|
|
573
|
-
ssl_mode="sslMode"
|
|
574
|
-
)
|
|
575
|
-
'''
|
|
576
|
-
if __debug__:
|
|
577
|
-
type_hints = typing.get_type_hints(_typecheckingstub__88794bb72ba79be958b7dded7052c25ff733fb78d91866206736f0b1effd3336)
|
|
578
|
-
check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
|
|
579
|
-
check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
|
|
580
|
-
check_type(argname="argument port", value=port, expected_type=type_hints["port"])
|
|
581
|
-
check_type(argname="argument server_name", value=server_name, expected_type=type_hints["server_name"])
|
|
582
|
-
check_type(argname="argument ssl_mode", value=ssl_mode, expected_type=type_hints["ssl_mode"])
|
|
583
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
584
|
-
if certificate_arn is not None:
|
|
585
|
-
self._values["certificate_arn"] = certificate_arn
|
|
586
|
-
if database_name is not None:
|
|
587
|
-
self._values["database_name"] = database_name
|
|
588
|
-
if port is not None:
|
|
589
|
-
self._values["port"] = port
|
|
590
|
-
if server_name is not None:
|
|
591
|
-
self._values["server_name"] = server_name
|
|
592
|
-
if ssl_mode is not None:
|
|
593
|
-
self._values["ssl_mode"] = ssl_mode
|
|
594
|
-
|
|
595
|
-
@builtins.property
|
|
596
|
-
def certificate_arn(self) -> typing.Optional[builtins.str]:
|
|
597
|
-
'''
|
|
598
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html#cfn-dms-dataprovider-postgresqlsettings-certificatearn
|
|
599
|
-
'''
|
|
600
|
-
result = self._values.get("certificate_arn")
|
|
601
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
602
|
-
|
|
603
|
-
@builtins.property
|
|
604
|
-
def database_name(self) -> typing.Optional[builtins.str]:
|
|
605
|
-
'''Database name for the endpoint.
|
|
606
|
-
|
|
607
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html#cfn-dms-dataprovider-postgresqlsettings-databasename
|
|
608
|
-
'''
|
|
609
|
-
result = self._values.get("database_name")
|
|
610
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
611
|
-
|
|
612
|
-
@builtins.property
|
|
613
|
-
def port(self) -> typing.Optional[jsii.Number]:
|
|
614
|
-
'''Endpoint TCP port.
|
|
615
|
-
|
|
616
|
-
The default is 5432.
|
|
617
|
-
|
|
618
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html#cfn-dms-dataprovider-postgresqlsettings-port
|
|
619
|
-
'''
|
|
620
|
-
result = self._values.get("port")
|
|
621
|
-
return typing.cast(typing.Optional[jsii.Number], result)
|
|
622
|
-
|
|
623
|
-
@builtins.property
|
|
624
|
-
def server_name(self) -> typing.Optional[builtins.str]:
|
|
625
|
-
'''The host name of the endpoint database.
|
|
626
|
-
|
|
627
|
-
For an Amazon RDS PostgreSQL instance, this is the output of `DescribeDBInstances <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html>`_ , in the ``[Endpoint](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html) .Address`` field.
|
|
628
|
-
|
|
629
|
-
For an Aurora PostgreSQL instance, this is the output of `DescribeDBClusters <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html>`_ , in the ``Endpoint`` field.
|
|
630
|
-
|
|
631
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html#cfn-dms-dataprovider-postgresqlsettings-servername
|
|
632
|
-
'''
|
|
633
|
-
result = self._values.get("server_name")
|
|
634
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
635
|
-
|
|
636
|
-
@builtins.property
|
|
637
|
-
def ssl_mode(self) -> typing.Optional[builtins.str]:
|
|
638
|
-
'''
|
|
639
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-postgresqlsettings.html#cfn-dms-dataprovider-postgresqlsettings-sslmode
|
|
640
|
-
'''
|
|
641
|
-
result = self._values.get("ssl_mode")
|
|
642
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
643
|
-
|
|
644
|
-
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
645
|
-
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
646
|
-
|
|
647
|
-
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
648
|
-
return not (rhs == self)
|
|
649
|
-
|
|
650
|
-
def __repr__(self) -> str:
|
|
651
|
-
return "PostgreSqlSettingsProperty(%s)" % ", ".join(
|
|
652
|
-
k + "=" + repr(v) for k, v in self._values.items()
|
|
653
|
-
)
|
|
654
|
-
|
|
655
|
-
@jsii.data_type(
|
|
656
|
-
jsii_type="aws-cdk-lib.aws_dms.CfnDataProvider.SettingsProperty",
|
|
657
|
-
jsii_struct_bases=[],
|
|
658
|
-
name_mapping={"postgre_sql_settings": "postgreSqlSettings"},
|
|
659
|
-
)
|
|
660
|
-
class SettingsProperty:
|
|
661
|
-
def __init__(
|
|
662
|
-
self,
|
|
663
|
-
*,
|
|
664
|
-
postgre_sql_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataProvider.PostgreSqlSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
665
|
-
) -> None:
|
|
666
|
-
'''PostgreSqlSettings property identifier.
|
|
667
|
-
|
|
668
|
-
:param postgre_sql_settings:
|
|
669
|
-
|
|
670
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-settings.html
|
|
671
|
-
:exampleMetadata: fixture=_generated
|
|
672
|
-
|
|
673
|
-
Example::
|
|
674
|
-
|
|
675
|
-
# The code below shows an example of how to instantiate this type.
|
|
676
|
-
# The values are placeholders you should change.
|
|
677
|
-
from aws_cdk import aws_dms as dms
|
|
678
|
-
|
|
679
|
-
settings_property = dms.CfnDataProvider.SettingsProperty(
|
|
680
|
-
postgre_sql_settings=dms.CfnDataProvider.PostgreSqlSettingsProperty(
|
|
681
|
-
certificate_arn="certificateArn",
|
|
682
|
-
database_name="databaseName",
|
|
683
|
-
port=123,
|
|
684
|
-
server_name="serverName",
|
|
685
|
-
ssl_mode="sslMode"
|
|
686
|
-
)
|
|
687
|
-
)
|
|
688
|
-
'''
|
|
689
|
-
if __debug__:
|
|
690
|
-
type_hints = typing.get_type_hints(_typecheckingstub__48803eeb23a0ec3425b1499cb6eedd7b2e70bcf1cc89d7b2c483a13b031d79d8)
|
|
691
|
-
check_type(argname="argument postgre_sql_settings", value=postgre_sql_settings, expected_type=type_hints["postgre_sql_settings"])
|
|
692
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
693
|
-
if postgre_sql_settings is not None:
|
|
694
|
-
self._values["postgre_sql_settings"] = postgre_sql_settings
|
|
695
|
-
|
|
696
|
-
@builtins.property
|
|
697
|
-
def postgre_sql_settings(
|
|
698
|
-
self,
|
|
699
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProvider.PostgreSqlSettingsProperty"]]:
|
|
700
|
-
'''
|
|
701
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-settings.html#cfn-dms-dataprovider-settings-postgresqlsettings
|
|
702
|
-
'''
|
|
703
|
-
result = self._values.get("postgre_sql_settings")
|
|
704
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProvider.PostgreSqlSettingsProperty"]], result)
|
|
705
|
-
|
|
706
|
-
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
707
|
-
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
708
|
-
|
|
709
|
-
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
710
|
-
return not (rhs == self)
|
|
711
|
-
|
|
712
|
-
def __repr__(self) -> str:
|
|
713
|
-
return "SettingsProperty(%s)" % ", ".join(
|
|
714
|
-
k + "=" + repr(v) for k, v in self._values.items()
|
|
715
|
-
)
|
|
716
|
-
|
|
717
500
|
|
|
718
501
|
@jsii.data_type(
|
|
719
502
|
jsii_type="aws-cdk-lib.aws_dms.CfnDataProviderProps",
|
|
@@ -724,7 +507,6 @@ class CfnDataProvider(
|
|
|
724
507
|
"data_provider_name": "dataProviderName",
|
|
725
508
|
"description": "description",
|
|
726
509
|
"exact_settings": "exactSettings",
|
|
727
|
-
"settings": "settings",
|
|
728
510
|
"tags": "tags",
|
|
729
511
|
},
|
|
730
512
|
)
|
|
@@ -737,7 +519,6 @@ class CfnDataProviderProps:
|
|
|
737
519
|
data_provider_name: typing.Optional[builtins.str] = None,
|
|
738
520
|
description: typing.Optional[builtins.str] = None,
|
|
739
521
|
exact_settings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
740
|
-
settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataProvider.SettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
741
522
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
742
523
|
) -> None:
|
|
743
524
|
'''Properties for defining a ``CfnDataProvider``.
|
|
@@ -747,7 +528,6 @@ class CfnDataProviderProps:
|
|
|
747
528
|
:param data_provider_name: The name of the data provider.
|
|
748
529
|
:param description: A description of the data provider. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
|
749
530
|
:param exact_settings: The property describes the exact settings which can be modified. Default: - false
|
|
750
|
-
:param settings: The settings in JSON format for a data provider.
|
|
751
531
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
752
532
|
|
|
753
533
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-dataprovider.html
|
|
@@ -767,15 +547,6 @@ class CfnDataProviderProps:
|
|
|
767
547
|
data_provider_name="dataProviderName",
|
|
768
548
|
description="description",
|
|
769
549
|
exact_settings=False,
|
|
770
|
-
settings=dms.CfnDataProvider.SettingsProperty(
|
|
771
|
-
postgre_sql_settings=dms.CfnDataProvider.PostgreSqlSettingsProperty(
|
|
772
|
-
certificate_arn="certificateArn",
|
|
773
|
-
database_name="databaseName",
|
|
774
|
-
port=123,
|
|
775
|
-
server_name="serverName",
|
|
776
|
-
ssl_mode="sslMode"
|
|
777
|
-
)
|
|
778
|
-
),
|
|
779
550
|
tags=[CfnTag(
|
|
780
551
|
key="key",
|
|
781
552
|
value="value"
|
|
@@ -789,7 +560,6 @@ class CfnDataProviderProps:
|
|
|
789
560
|
check_type(argname="argument data_provider_name", value=data_provider_name, expected_type=type_hints["data_provider_name"])
|
|
790
561
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
791
562
|
check_type(argname="argument exact_settings", value=exact_settings, expected_type=type_hints["exact_settings"])
|
|
792
|
-
check_type(argname="argument settings", value=settings, expected_type=type_hints["settings"])
|
|
793
563
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
794
564
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
795
565
|
"engine": engine,
|
|
@@ -802,8 +572,6 @@ class CfnDataProviderProps:
|
|
|
802
572
|
self._values["description"] = description
|
|
803
573
|
if exact_settings is not None:
|
|
804
574
|
self._values["exact_settings"] = exact_settings
|
|
805
|
-
if settings is not None:
|
|
806
|
-
self._values["settings"] = settings
|
|
807
575
|
if tags is not None:
|
|
808
576
|
self._values["tags"] = tags
|
|
809
577
|
|
|
@@ -863,17 +631,6 @@ class CfnDataProviderProps:
|
|
|
863
631
|
result = self._values.get("exact_settings")
|
|
864
632
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
865
633
|
|
|
866
|
-
@builtins.property
|
|
867
|
-
def settings(
|
|
868
|
-
self,
|
|
869
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataProvider.SettingsProperty]]:
|
|
870
|
-
'''The settings in JSON format for a data provider.
|
|
871
|
-
|
|
872
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-dataprovider.html#cfn-dms-dataprovider-settings
|
|
873
|
-
'''
|
|
874
|
-
result = self._values.get("settings")
|
|
875
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataProvider.SettingsProperty]], result)
|
|
876
|
-
|
|
877
634
|
@builtins.property
|
|
878
635
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
879
636
|
'''An array of key-value pairs to apply to this resource.
|
|
@@ -12090,7 +11847,6 @@ def _typecheckingstub__cf28699baa8f0b678c6576c66e1c53e33b16d9f9cc37b854d4edbc95b
|
|
|
12090
11847
|
data_provider_name: typing.Optional[builtins.str] = None,
|
|
12091
11848
|
description: typing.Optional[builtins.str] = None,
|
|
12092
11849
|
exact_settings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
12093
|
-
settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataProvider.SettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12094
11850
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12095
11851
|
) -> None:
|
|
12096
11852
|
"""Type checking stubs"""
|
|
@@ -12138,36 +11894,12 @@ def _typecheckingstub__f4d016d92a836fecec39275d37ba39e9b434aac43e0b8d6b9a644a15b
|
|
|
12138
11894
|
"""Type checking stubs"""
|
|
12139
11895
|
pass
|
|
12140
11896
|
|
|
12141
|
-
def _typecheckingstub__e759668e5454c7b728515ac0c320d568f1fc6f406c7ed4f0c45e830f497f443e(
|
|
12142
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataProvider.SettingsProperty]],
|
|
12143
|
-
) -> None:
|
|
12144
|
-
"""Type checking stubs"""
|
|
12145
|
-
pass
|
|
12146
|
-
|
|
12147
11897
|
def _typecheckingstub__15d6e40a485e85376660625e14969b38fc293c419cb77e7880107c25ae376134(
|
|
12148
11898
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
12149
11899
|
) -> None:
|
|
12150
11900
|
"""Type checking stubs"""
|
|
12151
11901
|
pass
|
|
12152
11902
|
|
|
12153
|
-
def _typecheckingstub__88794bb72ba79be958b7dded7052c25ff733fb78d91866206736f0b1effd3336(
|
|
12154
|
-
*,
|
|
12155
|
-
certificate_arn: typing.Optional[builtins.str] = None,
|
|
12156
|
-
database_name: typing.Optional[builtins.str] = None,
|
|
12157
|
-
port: typing.Optional[jsii.Number] = None,
|
|
12158
|
-
server_name: typing.Optional[builtins.str] = None,
|
|
12159
|
-
ssl_mode: typing.Optional[builtins.str] = None,
|
|
12160
|
-
) -> None:
|
|
12161
|
-
"""Type checking stubs"""
|
|
12162
|
-
pass
|
|
12163
|
-
|
|
12164
|
-
def _typecheckingstub__48803eeb23a0ec3425b1499cb6eedd7b2e70bcf1cc89d7b2c483a13b031d79d8(
|
|
12165
|
-
*,
|
|
12166
|
-
postgre_sql_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataProvider.PostgreSqlSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12167
|
-
) -> None:
|
|
12168
|
-
"""Type checking stubs"""
|
|
12169
|
-
pass
|
|
12170
|
-
|
|
12171
11903
|
def _typecheckingstub__97cc3506a599073ab7e0ec6de0479e22078eea7f9108a8ff9c54e506d212555c(
|
|
12172
11904
|
*,
|
|
12173
11905
|
engine: builtins.str,
|
|
@@ -12175,7 +11907,6 @@ def _typecheckingstub__97cc3506a599073ab7e0ec6de0479e22078eea7f9108a8ff9c54e506d
|
|
|
12175
11907
|
data_provider_name: typing.Optional[builtins.str] = None,
|
|
12176
11908
|
description: typing.Optional[builtins.str] = None,
|
|
12177
11909
|
exact_settings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
12178
|
-
settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataProvider.SettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12179
11910
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12180
11911
|
) -> None:
|
|
12181
11912
|
"""Type checking stubs"""
|