aws-cdk-lib 2.207.0__py3-none-any.whl → 2.209.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 +31 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.209.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +16 -12
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_bedrock/__init__.py +227 -102
- aws_cdk/aws_certificatemanager/__init__.py +45 -0
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +58 -16
- aws_cdk/aws_ecs/__init__.py +1554 -78
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +27 -15
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_lambda/__init__.py +76 -67
- aws_cdk/aws_logs/__init__.py +53 -4
- aws_cdk/aws_mediapackagev2/__init__.py +881 -0
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +214 -10
- aws_cdk/aws_route53/__init__.py +97 -41
- aws_cdk/aws_s3/__init__.py +775 -5
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -137
- aws_cdk/aws_ssm/__init__.py +48 -0
- aws_cdk/aws_transfer/__init__.py +49 -0
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- aws_cdk/cloud_assembly_schema/__init__.py +28 -2
- aws_cdk/custom_resources/__init__.py +1 -1
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/RECORD +41 -41
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_route53/__init__.py
CHANGED
|
@@ -8814,7 +8814,7 @@ class RecordSet(
|
|
|
8814
8814
|
:param zone: The hosted zone in which to define the new record.
|
|
8815
8815
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
8816
8816
|
:param comment: A comment to add on the record. Default: no comment
|
|
8817
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
8817
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
8818
8818
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8819
8819
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
8820
8820
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -8900,7 +8900,7 @@ class RecordSetOptions:
|
|
|
8900
8900
|
:param zone: The hosted zone in which to define the new record.
|
|
8901
8901
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
8902
8902
|
:param comment: A comment to add on the record. Default: no comment
|
|
8903
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
8903
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
8904
8904
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8905
8905
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
8906
8906
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -9012,7 +9012,7 @@ class RecordSetOptions:
|
|
|
9012
9012
|
|
|
9013
9013
|
@builtins.property
|
|
9014
9014
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
9015
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9015
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9016
9016
|
|
|
9017
9017
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
9018
9018
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -9025,6 +9025,10 @@ class RecordSetOptions:
|
|
|
9025
9025
|
will delete the record!
|
|
9026
9026
|
|
|
9027
9027
|
:default: false
|
|
9028
|
+
|
|
9029
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
9030
|
+
|
|
9031
|
+
:stability: deprecated
|
|
9028
9032
|
'''
|
|
9029
9033
|
result = self._values.get("delete_existing")
|
|
9030
9034
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -9182,7 +9186,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
9182
9186
|
:param zone: The hosted zone in which to define the new record.
|
|
9183
9187
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
9184
9188
|
:param comment: A comment to add on the record. Default: no comment
|
|
9185
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9189
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9186
9190
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9187
9191
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
9188
9192
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -9303,7 +9307,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
9303
9307
|
|
|
9304
9308
|
@builtins.property
|
|
9305
9309
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
9306
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9310
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9307
9311
|
|
|
9308
9312
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
9309
9313
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -9316,6 +9320,10 @@ class RecordSetProps(RecordSetOptions):
|
|
|
9316
9320
|
will delete the record!
|
|
9317
9321
|
|
|
9318
9322
|
:default: false
|
|
9323
|
+
|
|
9324
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
9325
|
+
|
|
9326
|
+
:stability: deprecated
|
|
9319
9327
|
'''
|
|
9320
9328
|
result = self._values.get("delete_existing")
|
|
9321
9329
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -9707,7 +9715,7 @@ class SrvRecord(
|
|
|
9707
9715
|
:param zone: The hosted zone in which to define the new record.
|
|
9708
9716
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
9709
9717
|
:param comment: A comment to add on the record. Default: no comment
|
|
9710
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9718
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9711
9719
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9712
9720
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
9713
9721
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -9788,7 +9796,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
9788
9796
|
:param zone: The hosted zone in which to define the new record.
|
|
9789
9797
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
9790
9798
|
:param comment: A comment to add on the record. Default: no comment
|
|
9791
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9799
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
9792
9800
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9793
9801
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
9794
9802
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -9909,7 +9917,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
9909
9917
|
|
|
9910
9918
|
@builtins.property
|
|
9911
9919
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
9912
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9920
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
9913
9921
|
|
|
9914
9922
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
9915
9923
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -9922,6 +9930,10 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
9922
9930
|
will delete the record!
|
|
9923
9931
|
|
|
9924
9932
|
:default: false
|
|
9933
|
+
|
|
9934
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
9935
|
+
|
|
9936
|
+
:stability: deprecated
|
|
9925
9937
|
'''
|
|
9926
9938
|
result = self._values.get("delete_existing")
|
|
9927
9939
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -10188,7 +10200,7 @@ class TxtRecord(
|
|
|
10188
10200
|
:param zone: The hosted zone in which to define the new record.
|
|
10189
10201
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
10190
10202
|
:param comment: A comment to add on the record. Default: no comment
|
|
10191
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10203
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10192
10204
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10193
10205
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
10194
10206
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -10269,7 +10281,7 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
10269
10281
|
:param zone: The hosted zone in which to define the new record.
|
|
10270
10282
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
10271
10283
|
:param comment: A comment to add on the record. Default: no comment
|
|
10272
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10284
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10273
10285
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10274
10286
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
10275
10287
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -10370,7 +10382,7 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
10370
10382
|
|
|
10371
10383
|
@builtins.property
|
|
10372
10384
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
10373
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
10385
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
10374
10386
|
|
|
10375
10387
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
10376
10388
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -10383,6 +10395,10 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
10383
10395
|
will delete the record!
|
|
10384
10396
|
|
|
10385
10397
|
:default: false
|
|
10398
|
+
|
|
10399
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
10400
|
+
|
|
10401
|
+
:stability: deprecated
|
|
10386
10402
|
'''
|
|
10387
10403
|
result = self._values.get("delete_existing")
|
|
10388
10404
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -10794,7 +10810,7 @@ class ZoneDelegationRecord(
|
|
|
10794
10810
|
:param zone: The hosted zone in which to define the new record.
|
|
10795
10811
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
10796
10812
|
:param comment: A comment to add on the record. Default: no comment
|
|
10797
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10813
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10798
10814
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10799
10815
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
10800
10816
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -10875,7 +10891,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
10875
10891
|
:param zone: The hosted zone in which to define the new record.
|
|
10876
10892
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
10877
10893
|
:param comment: A comment to add on the record. Default: no comment
|
|
10878
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10894
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
10879
10895
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10880
10896
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
10881
10897
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -10991,7 +11007,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
10991
11007
|
|
|
10992
11008
|
@builtins.property
|
|
10993
11009
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
10994
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
11010
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
10995
11011
|
|
|
10996
11012
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
10997
11013
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -11004,6 +11020,10 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
11004
11020
|
will delete the record!
|
|
11005
11021
|
|
|
11006
11022
|
:default: false
|
|
11023
|
+
|
|
11024
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
11025
|
+
|
|
11026
|
+
:stability: deprecated
|
|
11007
11027
|
'''
|
|
11008
11028
|
result = self._values.get("delete_existing")
|
|
11009
11029
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -11254,7 +11274,7 @@ class ARecord(
|
|
|
11254
11274
|
:param zone: The hosted zone in which to define the new record.
|
|
11255
11275
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
11256
11276
|
:param comment: A comment to add on the record. Default: no comment
|
|
11257
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11277
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11258
11278
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11259
11279
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
11260
11280
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -11318,7 +11338,7 @@ class ARecord(
|
|
|
11318
11338
|
:param zone: The hosted zone in which to define the new record.
|
|
11319
11339
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
11320
11340
|
:param comment: A comment to add on the record. Default: no comment
|
|
11321
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11341
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11322
11342
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11323
11343
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
11324
11344
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -11403,7 +11423,7 @@ class ARecordAttrs(RecordSetOptions):
|
|
|
11403
11423
|
:param zone: The hosted zone in which to define the new record.
|
|
11404
11424
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
11405
11425
|
:param comment: A comment to add on the record. Default: no comment
|
|
11406
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11426
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11407
11427
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11408
11428
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
11409
11429
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -11501,7 +11521,7 @@ class ARecordAttrs(RecordSetOptions):
|
|
|
11501
11521
|
|
|
11502
11522
|
@builtins.property
|
|
11503
11523
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
11504
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
11524
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
11505
11525
|
|
|
11506
11526
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
11507
11527
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -11514,6 +11534,10 @@ class ARecordAttrs(RecordSetOptions):
|
|
|
11514
11534
|
will delete the record!
|
|
11515
11535
|
|
|
11516
11536
|
:default: false
|
|
11537
|
+
|
|
11538
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
11539
|
+
|
|
11540
|
+
:stability: deprecated
|
|
11517
11541
|
'''
|
|
11518
11542
|
result = self._values.get("delete_existing")
|
|
11519
11543
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -11676,7 +11700,7 @@ class ARecordProps(RecordSetOptions):
|
|
|
11676
11700
|
:param zone: The hosted zone in which to define the new record.
|
|
11677
11701
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
11678
11702
|
:param comment: A comment to add on the record. Default: no comment
|
|
11679
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11703
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11680
11704
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11681
11705
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
11682
11706
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -11778,7 +11802,7 @@ class ARecordProps(RecordSetOptions):
|
|
|
11778
11802
|
|
|
11779
11803
|
@builtins.property
|
|
11780
11804
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
11781
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
11805
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
11782
11806
|
|
|
11783
11807
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
11784
11808
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -11791,6 +11815,10 @@ class ARecordProps(RecordSetOptions):
|
|
|
11791
11815
|
will delete the record!
|
|
11792
11816
|
|
|
11793
11817
|
:default: false
|
|
11818
|
+
|
|
11819
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
11820
|
+
|
|
11821
|
+
:stability: deprecated
|
|
11794
11822
|
'''
|
|
11795
11823
|
result = self._values.get("delete_existing")
|
|
11796
11824
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -11960,7 +11988,7 @@ class AaaaRecord(
|
|
|
11960
11988
|
:param zone: The hosted zone in which to define the new record.
|
|
11961
11989
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
11962
11990
|
:param comment: A comment to add on the record. Default: no comment
|
|
11963
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11991
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
11964
11992
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11965
11993
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
11966
11994
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -12041,7 +12069,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
12041
12069
|
:param zone: The hosted zone in which to define the new record.
|
|
12042
12070
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
12043
12071
|
:param comment: A comment to add on the record. Default: no comment
|
|
12044
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12072
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12045
12073
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
12046
12074
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
12047
12075
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -12139,7 +12167,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
12139
12167
|
|
|
12140
12168
|
@builtins.property
|
|
12141
12169
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
12142
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12170
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12143
12171
|
|
|
12144
12172
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
12145
12173
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -12152,6 +12180,10 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
12152
12180
|
will delete the record!
|
|
12153
12181
|
|
|
12154
12182
|
:default: false
|
|
12183
|
+
|
|
12184
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
12185
|
+
|
|
12186
|
+
:stability: deprecated
|
|
12155
12187
|
'''
|
|
12156
12188
|
result = self._values.get("delete_existing")
|
|
12157
12189
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -12312,7 +12344,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
12312
12344
|
:param zone: The hosted zone in which to define the new record.
|
|
12313
12345
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
12314
12346
|
:param comment: A comment to add on the record. Default: no comment
|
|
12315
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12347
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12316
12348
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
12317
12349
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
12318
12350
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -12424,7 +12456,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
12424
12456
|
|
|
12425
12457
|
@builtins.property
|
|
12426
12458
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
12427
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12459
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12428
12460
|
|
|
12429
12461
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
12430
12462
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -12437,6 +12469,10 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
12437
12469
|
will delete the record!
|
|
12438
12470
|
|
|
12439
12471
|
:default: false
|
|
12472
|
+
|
|
12473
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
12474
|
+
|
|
12475
|
+
:stability: deprecated
|
|
12440
12476
|
'''
|
|
12441
12477
|
result = self._values.get("delete_existing")
|
|
12442
12478
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -12621,7 +12657,7 @@ class CaaRecord(
|
|
|
12621
12657
|
:param zone: The hosted zone in which to define the new record.
|
|
12622
12658
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
12623
12659
|
:param comment: A comment to add on the record. Default: no comment
|
|
12624
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12660
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12625
12661
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
12626
12662
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
12627
12663
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -12702,7 +12738,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
12702
12738
|
:param zone: The hosted zone in which to define the new record.
|
|
12703
12739
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
12704
12740
|
:param comment: A comment to add on the record. Default: no comment
|
|
12705
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12741
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
12706
12742
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
12707
12743
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
12708
12744
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -12822,7 +12858,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
12822
12858
|
|
|
12823
12859
|
@builtins.property
|
|
12824
12860
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
12825
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12861
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
12826
12862
|
|
|
12827
12863
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
12828
12864
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -12835,6 +12871,10 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
12835
12871
|
will delete the record!
|
|
12836
12872
|
|
|
12837
12873
|
:default: false
|
|
12874
|
+
|
|
12875
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
12876
|
+
|
|
12877
|
+
:stability: deprecated
|
|
12838
12878
|
'''
|
|
12839
12879
|
result = self._values.get("delete_existing")
|
|
12840
12880
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -13027,7 +13067,7 @@ class CnameRecord(
|
|
|
13027
13067
|
:param zone: The hosted zone in which to define the new record.
|
|
13028
13068
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
13029
13069
|
:param comment: A comment to add on the record. Default: no comment
|
|
13030
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13070
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13031
13071
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
13032
13072
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
13033
13073
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -13108,7 +13148,7 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
13108
13148
|
:param zone: The hosted zone in which to define the new record.
|
|
13109
13149
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
13110
13150
|
:param comment: A comment to add on the record. Default: no comment
|
|
13111
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13151
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13112
13152
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
13113
13153
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
13114
13154
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -13229,7 +13269,7 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
13229
13269
|
|
|
13230
13270
|
@builtins.property
|
|
13231
13271
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
13232
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
13272
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
13233
13273
|
|
|
13234
13274
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
13235
13275
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -13242,6 +13282,10 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
13242
13282
|
will delete the record!
|
|
13243
13283
|
|
|
13244
13284
|
:default: false
|
|
13285
|
+
|
|
13286
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
13287
|
+
|
|
13288
|
+
:stability: deprecated
|
|
13245
13289
|
'''
|
|
13246
13290
|
result = self._values.get("delete_existing")
|
|
13247
13291
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -13412,7 +13456,7 @@ class DsRecord(
|
|
|
13412
13456
|
:param zone: The hosted zone in which to define the new record.
|
|
13413
13457
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
13414
13458
|
:param comment: A comment to add on the record. Default: no comment
|
|
13415
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13459
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13416
13460
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
13417
13461
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
13418
13462
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -13493,7 +13537,7 @@ class DsRecordProps(RecordSetOptions):
|
|
|
13493
13537
|
:param zone: The hosted zone in which to define the new record.
|
|
13494
13538
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
13495
13539
|
:param comment: A comment to add on the record. Default: no comment
|
|
13496
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13540
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
13497
13541
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
13498
13542
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
13499
13543
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -13592,7 +13636,7 @@ class DsRecordProps(RecordSetOptions):
|
|
|
13592
13636
|
|
|
13593
13637
|
@builtins.property
|
|
13594
13638
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
13595
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
13639
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
13596
13640
|
|
|
13597
13641
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
13598
13642
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -13605,6 +13649,10 @@ class DsRecordProps(RecordSetOptions):
|
|
|
13605
13649
|
will delete the record!
|
|
13606
13650
|
|
|
13607
13651
|
:default: false
|
|
13652
|
+
|
|
13653
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
13654
|
+
|
|
13655
|
+
:stability: deprecated
|
|
13608
13656
|
'''
|
|
13609
13657
|
result = self._values.get("delete_existing")
|
|
13610
13658
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -14183,7 +14231,7 @@ class MxRecord(
|
|
|
14183
14231
|
:param zone: The hosted zone in which to define the new record.
|
|
14184
14232
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
14185
14233
|
:param comment: A comment to add on the record. Default: no comment
|
|
14186
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14234
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14187
14235
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
14188
14236
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
14189
14237
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -14264,7 +14312,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
14264
14312
|
:param zone: The hosted zone in which to define the new record.
|
|
14265
14313
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
14266
14314
|
:param comment: A comment to add on the record. Default: no comment
|
|
14267
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14315
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14268
14316
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
14269
14317
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
14270
14318
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -14383,7 +14431,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
14383
14431
|
|
|
14384
14432
|
@builtins.property
|
|
14385
14433
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
14386
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
14434
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
14387
14435
|
|
|
14388
14436
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
14389
14437
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -14396,6 +14444,10 @@ class MxRecordProps(RecordSetOptions):
|
|
|
14396
14444
|
will delete the record!
|
|
14397
14445
|
|
|
14398
14446
|
:default: false
|
|
14447
|
+
|
|
14448
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
14449
|
+
|
|
14450
|
+
:stability: deprecated
|
|
14399
14451
|
'''
|
|
14400
14452
|
result = self._values.get("delete_existing")
|
|
14401
14453
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -14566,7 +14618,7 @@ class NsRecord(
|
|
|
14566
14618
|
:param zone: The hosted zone in which to define the new record.
|
|
14567
14619
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
14568
14620
|
:param comment: A comment to add on the record. Default: no comment
|
|
14569
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14621
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14570
14622
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
14571
14623
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
14572
14624
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -14647,7 +14699,7 @@ class NsRecordProps(RecordSetOptions):
|
|
|
14647
14699
|
:param zone: The hosted zone in which to define the new record.
|
|
14648
14700
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
14649
14701
|
:param comment: A comment to add on the record. Default: no comment
|
|
14650
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14702
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
14651
14703
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
14652
14704
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
14653
14705
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
@@ -14746,7 +14798,7 @@ class NsRecordProps(RecordSetOptions):
|
|
|
14746
14798
|
|
|
14747
14799
|
@builtins.property
|
|
14748
14800
|
def delete_existing(self) -> typing.Optional[builtins.bool]:
|
|
14749
|
-
'''Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
14801
|
+
'''(deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!).
|
|
14750
14802
|
|
|
14751
14803
|
This allows to deploy a new record set while minimizing the downtime because the
|
|
14752
14804
|
new record set will be created immediately after the existing one is deleted. It
|
|
@@ -14759,6 +14811,10 @@ class NsRecordProps(RecordSetOptions):
|
|
|
14759
14811
|
will delete the record!
|
|
14760
14812
|
|
|
14761
14813
|
:default: false
|
|
14814
|
+
|
|
14815
|
+
:deprecated: This property is dangerous and can lead to unintended record deletion in case of deployment failure.
|
|
14816
|
+
|
|
14817
|
+
:stability: deprecated
|
|
14762
14818
|
'''
|
|
14763
14819
|
result = self._values.get("delete_existing")
|
|
14764
14820
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
@@ -15213,7 +15269,7 @@ class CaaAmazonRecord(
|
|
|
15213
15269
|
:param zone: The hosted zone in which to define the new record.
|
|
15214
15270
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record. Default: - No CIDR routing configured
|
|
15215
15271
|
:param comment: A comment to add on the record. Default: no comment
|
|
15216
|
-
:param delete_existing: Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
15272
|
+
:param delete_existing: (deprecated) Whether to delete the same record set in the hosted zone if it already exists (dangerous!). This allows to deploy a new record set while minimizing the downtime because the new record set will be created immediately after the existing one is deleted. It also avoids "manual" actions to delete existing record sets. .. epigraph:: **N.B.:** this feature is dangerous, use with caution! It can only be used safely when ``deleteExisting`` is set to ``true`` as soon as the resource is added to the stack. Changing an existing Record Set's ``deleteExisting`` property from ``false -> true`` after deployment will delete the record! Default: false
|
|
15217
15273
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
15218
15274
|
:param health_check: The health check to associate with the record set. Route53 will return this record set in response to DNS queries only if the health check is passing. Default: - No health check configured
|
|
15219
15275
|
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|