aws-cdk-lib 2.126.0__py3-none-any.whl → 2.127.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +0 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.126.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +18 -6
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
- aws_cdk/aws_apigateway/__init__.py +7 -3
- aws_cdk/aws_appconfig/__init__.py +108 -19
- aws_cdk/aws_appsync/__init__.py +43 -0
- aws_cdk/aws_autoscaling/__init__.py +37 -14
- aws_cdk/aws_cassandra/__init__.py +810 -4
- aws_cdk/aws_cloudfront/__init__.py +35 -37
- aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
- aws_cdk/aws_codebuild/__init__.py +43 -3
- aws_cdk/aws_codecommit/__init__.py +1 -0
- aws_cdk/aws_codepipeline/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
- aws_cdk/aws_codestarnotifications/__init__.py +24 -15
- aws_cdk/aws_cognito/__init__.py +180 -116
- aws_cdk/aws_datasync/__init__.py +8 -4
- aws_cdk/aws_dynamodb/__init__.py +80 -11
- aws_cdk/aws_ec2/__init__.py +207 -45
- aws_cdk/aws_ecs/__init__.py +171 -78
- aws_cdk/aws_ecs_patterns/__init__.py +24 -0
- aws_cdk/aws_efs/__init__.py +64 -8
- aws_cdk/aws_eks/__init__.py +52 -41
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
- aws_cdk/aws_fis/__init__.py +32 -12
- aws_cdk/aws_fsx/__init__.py +61 -43
- aws_cdk/aws_glue/__init__.py +449 -0
- aws_cdk/aws_guardduty/__init__.py +0 -8
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_inspectorv2/__init__.py +989 -0
- aws_cdk/aws_internetmonitor/__init__.py +10 -12
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotwireless/__init__.py +32 -19
- aws_cdk/aws_lambda/__init__.py +129 -32
- aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
- aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
- aws_cdk/aws_location/__init__.py +8 -2
- aws_cdk/aws_logs/__init__.py +7 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +4 -4
- aws_cdk/aws_osis/__init__.py +13 -13
- aws_cdk/aws_personalize/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +7 -10
- aws_cdk/aws_rds/__init__.py +449 -8
- aws_cdk/aws_redshiftserverless/__init__.py +282 -0
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +282 -0
- aws_cdk/aws_s3/__init__.py +11 -6
- aws_cdk/aws_sagemaker/__init__.py +1398 -39
- aws_cdk/aws_sns/__init__.py +56 -13
- aws_cdk/aws_sqs/__init__.py +13 -10
- aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
- aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
- aws_cdk/aws_transfer/__init__.py +1 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
- aws_cdk/aws_workspacesweb/__init__.py +6 -3
- aws_cdk/cx_api/__init__.py +17 -0
- aws_cdk/triggers/__init__.py +21 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
- aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_route53/__init__.py
CHANGED
|
@@ -179,6 +179,19 @@ route53.ARecord(self, "ARecordLatency1",
|
|
|
179
179
|
)
|
|
180
180
|
```
|
|
181
181
|
|
|
182
|
+
To enable [multivalue answer routing](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy-multivalue.html), use the `multivalueAnswer` parameter:
|
|
183
|
+
|
|
184
|
+
```python
|
|
185
|
+
# my_zone: route53.HostedZone
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
route53.ARecord(self, "ARecordMultiValue1",
|
|
189
|
+
zone=my_zone,
|
|
190
|
+
target=route53.RecordTarget.from_ip_addresses("1.2.3.4"),
|
|
191
|
+
multi_value_answer=True
|
|
192
|
+
)
|
|
193
|
+
```
|
|
194
|
+
|
|
182
195
|
To specify a unique identifier to differentiate among multiple resource record sets that have the same combination of name and type, use the `setIdentifier` parameter:
|
|
183
196
|
|
|
184
197
|
```python
|
|
@@ -6908,6 +6921,7 @@ class RecordSet(
|
|
|
6908
6921
|
comment="comment",
|
|
6909
6922
|
delete_existing=False,
|
|
6910
6923
|
geo_location=geo_location,
|
|
6924
|
+
multi_value_answer=False,
|
|
6911
6925
|
record_name="recordName",
|
|
6912
6926
|
region="region",
|
|
6913
6927
|
set_identifier="setIdentifier",
|
|
@@ -6927,6 +6941,7 @@ class RecordSet(
|
|
|
6927
6941
|
comment: typing.Optional[builtins.str] = None,
|
|
6928
6942
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
6929
6943
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
6944
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
6930
6945
|
record_name: typing.Optional[builtins.str] = None,
|
|
6931
6946
|
region: typing.Optional[builtins.str] = None,
|
|
6932
6947
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -6942,6 +6957,7 @@ class RecordSet(
|
|
|
6942
6957
|
:param comment: A comment to add on the record. Default: no comment
|
|
6943
6958
|
: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
|
|
6944
6959
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
6960
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
6945
6961
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
6946
6962
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
6947
6963
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -6959,6 +6975,7 @@ class RecordSet(
|
|
|
6959
6975
|
comment=comment,
|
|
6960
6976
|
delete_existing=delete_existing,
|
|
6961
6977
|
geo_location=geo_location,
|
|
6978
|
+
multi_value_answer=multi_value_answer,
|
|
6962
6979
|
record_name=record_name,
|
|
6963
6980
|
region=region,
|
|
6964
6981
|
set_identifier=set_identifier,
|
|
@@ -6983,6 +7000,7 @@ class RecordSet(
|
|
|
6983
7000
|
"comment": "comment",
|
|
6984
7001
|
"delete_existing": "deleteExisting",
|
|
6985
7002
|
"geo_location": "geoLocation",
|
|
7003
|
+
"multi_value_answer": "multiValueAnswer",
|
|
6986
7004
|
"record_name": "recordName",
|
|
6987
7005
|
"region": "region",
|
|
6988
7006
|
"set_identifier": "setIdentifier",
|
|
@@ -6998,6 +7016,7 @@ class RecordSetOptions:
|
|
|
6998
7016
|
comment: typing.Optional[builtins.str] = None,
|
|
6999
7017
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
7000
7018
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
7019
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
7001
7020
|
record_name: typing.Optional[builtins.str] = None,
|
|
7002
7021
|
region: typing.Optional[builtins.str] = None,
|
|
7003
7022
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -7010,6 +7029,7 @@ class RecordSetOptions:
|
|
|
7010
7029
|
:param comment: A comment to add on the record. Default: no comment
|
|
7011
7030
|
: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
|
|
7012
7031
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
7032
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
7013
7033
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
7014
7034
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
7015
7035
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -7035,6 +7055,7 @@ class RecordSetOptions:
|
|
|
7035
7055
|
comment="comment",
|
|
7036
7056
|
delete_existing=False,
|
|
7037
7057
|
geo_location=geo_location,
|
|
7058
|
+
multi_value_answer=False,
|
|
7038
7059
|
record_name="recordName",
|
|
7039
7060
|
region="region",
|
|
7040
7061
|
set_identifier="setIdentifier",
|
|
@@ -7048,6 +7069,7 @@ class RecordSetOptions:
|
|
|
7048
7069
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
7049
7070
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
7050
7071
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
7072
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
7051
7073
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
7052
7074
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
7053
7075
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -7062,6 +7084,8 @@ class RecordSetOptions:
|
|
|
7062
7084
|
self._values["delete_existing"] = delete_existing
|
|
7063
7085
|
if geo_location is not None:
|
|
7064
7086
|
self._values["geo_location"] = geo_location
|
|
7087
|
+
if multi_value_answer is not None:
|
|
7088
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
7065
7089
|
if record_name is not None:
|
|
7066
7090
|
self._values["record_name"] = record_name
|
|
7067
7091
|
if region is not None:
|
|
@@ -7114,6 +7138,15 @@ class RecordSetOptions:
|
|
|
7114
7138
|
result = self._values.get("geo_location")
|
|
7115
7139
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
7116
7140
|
|
|
7141
|
+
@builtins.property
|
|
7142
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
7143
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
7144
|
+
|
|
7145
|
+
:default: false
|
|
7146
|
+
'''
|
|
7147
|
+
result = self._values.get("multi_value_answer")
|
|
7148
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
7149
|
+
|
|
7117
7150
|
@builtins.property
|
|
7118
7151
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
7119
7152
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -7205,6 +7238,7 @@ class RecordSetOptions:
|
|
|
7205
7238
|
"comment": "comment",
|
|
7206
7239
|
"delete_existing": "deleteExisting",
|
|
7207
7240
|
"geo_location": "geoLocation",
|
|
7241
|
+
"multi_value_answer": "multiValueAnswer",
|
|
7208
7242
|
"record_name": "recordName",
|
|
7209
7243
|
"region": "region",
|
|
7210
7244
|
"set_identifier": "setIdentifier",
|
|
@@ -7222,6 +7256,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7222
7256
|
comment: typing.Optional[builtins.str] = None,
|
|
7223
7257
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
7224
7258
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
7259
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
7225
7260
|
record_name: typing.Optional[builtins.str] = None,
|
|
7226
7261
|
region: typing.Optional[builtins.str] = None,
|
|
7227
7262
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -7236,6 +7271,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7236
7271
|
:param comment: A comment to add on the record. Default: no comment
|
|
7237
7272
|
: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
|
|
7238
7273
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
7274
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
7239
7275
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
7240
7276
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
7241
7277
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -7266,6 +7302,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7266
7302
|
comment="comment",
|
|
7267
7303
|
delete_existing=False,
|
|
7268
7304
|
geo_location=geo_location,
|
|
7305
|
+
multi_value_answer=False,
|
|
7269
7306
|
record_name="recordName",
|
|
7270
7307
|
region="region",
|
|
7271
7308
|
set_identifier="setIdentifier",
|
|
@@ -7279,6 +7316,7 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7279
7316
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
7280
7317
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
7281
7318
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
7319
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
7282
7320
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
7283
7321
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
7284
7322
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -7297,6 +7335,8 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7297
7335
|
self._values["delete_existing"] = delete_existing
|
|
7298
7336
|
if geo_location is not None:
|
|
7299
7337
|
self._values["geo_location"] = geo_location
|
|
7338
|
+
if multi_value_answer is not None:
|
|
7339
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
7300
7340
|
if record_name is not None:
|
|
7301
7341
|
self._values["record_name"] = record_name
|
|
7302
7342
|
if region is not None:
|
|
@@ -7349,6 +7389,15 @@ class RecordSetProps(RecordSetOptions):
|
|
|
7349
7389
|
result = self._values.get("geo_location")
|
|
7350
7390
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
7351
7391
|
|
|
7392
|
+
@builtins.property
|
|
7393
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
7394
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
7395
|
+
|
|
7396
|
+
:default: false
|
|
7397
|
+
'''
|
|
7398
|
+
result = self._values.get("multi_value_answer")
|
|
7399
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
7400
|
+
|
|
7352
7401
|
@builtins.property
|
|
7353
7402
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
7354
7403
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -7642,6 +7691,7 @@ class SrvRecord(
|
|
|
7642
7691
|
comment="comment",
|
|
7643
7692
|
delete_existing=False,
|
|
7644
7693
|
geo_location=geo_location,
|
|
7694
|
+
multi_value_answer=False,
|
|
7645
7695
|
record_name="recordName",
|
|
7646
7696
|
region="region",
|
|
7647
7697
|
set_identifier="setIdentifier",
|
|
@@ -7660,6 +7710,7 @@ class SrvRecord(
|
|
|
7660
7710
|
comment: typing.Optional[builtins.str] = None,
|
|
7661
7711
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
7662
7712
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
7713
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
7663
7714
|
record_name: typing.Optional[builtins.str] = None,
|
|
7664
7715
|
region: typing.Optional[builtins.str] = None,
|
|
7665
7716
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -7674,6 +7725,7 @@ class SrvRecord(
|
|
|
7674
7725
|
:param comment: A comment to add on the record. Default: no comment
|
|
7675
7726
|
: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
|
|
7676
7727
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
7728
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
7677
7729
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
7678
7730
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
7679
7731
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -7690,6 +7742,7 @@ class SrvRecord(
|
|
|
7690
7742
|
comment=comment,
|
|
7691
7743
|
delete_existing=delete_existing,
|
|
7692
7744
|
geo_location=geo_location,
|
|
7745
|
+
multi_value_answer=multi_value_answer,
|
|
7693
7746
|
record_name=record_name,
|
|
7694
7747
|
region=region,
|
|
7695
7748
|
set_identifier=set_identifier,
|
|
@@ -7708,6 +7761,7 @@ class SrvRecord(
|
|
|
7708
7761
|
"comment": "comment",
|
|
7709
7762
|
"delete_existing": "deleteExisting",
|
|
7710
7763
|
"geo_location": "geoLocation",
|
|
7764
|
+
"multi_value_answer": "multiValueAnswer",
|
|
7711
7765
|
"record_name": "recordName",
|
|
7712
7766
|
"region": "region",
|
|
7713
7767
|
"set_identifier": "setIdentifier",
|
|
@@ -7724,6 +7778,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7724
7778
|
comment: typing.Optional[builtins.str] = None,
|
|
7725
7779
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
7726
7780
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
7781
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
7727
7782
|
record_name: typing.Optional[builtins.str] = None,
|
|
7728
7783
|
region: typing.Optional[builtins.str] = None,
|
|
7729
7784
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -7737,6 +7792,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7737
7792
|
:param comment: A comment to add on the record. Default: no comment
|
|
7738
7793
|
: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
|
|
7739
7794
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
7795
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
7740
7796
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
7741
7797
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
7742
7798
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -7769,6 +7825,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7769
7825
|
comment="comment",
|
|
7770
7826
|
delete_existing=False,
|
|
7771
7827
|
geo_location=geo_location,
|
|
7828
|
+
multi_value_answer=False,
|
|
7772
7829
|
record_name="recordName",
|
|
7773
7830
|
region="region",
|
|
7774
7831
|
set_identifier="setIdentifier",
|
|
@@ -7782,6 +7839,7 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7782
7839
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
7783
7840
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
7784
7841
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
7842
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
7785
7843
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
7786
7844
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
7787
7845
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -7798,6 +7856,8 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7798
7856
|
self._values["delete_existing"] = delete_existing
|
|
7799
7857
|
if geo_location is not None:
|
|
7800
7858
|
self._values["geo_location"] = geo_location
|
|
7859
|
+
if multi_value_answer is not None:
|
|
7860
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
7801
7861
|
if record_name is not None:
|
|
7802
7862
|
self._values["record_name"] = record_name
|
|
7803
7863
|
if region is not None:
|
|
@@ -7850,6 +7910,15 @@ class SrvRecordProps(RecordSetOptions):
|
|
|
7850
7910
|
result = self._values.get("geo_location")
|
|
7851
7911
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
7852
7912
|
|
|
7913
|
+
@builtins.property
|
|
7914
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
7915
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
7916
|
+
|
|
7917
|
+
:default: false
|
|
7918
|
+
'''
|
|
7919
|
+
result = self._values.get("multi_value_answer")
|
|
7920
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
7921
|
+
|
|
7853
7922
|
@builtins.property
|
|
7854
7923
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
7855
7924
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -8070,6 +8139,7 @@ class TxtRecord(
|
|
|
8070
8139
|
comment: typing.Optional[builtins.str] = None,
|
|
8071
8140
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8072
8141
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
8142
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8073
8143
|
record_name: typing.Optional[builtins.str] = None,
|
|
8074
8144
|
region: typing.Optional[builtins.str] = None,
|
|
8075
8145
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8084,6 +8154,7 @@ class TxtRecord(
|
|
|
8084
8154
|
:param comment: A comment to add on the record. Default: no comment
|
|
8085
8155
|
: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
|
|
8086
8156
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8157
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8087
8158
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8088
8159
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8089
8160
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -8100,6 +8171,7 @@ class TxtRecord(
|
|
|
8100
8171
|
comment=comment,
|
|
8101
8172
|
delete_existing=delete_existing,
|
|
8102
8173
|
geo_location=geo_location,
|
|
8174
|
+
multi_value_answer=multi_value_answer,
|
|
8103
8175
|
record_name=record_name,
|
|
8104
8176
|
region=region,
|
|
8105
8177
|
set_identifier=set_identifier,
|
|
@@ -8118,6 +8190,7 @@ class TxtRecord(
|
|
|
8118
8190
|
"comment": "comment",
|
|
8119
8191
|
"delete_existing": "deleteExisting",
|
|
8120
8192
|
"geo_location": "geoLocation",
|
|
8193
|
+
"multi_value_answer": "multiValueAnswer",
|
|
8121
8194
|
"record_name": "recordName",
|
|
8122
8195
|
"region": "region",
|
|
8123
8196
|
"set_identifier": "setIdentifier",
|
|
@@ -8134,6 +8207,7 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
8134
8207
|
comment: typing.Optional[builtins.str] = None,
|
|
8135
8208
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8136
8209
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
8210
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8137
8211
|
record_name: typing.Optional[builtins.str] = None,
|
|
8138
8212
|
region: typing.Optional[builtins.str] = None,
|
|
8139
8213
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8147,6 +8221,7 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
8147
8221
|
:param comment: A comment to add on the record. Default: no comment
|
|
8148
8222
|
: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
|
|
8149
8223
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8224
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8150
8225
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8151
8226
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8152
8227
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -8177,6 +8252,7 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
8177
8252
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
8178
8253
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
8179
8254
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
8255
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
8180
8256
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
8181
8257
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
8182
8258
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -8193,6 +8269,8 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
8193
8269
|
self._values["delete_existing"] = delete_existing
|
|
8194
8270
|
if geo_location is not None:
|
|
8195
8271
|
self._values["geo_location"] = geo_location
|
|
8272
|
+
if multi_value_answer is not None:
|
|
8273
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
8196
8274
|
if record_name is not None:
|
|
8197
8275
|
self._values["record_name"] = record_name
|
|
8198
8276
|
if region is not None:
|
|
@@ -8245,6 +8323,15 @@ class TxtRecordProps(RecordSetOptions):
|
|
|
8245
8323
|
result = self._values.get("geo_location")
|
|
8246
8324
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
8247
8325
|
|
|
8326
|
+
@builtins.property
|
|
8327
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
8328
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
8329
|
+
|
|
8330
|
+
:default: false
|
|
8331
|
+
'''
|
|
8332
|
+
result = self._values.get("multi_value_answer")
|
|
8333
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
8334
|
+
|
|
8248
8335
|
@builtins.property
|
|
8249
8336
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
8250
8337
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -8587,6 +8674,7 @@ class ZoneDelegationRecord(
|
|
|
8587
8674
|
comment="comment",
|
|
8588
8675
|
delete_existing=False,
|
|
8589
8676
|
geo_location=geo_location,
|
|
8677
|
+
multi_value_answer=False,
|
|
8590
8678
|
record_name="recordName",
|
|
8591
8679
|
region="region",
|
|
8592
8680
|
set_identifier="setIdentifier",
|
|
@@ -8605,6 +8693,7 @@ class ZoneDelegationRecord(
|
|
|
8605
8693
|
comment: typing.Optional[builtins.str] = None,
|
|
8606
8694
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8607
8695
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
8696
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8608
8697
|
record_name: typing.Optional[builtins.str] = None,
|
|
8609
8698
|
region: typing.Optional[builtins.str] = None,
|
|
8610
8699
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8619,6 +8708,7 @@ class ZoneDelegationRecord(
|
|
|
8619
8708
|
:param comment: A comment to add on the record. Default: no comment
|
|
8620
8709
|
: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
|
|
8621
8710
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8711
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8622
8712
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8623
8713
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8624
8714
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -8635,6 +8725,7 @@ class ZoneDelegationRecord(
|
|
|
8635
8725
|
comment=comment,
|
|
8636
8726
|
delete_existing=delete_existing,
|
|
8637
8727
|
geo_location=geo_location,
|
|
8728
|
+
multi_value_answer=multi_value_answer,
|
|
8638
8729
|
record_name=record_name,
|
|
8639
8730
|
region=region,
|
|
8640
8731
|
set_identifier=set_identifier,
|
|
@@ -8653,6 +8744,7 @@ class ZoneDelegationRecord(
|
|
|
8653
8744
|
"comment": "comment",
|
|
8654
8745
|
"delete_existing": "deleteExisting",
|
|
8655
8746
|
"geo_location": "geoLocation",
|
|
8747
|
+
"multi_value_answer": "multiValueAnswer",
|
|
8656
8748
|
"record_name": "recordName",
|
|
8657
8749
|
"region": "region",
|
|
8658
8750
|
"set_identifier": "setIdentifier",
|
|
@@ -8669,6 +8761,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8669
8761
|
comment: typing.Optional[builtins.str] = None,
|
|
8670
8762
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8671
8763
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
8764
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8672
8765
|
record_name: typing.Optional[builtins.str] = None,
|
|
8673
8766
|
region: typing.Optional[builtins.str] = None,
|
|
8674
8767
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8682,6 +8775,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8682
8775
|
:param comment: A comment to add on the record. Default: no comment
|
|
8683
8776
|
: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
|
|
8684
8777
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
8778
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8685
8779
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8686
8780
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8687
8781
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -8709,6 +8803,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8709
8803
|
comment="comment",
|
|
8710
8804
|
delete_existing=False,
|
|
8711
8805
|
geo_location=geo_location,
|
|
8806
|
+
multi_value_answer=False,
|
|
8712
8807
|
record_name="recordName",
|
|
8713
8808
|
region="region",
|
|
8714
8809
|
set_identifier="setIdentifier",
|
|
@@ -8722,6 +8817,7 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8722
8817
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
8723
8818
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
8724
8819
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
8820
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
8725
8821
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
8726
8822
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
8727
8823
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -8738,6 +8834,8 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8738
8834
|
self._values["delete_existing"] = delete_existing
|
|
8739
8835
|
if geo_location is not None:
|
|
8740
8836
|
self._values["geo_location"] = geo_location
|
|
8837
|
+
if multi_value_answer is not None:
|
|
8838
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
8741
8839
|
if record_name is not None:
|
|
8742
8840
|
self._values["record_name"] = record_name
|
|
8743
8841
|
if region is not None:
|
|
@@ -8790,6 +8888,15 @@ class ZoneDelegationRecordProps(RecordSetOptions):
|
|
|
8790
8888
|
result = self._values.get("geo_location")
|
|
8791
8889
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
8792
8890
|
|
|
8891
|
+
@builtins.property
|
|
8892
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
8893
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
8894
|
+
|
|
8895
|
+
:default: false
|
|
8896
|
+
'''
|
|
8897
|
+
result = self._values.get("multi_value_answer")
|
|
8898
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
8899
|
+
|
|
8793
8900
|
@builtins.property
|
|
8794
8901
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
8795
8902
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -8914,6 +9021,7 @@ class ARecord(
|
|
|
8914
9021
|
comment: typing.Optional[builtins.str] = None,
|
|
8915
9022
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8916
9023
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9024
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8917
9025
|
record_name: typing.Optional[builtins.str] = None,
|
|
8918
9026
|
region: typing.Optional[builtins.str] = None,
|
|
8919
9027
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8928,6 +9036,7 @@ class ARecord(
|
|
|
8928
9036
|
:param comment: A comment to add on the record. Default: no comment
|
|
8929
9037
|
: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
|
|
8930
9038
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9039
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8931
9040
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8932
9041
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8933
9042
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -8944,6 +9053,7 @@ class ARecord(
|
|
|
8944
9053
|
comment=comment,
|
|
8945
9054
|
delete_existing=delete_existing,
|
|
8946
9055
|
geo_location=geo_location,
|
|
9056
|
+
multi_value_answer=multi_value_answer,
|
|
8947
9057
|
record_name=record_name,
|
|
8948
9058
|
region=region,
|
|
8949
9059
|
set_identifier=set_identifier,
|
|
@@ -8962,6 +9072,7 @@ class ARecord(
|
|
|
8962
9072
|
"comment": "comment",
|
|
8963
9073
|
"delete_existing": "deleteExisting",
|
|
8964
9074
|
"geo_location": "geoLocation",
|
|
9075
|
+
"multi_value_answer": "multiValueAnswer",
|
|
8965
9076
|
"record_name": "recordName",
|
|
8966
9077
|
"region": "region",
|
|
8967
9078
|
"set_identifier": "setIdentifier",
|
|
@@ -8978,6 +9089,7 @@ class ARecordProps(RecordSetOptions):
|
|
|
8978
9089
|
comment: typing.Optional[builtins.str] = None,
|
|
8979
9090
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
8980
9091
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9092
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
8981
9093
|
record_name: typing.Optional[builtins.str] = None,
|
|
8982
9094
|
region: typing.Optional[builtins.str] = None,
|
|
8983
9095
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -8991,6 +9103,7 @@ class ARecordProps(RecordSetOptions):
|
|
|
8991
9103
|
:param comment: A comment to add on the record. Default: no comment
|
|
8992
9104
|
: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
|
|
8993
9105
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9106
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
8994
9107
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
8995
9108
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
8996
9109
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9019,6 +9132,7 @@ class ARecordProps(RecordSetOptions):
|
|
|
9019
9132
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
9020
9133
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
9021
9134
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
9135
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
9022
9136
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
9023
9137
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
9024
9138
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -9035,6 +9149,8 @@ class ARecordProps(RecordSetOptions):
|
|
|
9035
9149
|
self._values["delete_existing"] = delete_existing
|
|
9036
9150
|
if geo_location is not None:
|
|
9037
9151
|
self._values["geo_location"] = geo_location
|
|
9152
|
+
if multi_value_answer is not None:
|
|
9153
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
9038
9154
|
if record_name is not None:
|
|
9039
9155
|
self._values["record_name"] = record_name
|
|
9040
9156
|
if region is not None:
|
|
@@ -9087,6 +9203,15 @@ class ARecordProps(RecordSetOptions):
|
|
|
9087
9203
|
result = self._values.get("geo_location")
|
|
9088
9204
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
9089
9205
|
|
|
9206
|
+
@builtins.property
|
|
9207
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
9208
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
9209
|
+
|
|
9210
|
+
:default: false
|
|
9211
|
+
'''
|
|
9212
|
+
result = self._values.get("multi_value_answer")
|
|
9213
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
9214
|
+
|
|
9090
9215
|
@builtins.property
|
|
9091
9216
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
9092
9217
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -9210,6 +9335,7 @@ class AaaaRecord(
|
|
|
9210
9335
|
comment: typing.Optional[builtins.str] = None,
|
|
9211
9336
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
9212
9337
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9338
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
9213
9339
|
record_name: typing.Optional[builtins.str] = None,
|
|
9214
9340
|
region: typing.Optional[builtins.str] = None,
|
|
9215
9341
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -9224,6 +9350,7 @@ class AaaaRecord(
|
|
|
9224
9350
|
:param comment: A comment to add on the record. Default: no comment
|
|
9225
9351
|
: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
|
|
9226
9352
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9353
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
9227
9354
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
9228
9355
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
9229
9356
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9240,6 +9367,7 @@ class AaaaRecord(
|
|
|
9240
9367
|
comment=comment,
|
|
9241
9368
|
delete_existing=delete_existing,
|
|
9242
9369
|
geo_location=geo_location,
|
|
9370
|
+
multi_value_answer=multi_value_answer,
|
|
9243
9371
|
record_name=record_name,
|
|
9244
9372
|
region=region,
|
|
9245
9373
|
set_identifier=set_identifier,
|
|
@@ -9258,6 +9386,7 @@ class AaaaRecord(
|
|
|
9258
9386
|
"comment": "comment",
|
|
9259
9387
|
"delete_existing": "deleteExisting",
|
|
9260
9388
|
"geo_location": "geoLocation",
|
|
9389
|
+
"multi_value_answer": "multiValueAnswer",
|
|
9261
9390
|
"record_name": "recordName",
|
|
9262
9391
|
"region": "region",
|
|
9263
9392
|
"set_identifier": "setIdentifier",
|
|
@@ -9274,6 +9403,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9274
9403
|
comment: typing.Optional[builtins.str] = None,
|
|
9275
9404
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
9276
9405
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9406
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
9277
9407
|
record_name: typing.Optional[builtins.str] = None,
|
|
9278
9408
|
region: typing.Optional[builtins.str] = None,
|
|
9279
9409
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -9287,6 +9417,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9287
9417
|
:param comment: A comment to add on the record. Default: no comment
|
|
9288
9418
|
: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
|
|
9289
9419
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9420
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
9290
9421
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
9291
9422
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
9292
9423
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9314,6 +9445,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9314
9445
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
9315
9446
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
9316
9447
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
9448
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
9317
9449
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
9318
9450
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
9319
9451
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -9330,6 +9462,8 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9330
9462
|
self._values["delete_existing"] = delete_existing
|
|
9331
9463
|
if geo_location is not None:
|
|
9332
9464
|
self._values["geo_location"] = geo_location
|
|
9465
|
+
if multi_value_answer is not None:
|
|
9466
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
9333
9467
|
if record_name is not None:
|
|
9334
9468
|
self._values["record_name"] = record_name
|
|
9335
9469
|
if region is not None:
|
|
@@ -9382,6 +9516,15 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9382
9516
|
result = self._values.get("geo_location")
|
|
9383
9517
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
9384
9518
|
|
|
9519
|
+
@builtins.property
|
|
9520
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
9521
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
9522
|
+
|
|
9523
|
+
:default: false
|
|
9524
|
+
'''
|
|
9525
|
+
result = self._values.get("multi_value_answer")
|
|
9526
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
9527
|
+
|
|
9385
9528
|
@builtins.property
|
|
9386
9529
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
9387
9530
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -9480,6 +9623,7 @@ class AaaaRecordProps(RecordSetOptions):
|
|
|
9480
9623
|
"comment": "comment",
|
|
9481
9624
|
"delete_existing": "deleteExisting",
|
|
9482
9625
|
"geo_location": "geoLocation",
|
|
9626
|
+
"multi_value_answer": "multiValueAnswer",
|
|
9483
9627
|
"record_name": "recordName",
|
|
9484
9628
|
"region": "region",
|
|
9485
9629
|
"set_identifier": "setIdentifier",
|
|
@@ -9495,6 +9639,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9495
9639
|
comment: typing.Optional[builtins.str] = None,
|
|
9496
9640
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
9497
9641
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9642
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
9498
9643
|
record_name: typing.Optional[builtins.str] = None,
|
|
9499
9644
|
region: typing.Optional[builtins.str] = None,
|
|
9500
9645
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -9507,6 +9652,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9507
9652
|
:param comment: A comment to add on the record. Default: no comment
|
|
9508
9653
|
: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
|
|
9509
9654
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9655
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
9510
9656
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
9511
9657
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
9512
9658
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9532,6 +9678,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9532
9678
|
comment="comment",
|
|
9533
9679
|
delete_existing=False,
|
|
9534
9680
|
geo_location=geo_location,
|
|
9681
|
+
multi_value_answer=False,
|
|
9535
9682
|
record_name="recordName",
|
|
9536
9683
|
region="region",
|
|
9537
9684
|
set_identifier="setIdentifier",
|
|
@@ -9545,6 +9692,7 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9545
9692
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
9546
9693
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
9547
9694
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
9695
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
9548
9696
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
9549
9697
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
9550
9698
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -9559,6 +9707,8 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9559
9707
|
self._values["delete_existing"] = delete_existing
|
|
9560
9708
|
if geo_location is not None:
|
|
9561
9709
|
self._values["geo_location"] = geo_location
|
|
9710
|
+
if multi_value_answer is not None:
|
|
9711
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
9562
9712
|
if record_name is not None:
|
|
9563
9713
|
self._values["record_name"] = record_name
|
|
9564
9714
|
if region is not None:
|
|
@@ -9611,6 +9761,15 @@ class CaaAmazonRecordProps(RecordSetOptions):
|
|
|
9611
9761
|
result = self._values.get("geo_location")
|
|
9612
9762
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
9613
9763
|
|
|
9764
|
+
@builtins.property
|
|
9765
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
9766
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
9767
|
+
|
|
9768
|
+
:default: false
|
|
9769
|
+
'''
|
|
9770
|
+
result = self._values.get("multi_value_answer")
|
|
9771
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
9772
|
+
|
|
9614
9773
|
@builtins.property
|
|
9615
9774
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
9616
9775
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -9726,6 +9885,7 @@ class CaaRecord(
|
|
|
9726
9885
|
comment="comment",
|
|
9727
9886
|
delete_existing=False,
|
|
9728
9887
|
geo_location=geo_location,
|
|
9888
|
+
multi_value_answer=False,
|
|
9729
9889
|
record_name="recordName",
|
|
9730
9890
|
region="region",
|
|
9731
9891
|
set_identifier="setIdentifier",
|
|
@@ -9744,6 +9904,7 @@ class CaaRecord(
|
|
|
9744
9904
|
comment: typing.Optional[builtins.str] = None,
|
|
9745
9905
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
9746
9906
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9907
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
9747
9908
|
record_name: typing.Optional[builtins.str] = None,
|
|
9748
9909
|
region: typing.Optional[builtins.str] = None,
|
|
9749
9910
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -9758,6 +9919,7 @@ class CaaRecord(
|
|
|
9758
9919
|
:param comment: A comment to add on the record. Default: no comment
|
|
9759
9920
|
: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
|
|
9760
9921
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9922
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
9761
9923
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
9762
9924
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
9763
9925
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9774,6 +9936,7 @@ class CaaRecord(
|
|
|
9774
9936
|
comment=comment,
|
|
9775
9937
|
delete_existing=delete_existing,
|
|
9776
9938
|
geo_location=geo_location,
|
|
9939
|
+
multi_value_answer=multi_value_answer,
|
|
9777
9940
|
record_name=record_name,
|
|
9778
9941
|
region=region,
|
|
9779
9942
|
set_identifier=set_identifier,
|
|
@@ -9792,6 +9955,7 @@ class CaaRecord(
|
|
|
9792
9955
|
"comment": "comment",
|
|
9793
9956
|
"delete_existing": "deleteExisting",
|
|
9794
9957
|
"geo_location": "geoLocation",
|
|
9958
|
+
"multi_value_answer": "multiValueAnswer",
|
|
9795
9959
|
"record_name": "recordName",
|
|
9796
9960
|
"region": "region",
|
|
9797
9961
|
"set_identifier": "setIdentifier",
|
|
@@ -9808,6 +9972,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9808
9972
|
comment: typing.Optional[builtins.str] = None,
|
|
9809
9973
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
9810
9974
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
9975
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
9811
9976
|
record_name: typing.Optional[builtins.str] = None,
|
|
9812
9977
|
region: typing.Optional[builtins.str] = None,
|
|
9813
9978
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -9821,6 +9986,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9821
9986
|
:param comment: A comment to add on the record. Default: no comment
|
|
9822
9987
|
: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
|
|
9823
9988
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
9989
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
9824
9990
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
9825
9991
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
9826
9992
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -9852,6 +10018,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9852
10018
|
comment="comment",
|
|
9853
10019
|
delete_existing=False,
|
|
9854
10020
|
geo_location=geo_location,
|
|
10021
|
+
multi_value_answer=False,
|
|
9855
10022
|
record_name="recordName",
|
|
9856
10023
|
region="region",
|
|
9857
10024
|
set_identifier="setIdentifier",
|
|
@@ -9865,6 +10032,7 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9865
10032
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
9866
10033
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
9867
10034
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
10035
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
9868
10036
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
9869
10037
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
9870
10038
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -9881,6 +10049,8 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9881
10049
|
self._values["delete_existing"] = delete_existing
|
|
9882
10050
|
if geo_location is not None:
|
|
9883
10051
|
self._values["geo_location"] = geo_location
|
|
10052
|
+
if multi_value_answer is not None:
|
|
10053
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
9884
10054
|
if record_name is not None:
|
|
9885
10055
|
self._values["record_name"] = record_name
|
|
9886
10056
|
if region is not None:
|
|
@@ -9933,6 +10103,15 @@ class CaaRecordProps(RecordSetOptions):
|
|
|
9933
10103
|
result = self._values.get("geo_location")
|
|
9934
10104
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
9935
10105
|
|
|
10106
|
+
@builtins.property
|
|
10107
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
10108
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
10109
|
+
|
|
10110
|
+
:default: false
|
|
10111
|
+
'''
|
|
10112
|
+
result = self._values.get("multi_value_answer")
|
|
10113
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
10114
|
+
|
|
9936
10115
|
@builtins.property
|
|
9937
10116
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
9938
10117
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -10079,6 +10258,7 @@ class CnameRecord(
|
|
|
10079
10258
|
comment: typing.Optional[builtins.str] = None,
|
|
10080
10259
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10081
10260
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
10261
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10082
10262
|
record_name: typing.Optional[builtins.str] = None,
|
|
10083
10263
|
region: typing.Optional[builtins.str] = None,
|
|
10084
10264
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10093,6 +10273,7 @@ class CnameRecord(
|
|
|
10093
10273
|
:param comment: A comment to add on the record. Default: no comment
|
|
10094
10274
|
: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
|
|
10095
10275
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10276
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10096
10277
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10097
10278
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10098
10279
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -10109,6 +10290,7 @@ class CnameRecord(
|
|
|
10109
10290
|
comment=comment,
|
|
10110
10291
|
delete_existing=delete_existing,
|
|
10111
10292
|
geo_location=geo_location,
|
|
10293
|
+
multi_value_answer=multi_value_answer,
|
|
10112
10294
|
record_name=record_name,
|
|
10113
10295
|
region=region,
|
|
10114
10296
|
set_identifier=set_identifier,
|
|
@@ -10127,6 +10309,7 @@ class CnameRecord(
|
|
|
10127
10309
|
"comment": "comment",
|
|
10128
10310
|
"delete_existing": "deleteExisting",
|
|
10129
10311
|
"geo_location": "geoLocation",
|
|
10312
|
+
"multi_value_answer": "multiValueAnswer",
|
|
10130
10313
|
"record_name": "recordName",
|
|
10131
10314
|
"region": "region",
|
|
10132
10315
|
"set_identifier": "setIdentifier",
|
|
@@ -10143,6 +10326,7 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
10143
10326
|
comment: typing.Optional[builtins.str] = None,
|
|
10144
10327
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10145
10328
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
10329
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10146
10330
|
record_name: typing.Optional[builtins.str] = None,
|
|
10147
10331
|
region: typing.Optional[builtins.str] = None,
|
|
10148
10332
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10156,6 +10340,7 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
10156
10340
|
:param comment: A comment to add on the record. Default: no comment
|
|
10157
10341
|
: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
|
|
10158
10342
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10343
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10159
10344
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10160
10345
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10161
10346
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -10206,6 +10391,7 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
10206
10391
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
10207
10392
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
10208
10393
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
10394
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
10209
10395
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
10210
10396
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
10211
10397
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -10222,6 +10408,8 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
10222
10408
|
self._values["delete_existing"] = delete_existing
|
|
10223
10409
|
if geo_location is not None:
|
|
10224
10410
|
self._values["geo_location"] = geo_location
|
|
10411
|
+
if multi_value_answer is not None:
|
|
10412
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
10225
10413
|
if record_name is not None:
|
|
10226
10414
|
self._values["record_name"] = record_name
|
|
10227
10415
|
if region is not None:
|
|
@@ -10274,6 +10462,15 @@ class CnameRecordProps(RecordSetOptions):
|
|
|
10274
10462
|
result = self._values.get("geo_location")
|
|
10275
10463
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
10276
10464
|
|
|
10465
|
+
@builtins.property
|
|
10466
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
10467
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
10468
|
+
|
|
10469
|
+
:default: false
|
|
10470
|
+
'''
|
|
10471
|
+
result = self._values.get("multi_value_answer")
|
|
10472
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
10473
|
+
|
|
10277
10474
|
@builtins.property
|
|
10278
10475
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
10279
10476
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -10398,6 +10595,7 @@ class DsRecord(
|
|
|
10398
10595
|
comment: typing.Optional[builtins.str] = None,
|
|
10399
10596
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10400
10597
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
10598
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10401
10599
|
record_name: typing.Optional[builtins.str] = None,
|
|
10402
10600
|
region: typing.Optional[builtins.str] = None,
|
|
10403
10601
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10412,6 +10610,7 @@ class DsRecord(
|
|
|
10412
10610
|
:param comment: A comment to add on the record. Default: no comment
|
|
10413
10611
|
: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
|
|
10414
10612
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10613
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10415
10614
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10416
10615
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10417
10616
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -10428,6 +10627,7 @@ class DsRecord(
|
|
|
10428
10627
|
comment=comment,
|
|
10429
10628
|
delete_existing=delete_existing,
|
|
10430
10629
|
geo_location=geo_location,
|
|
10630
|
+
multi_value_answer=multi_value_answer,
|
|
10431
10631
|
record_name=record_name,
|
|
10432
10632
|
region=region,
|
|
10433
10633
|
set_identifier=set_identifier,
|
|
@@ -10446,6 +10646,7 @@ class DsRecord(
|
|
|
10446
10646
|
"comment": "comment",
|
|
10447
10647
|
"delete_existing": "deleteExisting",
|
|
10448
10648
|
"geo_location": "geoLocation",
|
|
10649
|
+
"multi_value_answer": "multiValueAnswer",
|
|
10449
10650
|
"record_name": "recordName",
|
|
10450
10651
|
"region": "region",
|
|
10451
10652
|
"set_identifier": "setIdentifier",
|
|
@@ -10462,6 +10663,7 @@ class DsRecordProps(RecordSetOptions):
|
|
|
10462
10663
|
comment: typing.Optional[builtins.str] = None,
|
|
10463
10664
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10464
10665
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
10666
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10465
10667
|
record_name: typing.Optional[builtins.str] = None,
|
|
10466
10668
|
region: typing.Optional[builtins.str] = None,
|
|
10467
10669
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10475,6 +10677,7 @@ class DsRecordProps(RecordSetOptions):
|
|
|
10475
10677
|
:param comment: A comment to add on the record. Default: no comment
|
|
10476
10678
|
: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
|
|
10477
10679
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
10680
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10478
10681
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10479
10682
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10480
10683
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -10503,6 +10706,7 @@ class DsRecordProps(RecordSetOptions):
|
|
|
10503
10706
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
10504
10707
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
10505
10708
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
10709
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
10506
10710
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
10507
10711
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
10508
10712
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -10519,6 +10723,8 @@ class DsRecordProps(RecordSetOptions):
|
|
|
10519
10723
|
self._values["delete_existing"] = delete_existing
|
|
10520
10724
|
if geo_location is not None:
|
|
10521
10725
|
self._values["geo_location"] = geo_location
|
|
10726
|
+
if multi_value_answer is not None:
|
|
10727
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
10522
10728
|
if record_name is not None:
|
|
10523
10729
|
self._values["record_name"] = record_name
|
|
10524
10730
|
if region is not None:
|
|
@@ -10571,6 +10777,15 @@ class DsRecordProps(RecordSetOptions):
|
|
|
10571
10777
|
result = self._values.get("geo_location")
|
|
10572
10778
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
10573
10779
|
|
|
10780
|
+
@builtins.property
|
|
10781
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
10782
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
10783
|
+
|
|
10784
|
+
:default: false
|
|
10785
|
+
'''
|
|
10786
|
+
result = self._values.get("multi_value_answer")
|
|
10787
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
10788
|
+
|
|
10574
10789
|
@builtins.property
|
|
10575
10790
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
10576
10791
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -10892,6 +11107,7 @@ class MxRecord(
|
|
|
10892
11107
|
comment="comment",
|
|
10893
11108
|
delete_existing=False,
|
|
10894
11109
|
geo_location=geo_location,
|
|
11110
|
+
multi_value_answer=False,
|
|
10895
11111
|
record_name="recordName",
|
|
10896
11112
|
region="region",
|
|
10897
11113
|
set_identifier="setIdentifier",
|
|
@@ -10910,6 +11126,7 @@ class MxRecord(
|
|
|
10910
11126
|
comment: typing.Optional[builtins.str] = None,
|
|
10911
11127
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10912
11128
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
11129
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10913
11130
|
record_name: typing.Optional[builtins.str] = None,
|
|
10914
11131
|
region: typing.Optional[builtins.str] = None,
|
|
10915
11132
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10924,6 +11141,7 @@ class MxRecord(
|
|
|
10924
11141
|
:param comment: A comment to add on the record. Default: no comment
|
|
10925
11142
|
: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
|
|
10926
11143
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11144
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10927
11145
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10928
11146
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10929
11147
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -10940,6 +11158,7 @@ class MxRecord(
|
|
|
10940
11158
|
comment=comment,
|
|
10941
11159
|
delete_existing=delete_existing,
|
|
10942
11160
|
geo_location=geo_location,
|
|
11161
|
+
multi_value_answer=multi_value_answer,
|
|
10943
11162
|
record_name=record_name,
|
|
10944
11163
|
region=region,
|
|
10945
11164
|
set_identifier=set_identifier,
|
|
@@ -10958,6 +11177,7 @@ class MxRecord(
|
|
|
10958
11177
|
"comment": "comment",
|
|
10959
11178
|
"delete_existing": "deleteExisting",
|
|
10960
11179
|
"geo_location": "geoLocation",
|
|
11180
|
+
"multi_value_answer": "multiValueAnswer",
|
|
10961
11181
|
"record_name": "recordName",
|
|
10962
11182
|
"region": "region",
|
|
10963
11183
|
"set_identifier": "setIdentifier",
|
|
@@ -10974,6 +11194,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
10974
11194
|
comment: typing.Optional[builtins.str] = None,
|
|
10975
11195
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
10976
11196
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
11197
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
10977
11198
|
record_name: typing.Optional[builtins.str] = None,
|
|
10978
11199
|
region: typing.Optional[builtins.str] = None,
|
|
10979
11200
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -10987,6 +11208,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
10987
11208
|
:param comment: A comment to add on the record. Default: no comment
|
|
10988
11209
|
: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
|
|
10989
11210
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11211
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
10990
11212
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
10991
11213
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
10992
11214
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -11017,6 +11239,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
11017
11239
|
comment="comment",
|
|
11018
11240
|
delete_existing=False,
|
|
11019
11241
|
geo_location=geo_location,
|
|
11242
|
+
multi_value_answer=False,
|
|
11020
11243
|
record_name="recordName",
|
|
11021
11244
|
region="region",
|
|
11022
11245
|
set_identifier="setIdentifier",
|
|
@@ -11030,6 +11253,7 @@ class MxRecordProps(RecordSetOptions):
|
|
|
11030
11253
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
11031
11254
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
11032
11255
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
11256
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
11033
11257
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
11034
11258
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
11035
11259
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -11046,6 +11270,8 @@ class MxRecordProps(RecordSetOptions):
|
|
|
11046
11270
|
self._values["delete_existing"] = delete_existing
|
|
11047
11271
|
if geo_location is not None:
|
|
11048
11272
|
self._values["geo_location"] = geo_location
|
|
11273
|
+
if multi_value_answer is not None:
|
|
11274
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
11049
11275
|
if record_name is not None:
|
|
11050
11276
|
self._values["record_name"] = record_name
|
|
11051
11277
|
if region is not None:
|
|
@@ -11098,6 +11324,15 @@ class MxRecordProps(RecordSetOptions):
|
|
|
11098
11324
|
result = self._values.get("geo_location")
|
|
11099
11325
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
11100
11326
|
|
|
11327
|
+
@builtins.property
|
|
11328
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
11329
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
11330
|
+
|
|
11331
|
+
:default: false
|
|
11332
|
+
'''
|
|
11333
|
+
result = self._values.get("multi_value_answer")
|
|
11334
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
11335
|
+
|
|
11101
11336
|
@builtins.property
|
|
11102
11337
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
11103
11338
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -11222,6 +11457,7 @@ class NsRecord(
|
|
|
11222
11457
|
comment: typing.Optional[builtins.str] = None,
|
|
11223
11458
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
11224
11459
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
11460
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
11225
11461
|
record_name: typing.Optional[builtins.str] = None,
|
|
11226
11462
|
region: typing.Optional[builtins.str] = None,
|
|
11227
11463
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -11236,6 +11472,7 @@ class NsRecord(
|
|
|
11236
11472
|
:param comment: A comment to add on the record. Default: no comment
|
|
11237
11473
|
: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
|
|
11238
11474
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11475
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
11239
11476
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
11240
11477
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
11241
11478
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -11252,6 +11489,7 @@ class NsRecord(
|
|
|
11252
11489
|
comment=comment,
|
|
11253
11490
|
delete_existing=delete_existing,
|
|
11254
11491
|
geo_location=geo_location,
|
|
11492
|
+
multi_value_answer=multi_value_answer,
|
|
11255
11493
|
record_name=record_name,
|
|
11256
11494
|
region=region,
|
|
11257
11495
|
set_identifier=set_identifier,
|
|
@@ -11270,6 +11508,7 @@ class NsRecord(
|
|
|
11270
11508
|
"comment": "comment",
|
|
11271
11509
|
"delete_existing": "deleteExisting",
|
|
11272
11510
|
"geo_location": "geoLocation",
|
|
11511
|
+
"multi_value_answer": "multiValueAnswer",
|
|
11273
11512
|
"record_name": "recordName",
|
|
11274
11513
|
"region": "region",
|
|
11275
11514
|
"set_identifier": "setIdentifier",
|
|
@@ -11286,6 +11525,7 @@ class NsRecordProps(RecordSetOptions):
|
|
|
11286
11525
|
comment: typing.Optional[builtins.str] = None,
|
|
11287
11526
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
11288
11527
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
11528
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
11289
11529
|
record_name: typing.Optional[builtins.str] = None,
|
|
11290
11530
|
region: typing.Optional[builtins.str] = None,
|
|
11291
11531
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -11299,6 +11539,7 @@ class NsRecordProps(RecordSetOptions):
|
|
|
11299
11539
|
:param comment: A comment to add on the record. Default: no comment
|
|
11300
11540
|
: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
|
|
11301
11541
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
11542
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
11302
11543
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
11303
11544
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
11304
11545
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -11327,6 +11568,7 @@ class NsRecordProps(RecordSetOptions):
|
|
|
11327
11568
|
check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
|
|
11328
11569
|
check_type(argname="argument delete_existing", value=delete_existing, expected_type=type_hints["delete_existing"])
|
|
11329
11570
|
check_type(argname="argument geo_location", value=geo_location, expected_type=type_hints["geo_location"])
|
|
11571
|
+
check_type(argname="argument multi_value_answer", value=multi_value_answer, expected_type=type_hints["multi_value_answer"])
|
|
11330
11572
|
check_type(argname="argument record_name", value=record_name, expected_type=type_hints["record_name"])
|
|
11331
11573
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
11332
11574
|
check_type(argname="argument set_identifier", value=set_identifier, expected_type=type_hints["set_identifier"])
|
|
@@ -11343,6 +11585,8 @@ class NsRecordProps(RecordSetOptions):
|
|
|
11343
11585
|
self._values["delete_existing"] = delete_existing
|
|
11344
11586
|
if geo_location is not None:
|
|
11345
11587
|
self._values["geo_location"] = geo_location
|
|
11588
|
+
if multi_value_answer is not None:
|
|
11589
|
+
self._values["multi_value_answer"] = multi_value_answer
|
|
11346
11590
|
if record_name is not None:
|
|
11347
11591
|
self._values["record_name"] = record_name
|
|
11348
11592
|
if region is not None:
|
|
@@ -11395,6 +11639,15 @@ class NsRecordProps(RecordSetOptions):
|
|
|
11395
11639
|
result = self._values.get("geo_location")
|
|
11396
11640
|
return typing.cast(typing.Optional[GeoLocation], result)
|
|
11397
11641
|
|
|
11642
|
+
@builtins.property
|
|
11643
|
+
def multi_value_answer(self) -> typing.Optional[builtins.bool]:
|
|
11644
|
+
'''Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries.
|
|
11645
|
+
|
|
11646
|
+
:default: false
|
|
11647
|
+
'''
|
|
11648
|
+
result = self._values.get("multi_value_answer")
|
|
11649
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
11650
|
+
|
|
11398
11651
|
@builtins.property
|
|
11399
11652
|
def record_name(self) -> typing.Optional[builtins.str]:
|
|
11400
11653
|
'''The subdomain name for this record. This should be relative to the zone root name.
|
|
@@ -11770,6 +12023,7 @@ class CaaAmazonRecord(
|
|
|
11770
12023
|
comment="comment",
|
|
11771
12024
|
delete_existing=False,
|
|
11772
12025
|
geo_location=geo_location,
|
|
12026
|
+
multi_value_answer=False,
|
|
11773
12027
|
record_name="recordName",
|
|
11774
12028
|
region="region",
|
|
11775
12029
|
set_identifier="setIdentifier",
|
|
@@ -11787,6 +12041,7 @@ class CaaAmazonRecord(
|
|
|
11787
12041
|
comment: typing.Optional[builtins.str] = None,
|
|
11788
12042
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
11789
12043
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
12044
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
11790
12045
|
record_name: typing.Optional[builtins.str] = None,
|
|
11791
12046
|
region: typing.Optional[builtins.str] = None,
|
|
11792
12047
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -11800,6 +12055,7 @@ class CaaAmazonRecord(
|
|
|
11800
12055
|
:param comment: A comment to add on the record. Default: no comment
|
|
11801
12056
|
: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
|
|
11802
12057
|
:param geo_location: The geographical origin for this record to return DNS records based on the user's location.
|
|
12058
|
+
:param multi_value_answer: Whether to return multiple values, such as IP addresses for your web servers, in response to DNS queries. Default: false
|
|
11803
12059
|
:param record_name: The subdomain name for this record. This should be relative to the zone root name. For example, if you want to create a record for acme.example.com, specify "acme". You can also specify the fully qualified domain name which terminates with a ".". For example, "acme.example.com.". Default: zone root
|
|
11804
12060
|
:param region: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Default: - Do not set latency based routing
|
|
11805
12061
|
:param set_identifier: A string used to distinguish between different records with the same combination of DNS name and type. It can only be set when either weight or geoLocation is defined. This parameter must be between 1 and 128 characters in length. Default: - Auto generated string
|
|
@@ -11815,6 +12071,7 @@ class CaaAmazonRecord(
|
|
|
11815
12071
|
comment=comment,
|
|
11816
12072
|
delete_existing=delete_existing,
|
|
11817
12073
|
geo_location=geo_location,
|
|
12074
|
+
multi_value_answer=multi_value_answer,
|
|
11818
12075
|
record_name=record_name,
|
|
11819
12076
|
region=region,
|
|
11820
12077
|
set_identifier=set_identifier,
|
|
@@ -12665,6 +12922,7 @@ def _typecheckingstub__b92f4bc0484ad6fe8cce3c7e37b4ee3cd051b8f325d16efd23f924767
|
|
|
12665
12922
|
comment: typing.Optional[builtins.str] = None,
|
|
12666
12923
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12667
12924
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
12925
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12668
12926
|
record_name: typing.Optional[builtins.str] = None,
|
|
12669
12927
|
region: typing.Optional[builtins.str] = None,
|
|
12670
12928
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12680,6 +12938,7 @@ def _typecheckingstub__c44f39638a001e90bc1175667e4764c4cbde27cade202d52a4f4d8724
|
|
|
12680
12938
|
comment: typing.Optional[builtins.str] = None,
|
|
12681
12939
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12682
12940
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
12941
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12683
12942
|
record_name: typing.Optional[builtins.str] = None,
|
|
12684
12943
|
region: typing.Optional[builtins.str] = None,
|
|
12685
12944
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12695,6 +12954,7 @@ def _typecheckingstub__038200686c47ef30f81bc5289a6235e766372281295129670053b793d
|
|
|
12695
12954
|
comment: typing.Optional[builtins.str] = None,
|
|
12696
12955
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12697
12956
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
12957
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12698
12958
|
record_name: typing.Optional[builtins.str] = None,
|
|
12699
12959
|
region: typing.Optional[builtins.str] = None,
|
|
12700
12960
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12740,6 +13000,7 @@ def _typecheckingstub__d52a70fbe22ca5e13acce72254719ea0dd37b436de0640b65774aadd9
|
|
|
12740
13000
|
comment: typing.Optional[builtins.str] = None,
|
|
12741
13001
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12742
13002
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13003
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12743
13004
|
record_name: typing.Optional[builtins.str] = None,
|
|
12744
13005
|
region: typing.Optional[builtins.str] = None,
|
|
12745
13006
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12755,6 +13016,7 @@ def _typecheckingstub__803828161f541995c058596dab53102f2eccd14ba565bbe715a5ac293
|
|
|
12755
13016
|
comment: typing.Optional[builtins.str] = None,
|
|
12756
13017
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12757
13018
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13019
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12758
13020
|
record_name: typing.Optional[builtins.str] = None,
|
|
12759
13021
|
region: typing.Optional[builtins.str] = None,
|
|
12760
13022
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12784,6 +13046,7 @@ def _typecheckingstub__df1e0c1447d860a09246a7ec54507ca123346e57365df024460258839
|
|
|
12784
13046
|
comment: typing.Optional[builtins.str] = None,
|
|
12785
13047
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12786
13048
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13049
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12787
13050
|
record_name: typing.Optional[builtins.str] = None,
|
|
12788
13051
|
region: typing.Optional[builtins.str] = None,
|
|
12789
13052
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12799,6 +13062,7 @@ def _typecheckingstub__1925dd23d881cbbf99625b9a5fe0ef65b92a92359376c46e49b6690f1
|
|
|
12799
13062
|
comment: typing.Optional[builtins.str] = None,
|
|
12800
13063
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12801
13064
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13065
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12802
13066
|
record_name: typing.Optional[builtins.str] = None,
|
|
12803
13067
|
region: typing.Optional[builtins.str] = None,
|
|
12804
13068
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12852,6 +13116,7 @@ def _typecheckingstub__1f8360676c13e2167bb58d36e1b6384ba70f036979aa9c80cac046e12
|
|
|
12852
13116
|
comment: typing.Optional[builtins.str] = None,
|
|
12853
13117
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12854
13118
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13119
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12855
13120
|
record_name: typing.Optional[builtins.str] = None,
|
|
12856
13121
|
region: typing.Optional[builtins.str] = None,
|
|
12857
13122
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12867,6 +13132,7 @@ def _typecheckingstub__240a965753acb9488d02c120074027364f5e85a8ec585205a863174fe
|
|
|
12867
13132
|
comment: typing.Optional[builtins.str] = None,
|
|
12868
13133
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12869
13134
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13135
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12870
13136
|
record_name: typing.Optional[builtins.str] = None,
|
|
12871
13137
|
region: typing.Optional[builtins.str] = None,
|
|
12872
13138
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12886,6 +13152,7 @@ def _typecheckingstub__ca2e60ba6b2baeeff2cc875c86af94b4b26d6f11c1cfcca09280ac533
|
|
|
12886
13152
|
comment: typing.Optional[builtins.str] = None,
|
|
12887
13153
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12888
13154
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13155
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12889
13156
|
record_name: typing.Optional[builtins.str] = None,
|
|
12890
13157
|
region: typing.Optional[builtins.str] = None,
|
|
12891
13158
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12901,6 +13168,7 @@ def _typecheckingstub__a73a5c86411a0d853fcfad820ed58f5a5c19df65a7b2756560958db5c
|
|
|
12901
13168
|
comment: typing.Optional[builtins.str] = None,
|
|
12902
13169
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12903
13170
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13171
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12904
13172
|
record_name: typing.Optional[builtins.str] = None,
|
|
12905
13173
|
region: typing.Optional[builtins.str] = None,
|
|
12906
13174
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12920,6 +13188,7 @@ def _typecheckingstub__4d5345c027ebd51f32f58fdeb055904a5c4dd3f5523f55954f8a191ae
|
|
|
12920
13188
|
comment: typing.Optional[builtins.str] = None,
|
|
12921
13189
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12922
13190
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13191
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12923
13192
|
record_name: typing.Optional[builtins.str] = None,
|
|
12924
13193
|
region: typing.Optional[builtins.str] = None,
|
|
12925
13194
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12935,6 +13204,7 @@ def _typecheckingstub__c051ff70083b2ae68889d3f02be8344125acf64b4768d5f5df3298ba8
|
|
|
12935
13204
|
comment: typing.Optional[builtins.str] = None,
|
|
12936
13205
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12937
13206
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13207
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12938
13208
|
record_name: typing.Optional[builtins.str] = None,
|
|
12939
13209
|
region: typing.Optional[builtins.str] = None,
|
|
12940
13210
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12951,6 +13221,7 @@ def _typecheckingstub__14055fdb7d9f4b55091295996ec92db8d73fa789a21fca2664da1242a
|
|
|
12951
13221
|
comment: typing.Optional[builtins.str] = None,
|
|
12952
13222
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12953
13223
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13224
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12954
13225
|
record_name: typing.Optional[builtins.str] = None,
|
|
12955
13226
|
region: typing.Optional[builtins.str] = None,
|
|
12956
13227
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12969,6 +13240,7 @@ def _typecheckingstub__3a2502cdc1fe021e837217ab0d96b9fa6ea450a68c089482935b695f7
|
|
|
12969
13240
|
comment: typing.Optional[builtins.str] = None,
|
|
12970
13241
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12971
13242
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13243
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12972
13244
|
record_name: typing.Optional[builtins.str] = None,
|
|
12973
13245
|
region: typing.Optional[builtins.str] = None,
|
|
12974
13246
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -12984,6 +13256,7 @@ def _typecheckingstub__349a94b990ddb833b270dc692692a8b37187c6f17114e02514f44accf
|
|
|
12984
13256
|
comment: typing.Optional[builtins.str] = None,
|
|
12985
13257
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
12986
13258
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13259
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
12987
13260
|
record_name: typing.Optional[builtins.str] = None,
|
|
12988
13261
|
region: typing.Optional[builtins.str] = None,
|
|
12989
13262
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13003,6 +13276,7 @@ def _typecheckingstub__e8dfccd8504bb3c0a779b42a665f362282b1083fe52a95b450d1ac1eb
|
|
|
13003
13276
|
comment: typing.Optional[builtins.str] = None,
|
|
13004
13277
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13005
13278
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13279
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13006
13280
|
record_name: typing.Optional[builtins.str] = None,
|
|
13007
13281
|
region: typing.Optional[builtins.str] = None,
|
|
13008
13282
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13018,6 +13292,7 @@ def _typecheckingstub__43b5fc8ccb719e2580c804225e8258b57b1700a701203416558eb2d76
|
|
|
13018
13292
|
comment: typing.Optional[builtins.str] = None,
|
|
13019
13293
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13020
13294
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13295
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13021
13296
|
record_name: typing.Optional[builtins.str] = None,
|
|
13022
13297
|
region: typing.Optional[builtins.str] = None,
|
|
13023
13298
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13037,6 +13312,7 @@ def _typecheckingstub__24205d1a44dcefb992b7bd9b6d91d8b6396f8498224c30876fe8a0673
|
|
|
13037
13312
|
comment: typing.Optional[builtins.str] = None,
|
|
13038
13313
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13039
13314
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13315
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13040
13316
|
record_name: typing.Optional[builtins.str] = None,
|
|
13041
13317
|
region: typing.Optional[builtins.str] = None,
|
|
13042
13318
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13052,6 +13328,7 @@ def _typecheckingstub__f86f16d9f2de8fe03cc1189a56a86c4888d20f69dc0f241aa21b50fdf
|
|
|
13052
13328
|
comment: typing.Optional[builtins.str] = None,
|
|
13053
13329
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13054
13330
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13331
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13055
13332
|
record_name: typing.Optional[builtins.str] = None,
|
|
13056
13333
|
region: typing.Optional[builtins.str] = None,
|
|
13057
13334
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13125,6 +13402,7 @@ def _typecheckingstub__615153e942ef5cdcb0022d4565e0ec8b8c5554594bfe7221366ad5c83
|
|
|
13125
13402
|
comment: typing.Optional[builtins.str] = None,
|
|
13126
13403
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13127
13404
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13405
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13128
13406
|
record_name: typing.Optional[builtins.str] = None,
|
|
13129
13407
|
region: typing.Optional[builtins.str] = None,
|
|
13130
13408
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13140,6 +13418,7 @@ def _typecheckingstub__b259122626a3ba94eebff0b5f692944df4aa55dc550b7d113eec491e1
|
|
|
13140
13418
|
comment: typing.Optional[builtins.str] = None,
|
|
13141
13419
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13142
13420
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13421
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13143
13422
|
record_name: typing.Optional[builtins.str] = None,
|
|
13144
13423
|
region: typing.Optional[builtins.str] = None,
|
|
13145
13424
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13159,6 +13438,7 @@ def _typecheckingstub__7f3bbcb4bd5bcd8978ae60eaac5ea2c6ab0bb8357a389e9b981e63291
|
|
|
13159
13438
|
comment: typing.Optional[builtins.str] = None,
|
|
13160
13439
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13161
13440
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13441
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13162
13442
|
record_name: typing.Optional[builtins.str] = None,
|
|
13163
13443
|
region: typing.Optional[builtins.str] = None,
|
|
13164
13444
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13174,6 +13454,7 @@ def _typecheckingstub__33cda5fac8572316158161da713e2ceea9d3f7f56b5ee9a2a25acf331
|
|
|
13174
13454
|
comment: typing.Optional[builtins.str] = None,
|
|
13175
13455
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13176
13456
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13457
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13177
13458
|
record_name: typing.Optional[builtins.str] = None,
|
|
13178
13459
|
region: typing.Optional[builtins.str] = None,
|
|
13179
13460
|
set_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -13261,6 +13542,7 @@ def _typecheckingstub__f189380057459afbeff6d38749625e3756c4572dec90f74ca7a400dcb
|
|
|
13261
13542
|
comment: typing.Optional[builtins.str] = None,
|
|
13262
13543
|
delete_existing: typing.Optional[builtins.bool] = None,
|
|
13263
13544
|
geo_location: typing.Optional[GeoLocation] = None,
|
|
13545
|
+
multi_value_answer: typing.Optional[builtins.bool] = None,
|
|
13264
13546
|
record_name: typing.Optional[builtins.str] = None,
|
|
13265
13547
|
region: typing.Optional[builtins.str] = None,
|
|
13266
13548
|
set_identifier: typing.Optional[builtins.str] = None,
|