aws-cdk-lib 2.125.0__py3-none-any.whl → 2.127.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 +0 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.125.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +18 -6
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
- aws_cdk/aws_apigateway/__init__.py +7 -3
- aws_cdk/aws_appconfig/__init__.py +108 -19
- aws_cdk/aws_appsync/__init__.py +43 -0
- aws_cdk/aws_autoscaling/__init__.py +37 -14
- aws_cdk/aws_cassandra/__init__.py +810 -4
- aws_cdk/aws_cloudfront/__init__.py +35 -37
- aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
- aws_cdk/aws_codebuild/__init__.py +43 -3
- aws_cdk/aws_codecommit/__init__.py +1 -0
- aws_cdk/aws_codepipeline/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
- aws_cdk/aws_codestarnotifications/__init__.py +24 -15
- aws_cdk/aws_cognito/__init__.py +180 -116
- aws_cdk/aws_datasync/__init__.py +8 -4
- aws_cdk/aws_dynamodb/__init__.py +80 -11
- aws_cdk/aws_ec2/__init__.py +207 -45
- aws_cdk/aws_ecs/__init__.py +171 -78
- aws_cdk/aws_ecs_patterns/__init__.py +24 -0
- aws_cdk/aws_efs/__init__.py +64 -8
- aws_cdk/aws_eks/__init__.py +52 -41
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
- aws_cdk/aws_fis/__init__.py +32 -12
- aws_cdk/aws_fsx/__init__.py +61 -43
- aws_cdk/aws_glue/__init__.py +449 -0
- aws_cdk/aws_guardduty/__init__.py +0 -8
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_inspectorv2/__init__.py +989 -0
- aws_cdk/aws_internetmonitor/__init__.py +10 -12
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotwireless/__init__.py +32 -19
- aws_cdk/aws_lambda/__init__.py +129 -32
- aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
- aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
- aws_cdk/aws_location/__init__.py +8 -2
- aws_cdk/aws_logs/__init__.py +7 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +4 -4
- aws_cdk/aws_osis/__init__.py +13 -13
- aws_cdk/aws_personalize/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +7 -10
- aws_cdk/aws_rds/__init__.py +449 -8
- aws_cdk/aws_redshiftserverless/__init__.py +282 -0
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +282 -0
- aws_cdk/aws_s3/__init__.py +11 -6
- aws_cdk/aws_sagemaker/__init__.py +1398 -39
- aws_cdk/aws_sns/__init__.py +56 -13
- aws_cdk/aws_sqs/__init__.py +13 -10
- aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
- aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
- aws_cdk/aws_transfer/__init__.py +1 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
- aws_cdk/aws_workspacesweb/__init__.py +6 -3
- aws_cdk/cx_api/__init__.py +17 -0
- aws_cdk/triggers/__init__.py +21 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
- aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -4151,8 +4151,8 @@ class CfnDBCluster(
|
|
|
4151
4151
|
:param replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica. Valid for: Aurora DB clusters only
|
|
4152
4152
|
:param restore_to_time: The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints: - Must be before the latest restorable time for the DB instance - Must be specified if ``UseLatestRestorableTime`` parameter isn't provided - Can't be specified if the ``UseLatestRestorableTime`` parameter is enabled - Can't be specified if the ``RestoreType`` parameter is ``copy-on-write`` This property must be used with ``SourceDBClusterIdentifier`` property. The resulting cluster will have the identifier that matches the value of the ``DBclusterIdentifier`` property. Example: ``2015-03-07T23:45:00Z`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4153
4153
|
:param restore_type: The type of restore to be performed. You can specify one of the following values:. - ``full-copy`` - The new DB cluster is restored as a full copy of the source DB cluster. - ``copy-on-write`` - The new DB cluster is restored as a clone of the source DB cluster. If you don't specify a ``RestoreType`` value, then the new DB cluster is restored as a full copy of the source DB cluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters Default: - "full-copy"
|
|
4154
|
-
:param scaling_configuration: The ``ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless DB cluster. This property is only supported for Aurora Serverless v1. For Aurora Serverless v2,
|
|
4155
|
-
:param serverless_v2_scaling_configuration: The ``ServerlessV2ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster. This property is only supported for Aurora Serverless v2. For Aurora Serverless v1,
|
|
4154
|
+
:param scaling_configuration: The ``ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless DB cluster. This property is only supported for Aurora Serverless v1. For Aurora Serverless v2, Use the ``ServerlessV2ScalingConfiguration`` property. Valid for: Aurora DB clusters only
|
|
4155
|
+
:param serverless_v2_scaling_configuration: The ``ServerlessV2ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster. This property is only supported for Aurora Serverless v2. For Aurora Serverless v1, Use the ``ScalingConfiguration`` property. Valid for: Aurora DB clusters only
|
|
4156
4156
|
:param snapshot_identifier: The identifier for the DB snapshot or DB cluster snapshot to restore from. You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot. After you restore a DB cluster with a ``SnapshotIdentifier`` property, you must specify the same ``SnapshotIdentifier`` property for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed. However, if you don't specify the ``SnapshotIdentifier`` property, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB cluster is restored from the specified ``SnapshotIdentifier`` property, and the original DB cluster is deleted. If you specify the ``SnapshotIdentifier`` property to restore a DB cluster (as opposed to specifying it for DB cluster updates), then don't specify the following properties: - ``GlobalClusterIdentifier`` - ``MasterUsername`` - ``MasterUserPassword`` - ``ReplicationSourceIdentifier`` - ``RestoreType`` - ``SourceDBClusterIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an encrypted snapshot) - ``UseLatestRestorableTime`` Constraints: - Must match the identifier of an existing Snapshot. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4157
4157
|
:param source_db_cluster_identifier: When restoring a DB cluster to a point in time, the identifier of the source DB cluster from which to restore. Constraints: - Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4158
4158
|
:param source_region: The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1`` . Valid for: Aurora DB clusters only
|
|
@@ -5461,7 +5461,7 @@ class CfnDBCluster(
|
|
|
5461
5461
|
|
|
5462
5462
|
For more information, see `Using Amazon Aurora Serverless <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html>`_ in the *Amazon Aurora User Guide* .
|
|
5463
5463
|
|
|
5464
|
-
This property is only supported for Aurora Serverless v1. For Aurora Serverless v2,
|
|
5464
|
+
This property is only supported for Aurora Serverless v1. For Aurora Serverless v2, Use the ``ServerlessV2ScalingConfiguration`` property.
|
|
5465
5465
|
|
|
5466
5466
|
Valid for: Aurora DB clusters only
|
|
5467
5467
|
|
|
@@ -5629,7 +5629,7 @@ class CfnDBCluster(
|
|
|
5629
5629
|
|
|
5630
5630
|
If you have an Aurora cluster, you must set the ``ScalingConfigurationInfo`` attribute before you add a DB instance that uses the ``db.serverless`` DB instance class. For more information, see `Clusters that use Aurora Serverless v2 must have a capacity range specified <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html#aurora-serverless-v2.requirements.capacity-range>`_ in the *Amazon Aurora User Guide* .
|
|
5631
5631
|
|
|
5632
|
-
This property is only supported for Aurora Serverless v2. For Aurora Serverless v1,
|
|
5632
|
+
This property is only supported for Aurora Serverless v2. For Aurora Serverless v1, Use the ``ScalingConfiguration`` property.
|
|
5633
5633
|
|
|
5634
5634
|
:param max_capacity: The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 40, 40.5, 41, and so on. The largest value that you can use is 128. The maximum capacity must be higher than 0.5 ACUs. For more information, see `Choosing the maximum Aurora Serverless v2 capacity setting for a cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.setting-capacity.html#aurora-serverless-v2.max_capacity_considerations>`_ in the *Amazon Aurora User Guide* .
|
|
5635
5635
|
:param min_capacity: The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. The smallest value that you can use is 0.5.
|
|
@@ -6196,8 +6196,8 @@ class CfnDBClusterProps:
|
|
|
6196
6196
|
:param replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica. Valid for: Aurora DB clusters only
|
|
6197
6197
|
:param restore_to_time: The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints: - Must be before the latest restorable time for the DB instance - Must be specified if ``UseLatestRestorableTime`` parameter isn't provided - Can't be specified if the ``UseLatestRestorableTime`` parameter is enabled - Can't be specified if the ``RestoreType`` parameter is ``copy-on-write`` This property must be used with ``SourceDBClusterIdentifier`` property. The resulting cluster will have the identifier that matches the value of the ``DBclusterIdentifier`` property. Example: ``2015-03-07T23:45:00Z`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6198
6198
|
:param restore_type: The type of restore to be performed. You can specify one of the following values:. - ``full-copy`` - The new DB cluster is restored as a full copy of the source DB cluster. - ``copy-on-write`` - The new DB cluster is restored as a clone of the source DB cluster. If you don't specify a ``RestoreType`` value, then the new DB cluster is restored as a full copy of the source DB cluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters Default: - "full-copy"
|
|
6199
|
-
:param scaling_configuration: The ``ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless DB cluster. This property is only supported for Aurora Serverless v1. For Aurora Serverless v2,
|
|
6200
|
-
:param serverless_v2_scaling_configuration: The ``ServerlessV2ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster. This property is only supported for Aurora Serverless v2. For Aurora Serverless v1,
|
|
6199
|
+
:param scaling_configuration: The ``ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless DB cluster. This property is only supported for Aurora Serverless v1. For Aurora Serverless v2, Use the ``ServerlessV2ScalingConfiguration`` property. Valid for: Aurora DB clusters only
|
|
6200
|
+
:param serverless_v2_scaling_configuration: The ``ServerlessV2ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster. This property is only supported for Aurora Serverless v2. For Aurora Serverless v1, Use the ``ScalingConfiguration`` property. Valid for: Aurora DB clusters only
|
|
6201
6201
|
:param snapshot_identifier: The identifier for the DB snapshot or DB cluster snapshot to restore from. You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot. After you restore a DB cluster with a ``SnapshotIdentifier`` property, you must specify the same ``SnapshotIdentifier`` property for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed. However, if you don't specify the ``SnapshotIdentifier`` property, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB cluster is restored from the specified ``SnapshotIdentifier`` property, and the original DB cluster is deleted. If you specify the ``SnapshotIdentifier`` property to restore a DB cluster (as opposed to specifying it for DB cluster updates), then don't specify the following properties: - ``GlobalClusterIdentifier`` - ``MasterUsername`` - ``MasterUserPassword`` - ``ReplicationSourceIdentifier`` - ``RestoreType`` - ``SourceDBClusterIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an encrypted snapshot) - ``UseLatestRestorableTime`` Constraints: - Must match the identifier of an existing Snapshot. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6202
6202
|
:param source_db_cluster_identifier: When restoring a DB cluster to a point in time, the identifier of the source DB cluster from which to restore. Constraints: - Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6203
6203
|
:param source_region: The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1`` . Valid for: Aurora DB clusters only
|
|
@@ -7258,7 +7258,7 @@ class CfnDBClusterProps:
|
|
|
7258
7258
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDBCluster.ScalingConfigurationProperty]]:
|
|
7259
7259
|
'''The ``ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless DB cluster.
|
|
7260
7260
|
|
|
7261
|
-
This property is only supported for Aurora Serverless v1. For Aurora Serverless v2,
|
|
7261
|
+
This property is only supported for Aurora Serverless v1. For Aurora Serverless v2, Use the ``ServerlessV2ScalingConfiguration`` property.
|
|
7262
7262
|
|
|
7263
7263
|
Valid for: Aurora DB clusters only
|
|
7264
7264
|
|
|
@@ -7273,7 +7273,7 @@ class CfnDBClusterProps:
|
|
|
7273
7273
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDBCluster.ServerlessV2ScalingConfigurationProperty]]:
|
|
7274
7274
|
'''The ``ServerlessV2ScalingConfiguration`` property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster.
|
|
7275
7275
|
|
|
7276
|
-
This property is only supported for Aurora Serverless v2. For Aurora Serverless v1,
|
|
7276
|
+
This property is only supported for Aurora Serverless v2. For Aurora Serverless v1, Use the ``ScalingConfiguration`` property.
|
|
7277
7277
|
|
|
7278
7278
|
Valid for: Aurora DB clusters only
|
|
7279
7279
|
|
|
@@ -15463,6 +15463,371 @@ class CfnGlobalClusterProps:
|
|
|
15463
15463
|
)
|
|
15464
15464
|
|
|
15465
15465
|
|
|
15466
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
15467
|
+
class CfnIntegration(
|
|
15468
|
+
_CfnResource_9df397a6,
|
|
15469
|
+
metaclass=jsii.JSIIMeta,
|
|
15470
|
+
jsii_type="aws-cdk-lib.aws_rds.CfnIntegration",
|
|
15471
|
+
):
|
|
15472
|
+
'''A zero-ETL integration with Amazon Redshift.
|
|
15473
|
+
|
|
15474
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html
|
|
15475
|
+
:cloudformationResource: AWS::RDS::Integration
|
|
15476
|
+
:exampleMetadata: fixture=_generated
|
|
15477
|
+
|
|
15478
|
+
Example::
|
|
15479
|
+
|
|
15480
|
+
# The code below shows an example of how to instantiate this type.
|
|
15481
|
+
# The values are placeholders you should change.
|
|
15482
|
+
from aws_cdk import aws_rds as rds
|
|
15483
|
+
|
|
15484
|
+
cfn_integration = rds.CfnIntegration(self, "MyCfnIntegration",
|
|
15485
|
+
source_arn="sourceArn",
|
|
15486
|
+
target_arn="targetArn",
|
|
15487
|
+
|
|
15488
|
+
# the properties below are optional
|
|
15489
|
+
additional_encryption_context={
|
|
15490
|
+
"additional_encryption_context_key": "additionalEncryptionContext"
|
|
15491
|
+
},
|
|
15492
|
+
integration_name="integrationName",
|
|
15493
|
+
kms_key_id="kmsKeyId",
|
|
15494
|
+
tags=[CfnTag(
|
|
15495
|
+
key="key",
|
|
15496
|
+
value="value"
|
|
15497
|
+
)]
|
|
15498
|
+
)
|
|
15499
|
+
'''
|
|
15500
|
+
|
|
15501
|
+
def __init__(
|
|
15502
|
+
self,
|
|
15503
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
15504
|
+
id: builtins.str,
|
|
15505
|
+
*,
|
|
15506
|
+
source_arn: builtins.str,
|
|
15507
|
+
target_arn: builtins.str,
|
|
15508
|
+
additional_encryption_context: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
15509
|
+
integration_name: typing.Optional[builtins.str] = None,
|
|
15510
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
15511
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15512
|
+
) -> None:
|
|
15513
|
+
'''
|
|
15514
|
+
:param scope: Scope in which this resource is defined.
|
|
15515
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
15516
|
+
:param source_arn: The Amazon Resource Name (ARN) of the database to use as the source for replication.
|
|
15517
|
+
:param target_arn: The ARN of the Redshift data warehouse to use as the target for replication.
|
|
15518
|
+
:param additional_encryption_context: An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* . You can only include this parameter if you specify the ``KMSKeyId`` parameter.
|
|
15519
|
+
:param integration_name: The name of the integration.
|
|
15520
|
+
:param kms_key_id: The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default AWS owned key.
|
|
15521
|
+
:param tags: A list of tags. For more information, see `Tagging Amazon RDS Resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`_ in the *Amazon RDS User Guide.* .
|
|
15522
|
+
'''
|
|
15523
|
+
if __debug__:
|
|
15524
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0596ec891883071cc8cc2bad7e4e8120eefe68f759bfc17fdbfc1a525466ae6e)
|
|
15525
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
15526
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
15527
|
+
props = CfnIntegrationProps(
|
|
15528
|
+
source_arn=source_arn,
|
|
15529
|
+
target_arn=target_arn,
|
|
15530
|
+
additional_encryption_context=additional_encryption_context,
|
|
15531
|
+
integration_name=integration_name,
|
|
15532
|
+
kms_key_id=kms_key_id,
|
|
15533
|
+
tags=tags,
|
|
15534
|
+
)
|
|
15535
|
+
|
|
15536
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
15537
|
+
|
|
15538
|
+
@jsii.member(jsii_name="inspect")
|
|
15539
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
15540
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
15541
|
+
|
|
15542
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
15543
|
+
'''
|
|
15544
|
+
if __debug__:
|
|
15545
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2c37ff293df4f3a1ab5cfa34af8be3b29571590e2b4983133dd417c2a3e8dd4e)
|
|
15546
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
15547
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
15548
|
+
|
|
15549
|
+
@jsii.member(jsii_name="renderProperties")
|
|
15550
|
+
def _render_properties(
|
|
15551
|
+
self,
|
|
15552
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
15553
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
15554
|
+
'''
|
|
15555
|
+
:param props: -
|
|
15556
|
+
'''
|
|
15557
|
+
if __debug__:
|
|
15558
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7b5131586b65404f97fa93bbdd3fa16cb4205ddb1e0ab20a232d3fe75b08749b)
|
|
15559
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
15560
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
15561
|
+
|
|
15562
|
+
@jsii.python.classproperty
|
|
15563
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
15564
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
15565
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
15566
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
15567
|
+
|
|
15568
|
+
@builtins.property
|
|
15569
|
+
@jsii.member(jsii_name="attrCreateTime")
|
|
15570
|
+
def attr_create_time(self) -> builtins.str:
|
|
15571
|
+
'''The time when the integration was created, in Universal Coordinated Time (UTC).
|
|
15572
|
+
|
|
15573
|
+
:cloudformationAttribute: CreateTime
|
|
15574
|
+
'''
|
|
15575
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreateTime"))
|
|
15576
|
+
|
|
15577
|
+
@builtins.property
|
|
15578
|
+
@jsii.member(jsii_name="attrIntegrationArn")
|
|
15579
|
+
def attr_integration_arn(self) -> builtins.str:
|
|
15580
|
+
'''The ARN of the integration.
|
|
15581
|
+
|
|
15582
|
+
:cloudformationAttribute: IntegrationArn
|
|
15583
|
+
'''
|
|
15584
|
+
return typing.cast(builtins.str, jsii.get(self, "attrIntegrationArn"))
|
|
15585
|
+
|
|
15586
|
+
@builtins.property
|
|
15587
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
15588
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
15589
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
15590
|
+
|
|
15591
|
+
@builtins.property
|
|
15592
|
+
@jsii.member(jsii_name="sourceArn")
|
|
15593
|
+
def source_arn(self) -> builtins.str:
|
|
15594
|
+
'''The Amazon Resource Name (ARN) of the database to use as the source for replication.'''
|
|
15595
|
+
return typing.cast(builtins.str, jsii.get(self, "sourceArn"))
|
|
15596
|
+
|
|
15597
|
+
@source_arn.setter
|
|
15598
|
+
def source_arn(self, value: builtins.str) -> None:
|
|
15599
|
+
if __debug__:
|
|
15600
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ff54116f19c139bb3931b7f2a39aa904d2c464c4982c9f68dc93ed3ac29ffc6)
|
|
15601
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15602
|
+
jsii.set(self, "sourceArn", value)
|
|
15603
|
+
|
|
15604
|
+
@builtins.property
|
|
15605
|
+
@jsii.member(jsii_name="targetArn")
|
|
15606
|
+
def target_arn(self) -> builtins.str:
|
|
15607
|
+
'''The ARN of the Redshift data warehouse to use as the target for replication.'''
|
|
15608
|
+
return typing.cast(builtins.str, jsii.get(self, "targetArn"))
|
|
15609
|
+
|
|
15610
|
+
@target_arn.setter
|
|
15611
|
+
def target_arn(self, value: builtins.str) -> None:
|
|
15612
|
+
if __debug__:
|
|
15613
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6dd8ff906d13523a9100f3e1da8891fd48222fa9aef07e443b5b2ab9f06db37b)
|
|
15614
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15615
|
+
jsii.set(self, "targetArn", value)
|
|
15616
|
+
|
|
15617
|
+
@builtins.property
|
|
15618
|
+
@jsii.member(jsii_name="additionalEncryptionContext")
|
|
15619
|
+
def additional_encryption_context(
|
|
15620
|
+
self,
|
|
15621
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
15622
|
+
'''An optional set of non-secret key–value pairs that contains additional contextual information about the data.'''
|
|
15623
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "additionalEncryptionContext"))
|
|
15624
|
+
|
|
15625
|
+
@additional_encryption_context.setter
|
|
15626
|
+
def additional_encryption_context(
|
|
15627
|
+
self,
|
|
15628
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]],
|
|
15629
|
+
) -> None:
|
|
15630
|
+
if __debug__:
|
|
15631
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f7fbdfa17cddec711beb6235c912d759435b5df9d3a68892f8c59ac577e099e8)
|
|
15632
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15633
|
+
jsii.set(self, "additionalEncryptionContext", value)
|
|
15634
|
+
|
|
15635
|
+
@builtins.property
|
|
15636
|
+
@jsii.member(jsii_name="integrationName")
|
|
15637
|
+
def integration_name(self) -> typing.Optional[builtins.str]:
|
|
15638
|
+
'''The name of the integration.'''
|
|
15639
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "integrationName"))
|
|
15640
|
+
|
|
15641
|
+
@integration_name.setter
|
|
15642
|
+
def integration_name(self, value: typing.Optional[builtins.str]) -> None:
|
|
15643
|
+
if __debug__:
|
|
15644
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d5b123c2905fc9a976f7d4b785712c7b5d8b6b3c679debd526c66604c144a9d7)
|
|
15645
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15646
|
+
jsii.set(self, "integrationName", value)
|
|
15647
|
+
|
|
15648
|
+
@builtins.property
|
|
15649
|
+
@jsii.member(jsii_name="kmsKeyId")
|
|
15650
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
15651
|
+
'''The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.'''
|
|
15652
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
|
|
15653
|
+
|
|
15654
|
+
@kms_key_id.setter
|
|
15655
|
+
def kms_key_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
15656
|
+
if __debug__:
|
|
15657
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aad7195276c93d472e4715d546034cb06c361628e5b57dc7197786dbc43fe4b3)
|
|
15658
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15659
|
+
jsii.set(self, "kmsKeyId", value)
|
|
15660
|
+
|
|
15661
|
+
@builtins.property
|
|
15662
|
+
@jsii.member(jsii_name="tags")
|
|
15663
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
15664
|
+
'''A list of tags.'''
|
|
15665
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
15666
|
+
|
|
15667
|
+
@tags.setter
|
|
15668
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
15669
|
+
if __debug__:
|
|
15670
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a6b4346bf0db7d57b333211f6a259203a41499bb6b5a1a17f43f88ba74141158)
|
|
15671
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
15672
|
+
jsii.set(self, "tags", value)
|
|
15673
|
+
|
|
15674
|
+
|
|
15675
|
+
@jsii.data_type(
|
|
15676
|
+
jsii_type="aws-cdk-lib.aws_rds.CfnIntegrationProps",
|
|
15677
|
+
jsii_struct_bases=[],
|
|
15678
|
+
name_mapping={
|
|
15679
|
+
"source_arn": "sourceArn",
|
|
15680
|
+
"target_arn": "targetArn",
|
|
15681
|
+
"additional_encryption_context": "additionalEncryptionContext",
|
|
15682
|
+
"integration_name": "integrationName",
|
|
15683
|
+
"kms_key_id": "kmsKeyId",
|
|
15684
|
+
"tags": "tags",
|
|
15685
|
+
},
|
|
15686
|
+
)
|
|
15687
|
+
class CfnIntegrationProps:
|
|
15688
|
+
def __init__(
|
|
15689
|
+
self,
|
|
15690
|
+
*,
|
|
15691
|
+
source_arn: builtins.str,
|
|
15692
|
+
target_arn: builtins.str,
|
|
15693
|
+
additional_encryption_context: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
15694
|
+
integration_name: typing.Optional[builtins.str] = None,
|
|
15695
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
15696
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
15697
|
+
) -> None:
|
|
15698
|
+
'''Properties for defining a ``CfnIntegration``.
|
|
15699
|
+
|
|
15700
|
+
:param source_arn: The Amazon Resource Name (ARN) of the database to use as the source for replication.
|
|
15701
|
+
:param target_arn: The ARN of the Redshift data warehouse to use as the target for replication.
|
|
15702
|
+
:param additional_encryption_context: An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* . You can only include this parameter if you specify the ``KMSKeyId`` parameter.
|
|
15703
|
+
:param integration_name: The name of the integration.
|
|
15704
|
+
:param kms_key_id: The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default AWS owned key.
|
|
15705
|
+
:param tags: A list of tags. For more information, see `Tagging Amazon RDS Resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`_ in the *Amazon RDS User Guide.* .
|
|
15706
|
+
|
|
15707
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html
|
|
15708
|
+
:exampleMetadata: fixture=_generated
|
|
15709
|
+
|
|
15710
|
+
Example::
|
|
15711
|
+
|
|
15712
|
+
# The code below shows an example of how to instantiate this type.
|
|
15713
|
+
# The values are placeholders you should change.
|
|
15714
|
+
from aws_cdk import aws_rds as rds
|
|
15715
|
+
|
|
15716
|
+
cfn_integration_props = rds.CfnIntegrationProps(
|
|
15717
|
+
source_arn="sourceArn",
|
|
15718
|
+
target_arn="targetArn",
|
|
15719
|
+
|
|
15720
|
+
# the properties below are optional
|
|
15721
|
+
additional_encryption_context={
|
|
15722
|
+
"additional_encryption_context_key": "additionalEncryptionContext"
|
|
15723
|
+
},
|
|
15724
|
+
integration_name="integrationName",
|
|
15725
|
+
kms_key_id="kmsKeyId",
|
|
15726
|
+
tags=[CfnTag(
|
|
15727
|
+
key="key",
|
|
15728
|
+
value="value"
|
|
15729
|
+
)]
|
|
15730
|
+
)
|
|
15731
|
+
'''
|
|
15732
|
+
if __debug__:
|
|
15733
|
+
type_hints = typing.get_type_hints(_typecheckingstub__69f4caa1fd2b447a305e7c18241756ad629a86b97bd052f17e677fc8465d82e9)
|
|
15734
|
+
check_type(argname="argument source_arn", value=source_arn, expected_type=type_hints["source_arn"])
|
|
15735
|
+
check_type(argname="argument target_arn", value=target_arn, expected_type=type_hints["target_arn"])
|
|
15736
|
+
check_type(argname="argument additional_encryption_context", value=additional_encryption_context, expected_type=type_hints["additional_encryption_context"])
|
|
15737
|
+
check_type(argname="argument integration_name", value=integration_name, expected_type=type_hints["integration_name"])
|
|
15738
|
+
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
15739
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
15740
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
15741
|
+
"source_arn": source_arn,
|
|
15742
|
+
"target_arn": target_arn,
|
|
15743
|
+
}
|
|
15744
|
+
if additional_encryption_context is not None:
|
|
15745
|
+
self._values["additional_encryption_context"] = additional_encryption_context
|
|
15746
|
+
if integration_name is not None:
|
|
15747
|
+
self._values["integration_name"] = integration_name
|
|
15748
|
+
if kms_key_id is not None:
|
|
15749
|
+
self._values["kms_key_id"] = kms_key_id
|
|
15750
|
+
if tags is not None:
|
|
15751
|
+
self._values["tags"] = tags
|
|
15752
|
+
|
|
15753
|
+
@builtins.property
|
|
15754
|
+
def source_arn(self) -> builtins.str:
|
|
15755
|
+
'''The Amazon Resource Name (ARN) of the database to use as the source for replication.
|
|
15756
|
+
|
|
15757
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-sourcearn
|
|
15758
|
+
'''
|
|
15759
|
+
result = self._values.get("source_arn")
|
|
15760
|
+
assert result is not None, "Required property 'source_arn' is missing"
|
|
15761
|
+
return typing.cast(builtins.str, result)
|
|
15762
|
+
|
|
15763
|
+
@builtins.property
|
|
15764
|
+
def target_arn(self) -> builtins.str:
|
|
15765
|
+
'''The ARN of the Redshift data warehouse to use as the target for replication.
|
|
15766
|
+
|
|
15767
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-targetarn
|
|
15768
|
+
'''
|
|
15769
|
+
result = self._values.get("target_arn")
|
|
15770
|
+
assert result is not None, "Required property 'target_arn' is missing"
|
|
15771
|
+
return typing.cast(builtins.str, result)
|
|
15772
|
+
|
|
15773
|
+
@builtins.property
|
|
15774
|
+
def additional_encryption_context(
|
|
15775
|
+
self,
|
|
15776
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
15777
|
+
'''An optional set of non-secret key–value pairs that contains additional contextual information about the data.
|
|
15778
|
+
|
|
15779
|
+
For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
|
|
15780
|
+
|
|
15781
|
+
You can only include this parameter if you specify the ``KMSKeyId`` parameter.
|
|
15782
|
+
|
|
15783
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-additionalencryptioncontext
|
|
15784
|
+
'''
|
|
15785
|
+
result = self._values.get("additional_encryption_context")
|
|
15786
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], result)
|
|
15787
|
+
|
|
15788
|
+
@builtins.property
|
|
15789
|
+
def integration_name(self) -> typing.Optional[builtins.str]:
|
|
15790
|
+
'''The name of the integration.
|
|
15791
|
+
|
|
15792
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-integrationname
|
|
15793
|
+
'''
|
|
15794
|
+
result = self._values.get("integration_name")
|
|
15795
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15796
|
+
|
|
15797
|
+
@builtins.property
|
|
15798
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
15799
|
+
'''The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.
|
|
15800
|
+
|
|
15801
|
+
If you don't specify an encryption key, RDS uses a default AWS owned key.
|
|
15802
|
+
|
|
15803
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-kmskeyid
|
|
15804
|
+
'''
|
|
15805
|
+
result = self._values.get("kms_key_id")
|
|
15806
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15807
|
+
|
|
15808
|
+
@builtins.property
|
|
15809
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
15810
|
+
'''A list of tags.
|
|
15811
|
+
|
|
15812
|
+
For more information, see `Tagging Amazon RDS Resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`_ in the *Amazon RDS User Guide.* .
|
|
15813
|
+
|
|
15814
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html#cfn-rds-integration-tags
|
|
15815
|
+
'''
|
|
15816
|
+
result = self._values.get("tags")
|
|
15817
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
15818
|
+
|
|
15819
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
15820
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
15821
|
+
|
|
15822
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
15823
|
+
return not (rhs == self)
|
|
15824
|
+
|
|
15825
|
+
def __repr__(self) -> str:
|
|
15826
|
+
return "CfnIntegrationProps(%s)" % ", ".join(
|
|
15827
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
15828
|
+
)
|
|
15829
|
+
|
|
15830
|
+
|
|
15466
15831
|
@jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
|
|
15467
15832
|
class CfnOptionGroup(
|
|
15468
15833
|
_CfnResource_9df397a6,
|
|
@@ -41414,6 +41779,8 @@ __all__ = [
|
|
|
41414
41779
|
"CfnEventSubscriptionProps",
|
|
41415
41780
|
"CfnGlobalCluster",
|
|
41416
41781
|
"CfnGlobalClusterProps",
|
|
41782
|
+
"CfnIntegration",
|
|
41783
|
+
"CfnIntegrationProps",
|
|
41417
41784
|
"CfnOptionGroup",
|
|
41418
41785
|
"CfnOptionGroupProps",
|
|
41419
41786
|
"ClientPasswordAuthType",
|
|
@@ -43640,6 +44007,80 @@ def _typecheckingstub__ef2e57f0cb9427badb90bc7e1248f0f26bc8de21a104bb924da973366
|
|
|
43640
44007
|
"""Type checking stubs"""
|
|
43641
44008
|
pass
|
|
43642
44009
|
|
|
44010
|
+
def _typecheckingstub__0596ec891883071cc8cc2bad7e4e8120eefe68f759bfc17fdbfc1a525466ae6e(
|
|
44011
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
44012
|
+
id: builtins.str,
|
|
44013
|
+
*,
|
|
44014
|
+
source_arn: builtins.str,
|
|
44015
|
+
target_arn: builtins.str,
|
|
44016
|
+
additional_encryption_context: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
44017
|
+
integration_name: typing.Optional[builtins.str] = None,
|
|
44018
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
44019
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44020
|
+
) -> None:
|
|
44021
|
+
"""Type checking stubs"""
|
|
44022
|
+
pass
|
|
44023
|
+
|
|
44024
|
+
def _typecheckingstub__2c37ff293df4f3a1ab5cfa34af8be3b29571590e2b4983133dd417c2a3e8dd4e(
|
|
44025
|
+
inspector: _TreeInspector_488e0dd5,
|
|
44026
|
+
) -> None:
|
|
44027
|
+
"""Type checking stubs"""
|
|
44028
|
+
pass
|
|
44029
|
+
|
|
44030
|
+
def _typecheckingstub__7b5131586b65404f97fa93bbdd3fa16cb4205ddb1e0ab20a232d3fe75b08749b(
|
|
44031
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
44032
|
+
) -> None:
|
|
44033
|
+
"""Type checking stubs"""
|
|
44034
|
+
pass
|
|
44035
|
+
|
|
44036
|
+
def _typecheckingstub__4ff54116f19c139bb3931b7f2a39aa904d2c464c4982c9f68dc93ed3ac29ffc6(
|
|
44037
|
+
value: builtins.str,
|
|
44038
|
+
) -> None:
|
|
44039
|
+
"""Type checking stubs"""
|
|
44040
|
+
pass
|
|
44041
|
+
|
|
44042
|
+
def _typecheckingstub__6dd8ff906d13523a9100f3e1da8891fd48222fa9aef07e443b5b2ab9f06db37b(
|
|
44043
|
+
value: builtins.str,
|
|
44044
|
+
) -> None:
|
|
44045
|
+
"""Type checking stubs"""
|
|
44046
|
+
pass
|
|
44047
|
+
|
|
44048
|
+
def _typecheckingstub__f7fbdfa17cddec711beb6235c912d759435b5df9d3a68892f8c59ac577e099e8(
|
|
44049
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]],
|
|
44050
|
+
) -> None:
|
|
44051
|
+
"""Type checking stubs"""
|
|
44052
|
+
pass
|
|
44053
|
+
|
|
44054
|
+
def _typecheckingstub__d5b123c2905fc9a976f7d4b785712c7b5d8b6b3c679debd526c66604c144a9d7(
|
|
44055
|
+
value: typing.Optional[builtins.str],
|
|
44056
|
+
) -> None:
|
|
44057
|
+
"""Type checking stubs"""
|
|
44058
|
+
pass
|
|
44059
|
+
|
|
44060
|
+
def _typecheckingstub__aad7195276c93d472e4715d546034cb06c361628e5b57dc7197786dbc43fe4b3(
|
|
44061
|
+
value: typing.Optional[builtins.str],
|
|
44062
|
+
) -> None:
|
|
44063
|
+
"""Type checking stubs"""
|
|
44064
|
+
pass
|
|
44065
|
+
|
|
44066
|
+
def _typecheckingstub__a6b4346bf0db7d57b333211f6a259203a41499bb6b5a1a17f43f88ba74141158(
|
|
44067
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
44068
|
+
) -> None:
|
|
44069
|
+
"""Type checking stubs"""
|
|
44070
|
+
pass
|
|
44071
|
+
|
|
44072
|
+
def _typecheckingstub__69f4caa1fd2b447a305e7c18241756ad629a86b97bd052f17e677fc8465d82e9(
|
|
44073
|
+
*,
|
|
44074
|
+
source_arn: builtins.str,
|
|
44075
|
+
target_arn: builtins.str,
|
|
44076
|
+
additional_encryption_context: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
44077
|
+
integration_name: typing.Optional[builtins.str] = None,
|
|
44078
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
44079
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
44080
|
+
) -> None:
|
|
44081
|
+
"""Type checking stubs"""
|
|
44082
|
+
pass
|
|
44083
|
+
|
|
43643
44084
|
def _typecheckingstub__160a45fe55c01086901039aa8bde8bd5ace11ff967acd2154abcc9137622aea0(
|
|
43644
44085
|
scope: _constructs_77d1e7e8.Construct,
|
|
43645
44086
|
id: builtins.str,
|