aws-cdk-lib 2.128.0__py3-none-any.whl → 2.129.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 +2 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.128.0.jsii.tgz → aws-cdk-lib@2.129.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +6 -24
- aws_cdk/aws_amplify/__init__.py +1 -2
- aws_cdk/aws_appconfig/__init__.py +0 -16
- aws_cdk/aws_applicationautoscaling/__init__.py +55 -22
- aws_cdk/aws_appstream/__init__.py +14 -14
- aws_cdk/aws_appsync/__init__.py +334 -3
- aws_cdk/aws_autoscaling/__init__.py +11 -7
- aws_cdk/aws_batch/__init__.py +137 -16
- aws_cdk/aws_cleanrooms/__init__.py +1 -2
- aws_cdk/aws_cloudformation/__init__.py +2 -10
- aws_cdk/aws_cloudfront/__init__.py +15 -8
- aws_cdk/aws_cloudfront/experimental/__init__.py +22 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +332 -0
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +4 -0
- aws_cdk/aws_codepipeline/__init__.py +463 -11
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_config/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +6 -1
- aws_cdk/aws_controltower/__init__.py +527 -7
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_directoryservice/__init__.py +2 -3
- aws_cdk/aws_dynamodb/__init__.py +7 -0
- aws_cdk/aws_ec2/__init__.py +117 -210
- aws_cdk/aws_ecs/__init__.py +537 -3
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_elasticache/__init__.py +27 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +3 -4
- aws_cdk/aws_emr/__init__.py +23 -3
- aws_cdk/aws_events_targets/__init__.py +64 -20
- aws_cdk/aws_fis/__init__.py +4 -4
- aws_cdk/aws_frauddetector/__init__.py +3 -3
- aws_cdk/aws_globalaccelerator/__init__.py +2 -6
- aws_cdk/aws_glue/__init__.py +84 -55
- aws_cdk/aws_groundstation/__init__.py +8 -12
- aws_cdk/aws_guardduty/__init__.py +74 -70
- aws_cdk/aws_iam/__init__.py +16 -23
- aws_cdk/aws_imagebuilder/__init__.py +178 -156
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +17 -10
- aws_cdk/aws_iotevents/__init__.py +4 -4
- aws_cdk/aws_iotfleetwise/__init__.py +10 -5
- aws_cdk/aws_iottwinmaker/__init__.py +3 -5
- aws_cdk/aws_iotwireless/__init__.py +35 -23
- aws_cdk/aws_kendra/__init__.py +36 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +155 -114
- aws_cdk/aws_lambda/__init__.py +157 -12
- aws_cdk/aws_lambda_nodejs/__init__.py +22 -0
- aws_cdk/aws_lightsail/__init__.py +14 -18
- aws_cdk/aws_logs/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +5 -3
- aws_cdk/aws_medialive/__init__.py +3 -12
- aws_cdk/aws_mediapackagev2/__init__.py +287 -286
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +6 -3
- aws_cdk/aws_mwaa/__init__.py +10 -5
- aws_cdk/aws_neptunegraph/__init__.py +84 -66
- aws_cdk/aws_networkfirewall/__init__.py +5 -8
- aws_cdk/aws_networkmanager/__init__.py +3 -3
- aws_cdk/aws_nimblestudio/__init__.py +2 -4
- aws_cdk/aws_opensearchservice/__init__.py +6 -7
- aws_cdk/aws_osis/__init__.py +1 -3
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +5 -5
- aws_cdk/aws_quicksight/__init__.py +5 -10
- aws_cdk/aws_rds/__init__.py +38 -21
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_redshiftserverless/__init__.py +62 -38
- aws_cdk/aws_rolesanywhere/__init__.py +41 -53
- aws_cdk/aws_route53/__init__.py +532 -6
- aws_cdk/aws_route53recoverycontrol/__init__.py +1 -3
- aws_cdk/aws_route53recoveryreadiness/__init__.py +2 -2
- aws_cdk/aws_route53resolver/__init__.py +1 -4
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +111 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_sns/__init__.py +185 -38
- aws_cdk/aws_ssm/__init__.py +16 -16
- aws_cdk/aws_ssmincidents/__init__.py +1 -1
- aws_cdk/aws_synthetics/__init__.py +94 -21
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -2
- aws_cdk/aws_vpclattice/__init__.py +8 -4
- aws_cdk/aws_wafv2/__init__.py +14 -59
- aws_cdk/aws_workspaces/__init__.py +5 -4
- aws_cdk/aws_workspacesweb/__init__.py +6 -12
- aws_cdk/triggers/__init__.py +22 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +98 -98
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
|
@@ -1094,7 +1094,10 @@ class CfnDomain(
|
|
|
1094
1094
|
def attr_advanced_security_options_anonymous_auth_disable_date(
|
|
1095
1095
|
self,
|
|
1096
1096
|
) -> builtins.str:
|
|
1097
|
-
'''
|
|
1097
|
+
'''Date and time when the migration period will be disabled.
|
|
1098
|
+
|
|
1099
|
+
Only necessary when `enabling fine-grained access control on an existing domain <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing>`_ .
|
|
1100
|
+
|
|
1098
1101
|
:cloudformationAttribute: AdvancedSecurityOptions.AnonymousAuthDisableDate
|
|
1099
1102
|
'''
|
|
1100
1103
|
return typing.cast(builtins.str, jsii.get(self, "attrAdvancedSecurityOptionsAnonymousAuthDisableDate"))
|
|
@@ -1120,10 +1123,7 @@ class CfnDomain(
|
|
|
1120
1123
|
@builtins.property
|
|
1121
1124
|
@jsii.member(jsii_name="attrDomainEndpoints")
|
|
1122
1125
|
def attr_domain_endpoints(self) -> _IResolvable_da3f097b:
|
|
1123
|
-
'''
|
|
1124
|
-
|
|
1125
|
-
Example ``key, value`` : ``'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'`` .
|
|
1126
|
-
|
|
1126
|
+
'''
|
|
1127
1127
|
:cloudformationAttribute: DomainEndpoints
|
|
1128
1128
|
'''
|
|
1129
1129
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrDomainEndpoints"))
|
|
@@ -1153,8 +1153,7 @@ class CfnDomain(
|
|
|
1153
1153
|
@builtins.property
|
|
1154
1154
|
@jsii.member(jsii_name="attrServiceSoftwareOptions")
|
|
1155
1155
|
def attr_service_software_options(self) -> _IResolvable_da3f097b:
|
|
1156
|
-
'''
|
|
1157
|
-
|
|
1156
|
+
'''
|
|
1158
1157
|
:cloudformationAttribute: ServiceSoftwareOptions
|
|
1159
1158
|
'''
|
|
1160
1159
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrServiceSoftwareOptions"))
|
aws_cdk/aws_osis/__init__.py
CHANGED
|
@@ -190,9 +190,7 @@ class CfnPipeline(
|
|
|
190
190
|
@builtins.property
|
|
191
191
|
@jsii.member(jsii_name="attrIngestEndpointUrls")
|
|
192
192
|
def attr_ingest_endpoint_urls(self) -> typing.List[builtins.str]:
|
|
193
|
-
'''A list of
|
|
194
|
-
|
|
195
|
-
Currently, only a single ingestion endpoint is supported for a pipeline. For example, ``my-pipeline-123456789012.us-east-1.osis.amazonaws.com`` .
|
|
193
|
+
'''A list of endpoints that can be used for ingesting data into a pipeline.
|
|
196
194
|
|
|
197
195
|
:cloudformationAttribute: IngestEndpointUrls
|
|
198
196
|
'''
|
aws_cdk/aws_pinpoint/__init__.py
CHANGED
|
@@ -8990,7 +8990,7 @@ class CfnEventStream(
|
|
|
8990
8990
|
:param scope: Scope in which this resource is defined.
|
|
8991
8991
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
8992
8992
|
:param application_id: The unique identifier for the Amazon Pinpoint application that you want to export data from.
|
|
8993
|
-
:param destination_stream_arn: The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon
|
|
8993
|
+
:param destination_stream_arn: The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to. For a Kinesis Data Stream, the ARN format is: ``arn:aws:kinesis: region : account-id :stream/ stream_name`` For a Firehose delivery stream, the ARN format is: ``arn:aws:firehose: region : account-id :deliverystream/ stream_name``
|
|
8994
8994
|
:param role_arn: The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.
|
|
8995
8995
|
'''
|
|
8996
8996
|
if __debug__:
|
|
@@ -9064,7 +9064,7 @@ class CfnEventStream(
|
|
|
9064
9064
|
@builtins.property
|
|
9065
9065
|
@jsii.member(jsii_name="destinationStreamArn")
|
|
9066
9066
|
def destination_stream_arn(self) -> builtins.str:
|
|
9067
|
-
'''The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon
|
|
9067
|
+
'''The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.'''
|
|
9068
9068
|
return typing.cast(builtins.str, jsii.get(self, "destinationStreamArn"))
|
|
9069
9069
|
|
|
9070
9070
|
@destination_stream_arn.setter
|
|
@@ -9108,7 +9108,7 @@ class CfnEventStreamProps:
|
|
|
9108
9108
|
'''Properties for defining a ``CfnEventStream``.
|
|
9109
9109
|
|
|
9110
9110
|
:param application_id: The unique identifier for the Amazon Pinpoint application that you want to export data from.
|
|
9111
|
-
:param destination_stream_arn: The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon
|
|
9111
|
+
:param destination_stream_arn: The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to. For a Kinesis Data Stream, the ARN format is: ``arn:aws:kinesis: region : account-id :stream/ stream_name`` For a Firehose delivery stream, the ARN format is: ``arn:aws:firehose: region : account-id :deliverystream/ stream_name``
|
|
9112
9112
|
:param role_arn: The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.
|
|
9113
9113
|
|
|
9114
9114
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html
|
|
@@ -9149,11 +9149,11 @@ class CfnEventStreamProps:
|
|
|
9149
9149
|
|
|
9150
9150
|
@builtins.property
|
|
9151
9151
|
def destination_stream_arn(self) -> builtins.str:
|
|
9152
|
-
'''The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon
|
|
9152
|
+
'''The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.
|
|
9153
9153
|
|
|
9154
9154
|
For a Kinesis Data Stream, the ARN format is: ``arn:aws:kinesis: region : account-id :stream/ stream_name``
|
|
9155
9155
|
|
|
9156
|
-
For a
|
|
9156
|
+
For a Firehose delivery stream, the ARN format is: ``arn:aws:firehose: region : account-id :deliverystream/ stream_name``
|
|
9157
9157
|
|
|
9158
9158
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn
|
|
9159
9159
|
'''
|
aws_cdk/aws_pipes/__init__.py
CHANGED
|
@@ -2391,9 +2391,9 @@ class CfnPipe(
|
|
|
2391
2391
|
*,
|
|
2392
2392
|
delivery_stream_arn: typing.Optional[builtins.str] = None,
|
|
2393
2393
|
) -> None:
|
|
2394
|
-
'''Represents the Amazon
|
|
2394
|
+
'''Represents the Amazon Data Firehose logging configuration settings for the pipe.
|
|
2395
2395
|
|
|
2396
|
-
:param delivery_stream_arn: The Amazon Resource Name (ARN) of the
|
|
2396
|
+
:param delivery_stream_arn: The Amazon Resource Name (ARN) of the Firehose delivery stream to which EventBridge delivers the pipe log records.
|
|
2397
2397
|
|
|
2398
2398
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-firehoselogdestination.html
|
|
2399
2399
|
:exampleMetadata: fixture=_generated
|
|
@@ -2417,7 +2417,7 @@ class CfnPipe(
|
|
|
2417
2417
|
|
|
2418
2418
|
@builtins.property
|
|
2419
2419
|
def delivery_stream_arn(self) -> typing.Optional[builtins.str]:
|
|
2420
|
-
'''The Amazon Resource Name (ARN) of the
|
|
2420
|
+
'''The Amazon Resource Name (ARN) of the Firehose delivery stream to which EventBridge delivers the pipe log records.
|
|
2421
2421
|
|
|
2422
2422
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-firehoselogdestination.html#cfn-pipes-pipe-firehoselogdestination-deliverystreamarn
|
|
2423
2423
|
'''
|
|
@@ -2837,7 +2837,7 @@ class CfnPipe(
|
|
|
2837
2837
|
'''Represents the configuration settings for the logs to which this pipe should report events.
|
|
2838
2838
|
|
|
2839
2839
|
:param cloudwatch_logs_log_destination: The logging configuration settings for the pipe.
|
|
2840
|
-
:param firehose_log_destination: The Amazon
|
|
2840
|
+
:param firehose_log_destination: The Amazon Data Firehose logging configuration settings for the pipe.
|
|
2841
2841
|
:param include_execution_data: Whether the execution data (specifically, the ``payload`` , ``awsRequest`` , and ``awsResponse`` fields) is included in the log messages for this pipe. This applies to all log destinations for the pipe. For more information, see `Including execution data in logs <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data>`_ in the *Amazon EventBridge User Guide* . *Allowed values:* ``ALL``
|
|
2842
2842
|
:param level: The level of logging detail to include. This applies to all log destinations for the pipe.
|
|
2843
2843
|
:param s3_log_destination: The Amazon S3 logging configuration settings for the pipe.
|
|
@@ -2902,7 +2902,7 @@ class CfnPipe(
|
|
|
2902
2902
|
def firehose_log_destination(
|
|
2903
2903
|
self,
|
|
2904
2904
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.FirehoseLogDestinationProperty"]]:
|
|
2905
|
-
'''The Amazon
|
|
2905
|
+
'''The Amazon Data Firehose logging configuration settings for the pipe.
|
|
2906
2906
|
|
|
2907
2907
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipelogconfiguration.html#cfn-pipes-pipe-pipelogconfiguration-firehoselogdestination
|
|
2908
2908
|
'''
|
|
@@ -177,8 +177,7 @@ class CfnAnalysis(
|
|
|
177
177
|
@builtins.property
|
|
178
178
|
@jsii.member(jsii_name="attrDataSetArns")
|
|
179
179
|
def attr_data_set_arns(self) -> typing.List[builtins.str]:
|
|
180
|
-
'''
|
|
181
|
-
|
|
180
|
+
'''
|
|
182
181
|
:cloudformationAttribute: DataSetArns
|
|
183
182
|
'''
|
|
184
183
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrDataSetArns"))
|
|
@@ -63931,8 +63930,7 @@ class CfnDashboard(
|
|
|
63931
63930
|
@builtins.property
|
|
63932
63931
|
@jsii.member(jsii_name="attrVersion")
|
|
63933
63932
|
def attr_version(self) -> _IResolvable_da3f097b:
|
|
63934
|
-
'''
|
|
63935
|
-
|
|
63933
|
+
'''
|
|
63936
63934
|
:cloudformationAttribute: Version
|
|
63937
63935
|
'''
|
|
63938
63936
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrVersion"))
|
|
@@ -139336,8 +139334,7 @@ class CfnTemplate(
|
|
|
139336
139334
|
@builtins.property
|
|
139337
139335
|
@jsii.member(jsii_name="attrVersion")
|
|
139338
139336
|
def attr_version(self) -> _IResolvable_da3f097b:
|
|
139339
|
-
'''
|
|
139340
|
-
|
|
139337
|
+
'''
|
|
139341
139338
|
:cloudformationAttribute: Version
|
|
139342
139339
|
'''
|
|
139343
139340
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrVersion"))
|
|
@@ -203248,8 +203245,7 @@ class CfnTheme(
|
|
|
203248
203245
|
@builtins.property
|
|
203249
203246
|
@jsii.member(jsii_name="attrVersion")
|
|
203250
203247
|
def attr_version(self) -> _IResolvable_da3f097b:
|
|
203251
|
-
'''
|
|
203252
|
-
|
|
203248
|
+
'''
|
|
203253
203249
|
:cloudformationAttribute: Version
|
|
203254
203250
|
'''
|
|
203255
203251
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrVersion"))
|
|
@@ -209545,8 +209541,7 @@ class CfnVPCConnection(
|
|
|
209545
209541
|
@builtins.property
|
|
209546
209542
|
@jsii.member(jsii_name="attrNetworkInterfaces")
|
|
209547
209543
|
def attr_network_interfaces(self) -> _IResolvable_da3f097b:
|
|
209548
|
-
'''
|
|
209549
|
-
|
|
209544
|
+
'''
|
|
209550
209545
|
:cloudformationAttribute: NetworkInterfaces
|
|
209551
209546
|
'''
|
|
209552
209547
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNetworkInterfaces"))
|
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -2410,6 +2410,12 @@ class AuroraMysqlEngineVersion(
|
|
|
2410
2410
|
'''Version "8.0.mysql_aurora.3.05.1".'''
|
|
2411
2411
|
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_05_1"))
|
|
2412
2412
|
|
|
2413
|
+
@jsii.python.classproperty
|
|
2414
|
+
@jsii.member(jsii_name="VER_3_05_2")
|
|
2415
|
+
def VER_3_05_2(cls) -> "AuroraMysqlEngineVersion":
|
|
2416
|
+
'''Version "8.0.mysql_aurora.3.05.2".'''
|
|
2417
|
+
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_05_2"))
|
|
2418
|
+
|
|
2413
2419
|
@jsii.python.classproperty
|
|
2414
2420
|
@jsii.member(jsii_name="VER_5_7_12")
|
|
2415
2421
|
def VER_5_7_12(cls) -> "AuroraMysqlEngineVersion":
|
|
@@ -3190,9 +3196,15 @@ class AuroraPostgresEngineVersion(
|
|
|
3190
3196
|
@jsii.python.classproperty
|
|
3191
3197
|
@jsii.member(jsii_name="VER_16_0")
|
|
3192
3198
|
def VER_16_0(cls) -> "AuroraPostgresEngineVersion":
|
|
3193
|
-
'''Version "16.0".
|
|
3199
|
+
'''Version "16.0".'''
|
|
3194
3200
|
return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_0"))
|
|
3195
3201
|
|
|
3202
|
+
@jsii.python.classproperty
|
|
3203
|
+
@jsii.member(jsii_name="VER_16_1")
|
|
3204
|
+
def VER_16_1(cls) -> "AuroraPostgresEngineVersion":
|
|
3205
|
+
'''Version "16.1".'''
|
|
3206
|
+
return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_1"))
|
|
3207
|
+
|
|
3196
3208
|
@jsii.python.classproperty
|
|
3197
3209
|
@jsii.member(jsii_name="VER_9_6_11")
|
|
3198
3210
|
def VER_9_6_11(cls) -> "AuroraPostgresEngineVersion":
|
|
@@ -4278,8 +4290,7 @@ class CfnDBCluster(
|
|
|
4278
4290
|
@builtins.property
|
|
4279
4291
|
@jsii.member(jsii_name="attrEndpoint")
|
|
4280
4292
|
def attr_endpoint(self) -> _IResolvable_da3f097b:
|
|
4281
|
-
'''
|
|
4282
|
-
|
|
4293
|
+
'''
|
|
4283
4294
|
:cloudformationAttribute: Endpoint
|
|
4284
4295
|
'''
|
|
4285
4296
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrEndpoint"))
|
|
@@ -4289,6 +4300,8 @@ class CfnDBCluster(
|
|
|
4289
4300
|
def attr_endpoint_address(self) -> builtins.str:
|
|
4290
4301
|
'''The connection endpoint for the DB cluster.
|
|
4291
4302
|
|
|
4303
|
+
For example: ``mystack-mydbcluster-123456789012.us-east-2.rds.amazonaws.com``
|
|
4304
|
+
|
|
4292
4305
|
:cloudformationAttribute: Endpoint.Address
|
|
4293
4306
|
'''
|
|
4294
4307
|
return typing.cast(builtins.str, jsii.get(self, "attrEndpointAddress"))
|
|
@@ -4298,6 +4311,8 @@ class CfnDBCluster(
|
|
|
4298
4311
|
def attr_endpoint_port(self) -> builtins.str:
|
|
4299
4312
|
'''The port number that will accept connections on this DB cluster.
|
|
4300
4313
|
|
|
4314
|
+
For example: ``3306``
|
|
4315
|
+
|
|
4301
4316
|
:cloudformationAttribute: Endpoint.Port
|
|
4302
4317
|
'''
|
|
4303
4318
|
return typing.cast(builtins.str, jsii.get(self, "attrEndpointPort"))
|
|
@@ -4324,6 +4339,8 @@ class CfnDBCluster(
|
|
|
4324
4339
|
def attr_read_endpoint_address(self) -> builtins.str:
|
|
4325
4340
|
'''The reader endpoint for the DB cluster.
|
|
4326
4341
|
|
|
4342
|
+
For example: ``mystack-mydbcluster-ro-123456789012.us-east-2.rds.amazonaws.com``
|
|
4343
|
+
|
|
4327
4344
|
:cloudformationAttribute: ReadEndpoint.Address
|
|
4328
4345
|
'''
|
|
4329
4346
|
return typing.cast(builtins.str, jsii.get(self, "attrReadEndpointAddress"))
|
|
@@ -7688,7 +7705,7 @@ class CfnDBInstance(
|
|
|
7688
7705
|
:param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
7689
7706
|
:param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
|
|
7690
7707
|
:param backup_retention_period: The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. *Amazon Aurora* Not applicable. The retention period for automated backups is managed by the DB cluster. Default: 1 Constraints: - Must be a value from 0 to 35 - Can't be set to 0 if the DB instance is a source to read replicas Default: - 1
|
|
7691
|
-
:param ca_certificate_identifier: The identifier of the CA certificate for this DB instance.
|
|
7708
|
+
:param ca_certificate_identifier: The identifier of the CA certificate for this DB instance. For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon Aurora User Guide* .
|
|
7692
7709
|
:param certificate_details: The details of the DB instance's server certificate.
|
|
7693
7710
|
:param certificate_rotation_restart: Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. .. epigraph:: Set this parameter only if you are *not* using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate: - For more information about rotating your SSL/TLS certificate for RDS DB engines, see `Rotating Your SSL/TLS Certificate. <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon RDS User Guide.* - For more information about rotating your SSL/TLS certificate for Aurora DB engines, see `Rotating Your SSL/TLS Certificate <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon Aurora User Guide* . This setting doesn't apply to RDS Custom DB instances.
|
|
7694
7711
|
:param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
|
|
@@ -7751,8 +7768,8 @@ class CfnDBInstance(
|
|
|
7751
7768
|
:param storage_throughput: Specifies the storage throughput value for the DB instance. This setting applies only to the ``gp3`` storage type. This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
7752
7769
|
:param storage_type: Specifies the storage type to be associated with the DB instance. Valid values: ``gp2 | gp3 | io1 | standard`` The ``standard`` value is also known as magnetic. If you specify ``io1`` or ``gp3`` , you must also include a value for the ``Iops`` parameter. Default: ``io1`` if the ``Iops`` parameter is specified, otherwise ``gp2`` For more information, see `Amazon RDS DB Instance Storage <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html>`_ in the *Amazon RDS User Guide* . *Amazon Aurora* Not applicable. Aurora data is stored in the cluster volume, which is a single, virtual volume that uses solid state drives (SSDs).
|
|
7753
7770
|
:param tags: An optional array of key-value pairs to apply to this DB instance.
|
|
7754
|
-
:param tde_credential_arn:
|
|
7755
|
-
:param tde_credential_password:
|
|
7771
|
+
:param tde_credential_arn:
|
|
7772
|
+
:param tde_credential_password:
|
|
7756
7773
|
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `Microsoft SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
|
|
7757
7774
|
:param use_default_processor_features: Specifies whether the DB instance class of the DB instance uses its default processor features. This setting doesn't apply to RDS Custom DB instances.
|
|
7758
7775
|
:param use_latest_restorable_time: Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time. Constraints: - Can't be specified if the ``RestoreTime`` parameter is provided.
|
|
@@ -7927,7 +7944,9 @@ class CfnDBInstance(
|
|
|
7927
7944
|
@builtins.property
|
|
7928
7945
|
@jsii.member(jsii_name="attrEndpointAddress")
|
|
7929
7946
|
def attr_endpoint_address(self) -> builtins.str:
|
|
7930
|
-
'''
|
|
7947
|
+
'''The connection endpoint for the database. For example: ``mystack-mydb-1apw1j4phylrk.cg034hpkmmjt.us-east-2.rds.amazonaws.com``.
|
|
7948
|
+
|
|
7949
|
+
For Aurora Serverless DB clusters, the connection endpoint only applies to the DB cluster.
|
|
7931
7950
|
|
|
7932
7951
|
:cloudformationAttribute: Endpoint.Address
|
|
7933
7952
|
'''
|
|
@@ -7936,7 +7955,7 @@ class CfnDBInstance(
|
|
|
7936
7955
|
@builtins.property
|
|
7937
7956
|
@jsii.member(jsii_name="attrEndpointHostedZoneId")
|
|
7938
7957
|
def attr_endpoint_hosted_zone_id(self) -> builtins.str:
|
|
7939
|
-
'''
|
|
7958
|
+
'''The ID that Amazon Route 53 assigns when you create a hosted zone.
|
|
7940
7959
|
|
|
7941
7960
|
:cloudformationAttribute: Endpoint.HostedZoneId
|
|
7942
7961
|
'''
|
|
@@ -7945,7 +7964,9 @@ class CfnDBInstance(
|
|
|
7945
7964
|
@builtins.property
|
|
7946
7965
|
@jsii.member(jsii_name="attrEndpointPort")
|
|
7947
7966
|
def attr_endpoint_port(self) -> builtins.str:
|
|
7948
|
-
'''
|
|
7967
|
+
'''The port number on which the database accepts connections.
|
|
7968
|
+
|
|
7969
|
+
For example: ``3306``
|
|
7949
7970
|
|
|
7950
7971
|
:cloudformationAttribute: Endpoint.Port
|
|
7951
7972
|
'''
|
|
@@ -9015,8 +9036,7 @@ class CfnDBInstance(
|
|
|
9015
9036
|
@builtins.property
|
|
9016
9037
|
@jsii.member(jsii_name="tdeCredentialArn")
|
|
9017
9038
|
def tde_credential_arn(self) -> typing.Optional[builtins.str]:
|
|
9018
|
-
'''
|
|
9019
|
-
|
|
9039
|
+
'''
|
|
9020
9040
|
:deprecated: this property has been deprecated
|
|
9021
9041
|
|
|
9022
9042
|
:stability: deprecated
|
|
@@ -9033,8 +9053,7 @@ class CfnDBInstance(
|
|
|
9033
9053
|
@builtins.property
|
|
9034
9054
|
@jsii.member(jsii_name="tdeCredentialPassword")
|
|
9035
9055
|
def tde_credential_password(self) -> typing.Optional[builtins.str]:
|
|
9036
|
-
'''
|
|
9037
|
-
|
|
9056
|
+
'''
|
|
9038
9057
|
:deprecated: this property has been deprecated
|
|
9039
9058
|
|
|
9040
9059
|
:stability: deprecated
|
|
@@ -9672,7 +9691,7 @@ class CfnDBInstanceProps:
|
|
|
9672
9691
|
:param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
9673
9692
|
:param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
|
|
9674
9693
|
:param backup_retention_period: The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. *Amazon Aurora* Not applicable. The retention period for automated backups is managed by the DB cluster. Default: 1 Constraints: - Must be a value from 0 to 35 - Can't be set to 0 if the DB instance is a source to read replicas Default: - 1
|
|
9675
|
-
:param ca_certificate_identifier: The identifier of the CA certificate for this DB instance.
|
|
9694
|
+
:param ca_certificate_identifier: The identifier of the CA certificate for this DB instance. For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon Aurora User Guide* .
|
|
9676
9695
|
:param certificate_details: The details of the DB instance's server certificate.
|
|
9677
9696
|
:param certificate_rotation_restart: Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. .. epigraph:: Set this parameter only if you are *not* using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate: - For more information about rotating your SSL/TLS certificate for RDS DB engines, see `Rotating Your SSL/TLS Certificate. <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon RDS User Guide.* - For more information about rotating your SSL/TLS certificate for Aurora DB engines, see `Rotating Your SSL/TLS Certificate <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon Aurora User Guide* . This setting doesn't apply to RDS Custom DB instances.
|
|
9678
9697
|
:param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
|
|
@@ -9735,8 +9754,8 @@ class CfnDBInstanceProps:
|
|
|
9735
9754
|
:param storage_throughput: Specifies the storage throughput value for the DB instance. This setting applies only to the ``gp3`` storage type. This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
9736
9755
|
:param storage_type: Specifies the storage type to be associated with the DB instance. Valid values: ``gp2 | gp3 | io1 | standard`` The ``standard`` value is also known as magnetic. If you specify ``io1`` or ``gp3`` , you must also include a value for the ``Iops`` parameter. Default: ``io1`` if the ``Iops`` parameter is specified, otherwise ``gp2`` For more information, see `Amazon RDS DB Instance Storage <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html>`_ in the *Amazon RDS User Guide* . *Amazon Aurora* Not applicable. Aurora data is stored in the cluster volume, which is a single, virtual volume that uses solid state drives (SSDs).
|
|
9737
9756
|
:param tags: An optional array of key-value pairs to apply to this DB instance.
|
|
9738
|
-
:param tde_credential_arn:
|
|
9739
|
-
:param tde_credential_password:
|
|
9757
|
+
:param tde_credential_arn:
|
|
9758
|
+
:param tde_credential_password:
|
|
9740
9759
|
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `Microsoft SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
|
|
9741
9760
|
:param use_default_processor_features: Specifies whether the DB instance class of the DB instance uses its default processor features. This setting doesn't apply to RDS Custom DB instances.
|
|
9742
9761
|
:param use_latest_restorable_time: Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time. Constraints: - Can't be specified if the ``RestoreTime`` parameter is provided.
|
|
@@ -10255,7 +10274,7 @@ class CfnDBInstanceProps:
|
|
|
10255
10274
|
def ca_certificate_identifier(self) -> typing.Optional[builtins.str]:
|
|
10256
10275
|
'''The identifier of the CA certificate for this DB instance.
|
|
10257
10276
|
|
|
10258
|
-
|
|
10277
|
+
For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon Aurora User Guide* .
|
|
10259
10278
|
|
|
10260
10279
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-cacertificateidentifier
|
|
10261
10280
|
'''
|
|
@@ -11502,8 +11521,7 @@ class CfnDBInstanceProps:
|
|
|
11502
11521
|
|
|
11503
11522
|
@builtins.property
|
|
11504
11523
|
def tde_credential_arn(self) -> typing.Optional[builtins.str]:
|
|
11505
|
-
'''
|
|
11506
|
-
|
|
11524
|
+
'''
|
|
11507
11525
|
:deprecated: this property has been deprecated
|
|
11508
11526
|
|
|
11509
11527
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-tdecredentialarn
|
|
@@ -11514,8 +11532,7 @@ class CfnDBInstanceProps:
|
|
|
11514
11532
|
|
|
11515
11533
|
@builtins.property
|
|
11516
11534
|
def tde_credential_password(self) -> typing.Optional[builtins.str]:
|
|
11517
|
-
'''
|
|
11518
|
-
|
|
11535
|
+
'''
|
|
11519
11536
|
:deprecated: this property has been deprecated
|
|
11520
11537
|
|
|
11521
11538
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-tdecredentialpassword
|
aws_cdk/aws_redshift/__init__.py
CHANGED
|
@@ -371,7 +371,10 @@ class CfnCluster(
|
|
|
371
371
|
@builtins.property
|
|
372
372
|
@jsii.member(jsii_name="attrEndpointAddress")
|
|
373
373
|
def attr_endpoint_address(self) -> builtins.str:
|
|
374
|
-
'''
|
|
374
|
+
'''The connection endpoint for the Amazon Redshift cluster.
|
|
375
|
+
|
|
376
|
+
For example: ``examplecluster.cg034hpkmmjt.us-east-1.redshift.amazonaws.com`` .
|
|
377
|
+
|
|
375
378
|
:cloudformationAttribute: Endpoint.Address
|
|
376
379
|
'''
|
|
377
380
|
return typing.cast(builtins.str, jsii.get(self, "attrEndpointAddress"))
|
|
@@ -379,7 +382,10 @@ class CfnCluster(
|
|
|
379
382
|
@builtins.property
|
|
380
383
|
@jsii.member(jsii_name="attrEndpointPort")
|
|
381
384
|
def attr_endpoint_port(self) -> builtins.str:
|
|
382
|
-
'''
|
|
385
|
+
'''The port number on which the Amazon Redshift cluster accepts connections.
|
|
386
|
+
|
|
387
|
+
For example: ``5439`` .
|
|
388
|
+
|
|
383
389
|
:cloudformationAttribute: Endpoint.Port
|
|
384
390
|
'''
|
|
385
391
|
return typing.cast(builtins.str, jsii.get(self, "attrEndpointPort"))
|
|
@@ -3736,7 +3742,7 @@ class CfnEndpointAccess(
|
|
|
3736
3742
|
@builtins.property
|
|
3737
3743
|
@jsii.member(jsii_name="attrVpcSecurityGroups")
|
|
3738
3744
|
def attr_vpc_security_groups(self) -> _IResolvable_da3f097b:
|
|
3739
|
-
'''
|
|
3745
|
+
'''A list of Virtual Private Cloud (VPC) security groups to be associated with the endpoint.
|
|
3740
3746
|
|
|
3741
3747
|
:cloudformationAttribute: VpcSecurityGroups
|
|
3742
3748
|
'''
|
|
@@ -4684,8 +4690,6 @@ class CfnEventSubscription(
|
|
|
4684
4690
|
def attr_event_categories_list(self) -> typing.List[builtins.str]:
|
|
4685
4691
|
'''The list of Amazon Redshift event categories specified in the event notification subscription.
|
|
4686
4692
|
|
|
4687
|
-
Values: Configuration, Management, Monitoring, Security, Pending
|
|
4688
|
-
|
|
4689
4693
|
:cloudformationAttribute: EventCategoriesList
|
|
4690
4694
|
'''
|
|
4691
4695
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrEventCategoriesList"))
|