aws-cdk-lib 2.105.0__py3-none-any.whl → 2.106.1__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 +59 -69
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.105.0.jsii.tgz → aws-cdk-lib@2.106.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -12
- aws_cdk/aws_appconfig/__init__.py +25 -11
- aws_cdk/aws_appintegrations/__init__.py +60 -60
- aws_cdk/aws_apprunner/__init__.py +22 -3
- aws_cdk/aws_appstream/__init__.py +12 -5
- aws_cdk/aws_appsync/__init__.py +4 -4
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_cloudformation/__init__.py +59 -69
- aws_cdk/aws_codepipeline/__init__.py +3 -0
- aws_cdk/aws_cognito/__init__.py +23 -31
- aws_cdk/aws_config/__init__.py +46 -41
- aws_cdk/aws_datapipeline/__init__.py +54 -54
- aws_cdk/aws_directoryservice/__init__.py +45 -45
- aws_cdk/aws_ec2/__init__.py +163 -21
- aws_cdk/aws_ecs/__init__.py +52 -68
- aws_cdk/aws_eks/__init__.py +55 -9
- aws_cdk/aws_entityresolution/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +0 -8
- aws_cdk/aws_eventschemas/__init__.py +12 -12
- aws_cdk/aws_gamelift/__init__.py +4 -6
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +10 -11
- aws_cdk/aws_lakeformation/__init__.py +8 -5
- aws_cdk/aws_lambda/__init__.py +30 -0
- aws_cdk/aws_msk/__init__.py +3 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +94 -94
- aws_cdk/aws_quicksight/__init__.py +189 -264
- aws_cdk/aws_rds/__init__.py +267 -36
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +3 -7
- aws_cdk/aws_s3/__init__.py +191 -2
- aws_cdk/aws_sam/__init__.py +42 -47
- aws_cdk/aws_servicecatalogappregistry/__init__.py +2 -4
- aws_cdk/aws_ssm/__init__.py +4 -4
- aws_cdk/aws_stepfunctions_tasks/__init__.py +9 -2
- aws_cdk/aws_vpclattice/__init__.py +2 -6
- aws_cdk/aws_wafv2/__init__.py +21 -8
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/top_level.txt +0 -0
|
@@ -365,7 +365,11 @@ class CfnProfile(
|
|
|
365
365
|
metaclass=jsii.JSIIMeta,
|
|
366
366
|
jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnProfile",
|
|
367
367
|
):
|
|
368
|
-
'''Creates a
|
|
368
|
+
'''Creates a *profile* , a list of the roles that Roles Anywhere service is trusted to assume.
|
|
369
|
+
|
|
370
|
+
You use profiles to intersect permissions with IAM managed policies.
|
|
371
|
+
|
|
372
|
+
*Required permissions:* ``rolesanywhere:CreateProfile`` .
|
|
369
373
|
|
|
370
374
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html
|
|
371
375
|
:cloudformationResource: AWS::RolesAnywhere::Profile
|
|
@@ -411,14 +415,14 @@ class CfnProfile(
|
|
|
411
415
|
'''
|
|
412
416
|
:param scope: Scope in which this resource is defined.
|
|
413
417
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
414
|
-
:param name: The
|
|
415
|
-
:param role_arns: A list of IAM role ARNs
|
|
416
|
-
:param duration_seconds:
|
|
417
|
-
:param enabled:
|
|
418
|
-
:param managed_policy_arns: A list of managed policy ARNs
|
|
419
|
-
:param require_instance_properties: Specifies whether instance properties are required in
|
|
420
|
-
:param session_policy: A session policy that
|
|
421
|
-
:param tags:
|
|
418
|
+
:param name: The name of the profile.
|
|
419
|
+
:param role_arns: A list of IAM role ARNs. During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
|
|
420
|
+
:param duration_seconds: Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
|
|
421
|
+
:param enabled: Indicates whether the profile is enabled.
|
|
422
|
+
:param managed_policy_arns: A list of managed policy ARNs that apply to the vended session credentials.
|
|
423
|
+
:param require_instance_properties: Specifies whether instance properties are required in temporary credential requests with this profile.
|
|
424
|
+
:param session_policy: A session policy that applies to the trust boundary of the vended session credentials.
|
|
425
|
+
:param tags: The tags to attach to the profile.
|
|
422
426
|
'''
|
|
423
427
|
if __debug__:
|
|
424
428
|
type_hints = typing.get_type_hints(_typecheckingstub__15739ec913066dea67815f6297a7c4e3ed351b4df22323a7b46fa138af1a7af8)
|
|
@@ -499,7 +503,7 @@ class CfnProfile(
|
|
|
499
503
|
@builtins.property
|
|
500
504
|
@jsii.member(jsii_name="name")
|
|
501
505
|
def name(self) -> builtins.str:
|
|
502
|
-
'''The
|
|
506
|
+
'''The name of the profile.'''
|
|
503
507
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
504
508
|
|
|
505
509
|
@name.setter
|
|
@@ -512,7 +516,7 @@ class CfnProfile(
|
|
|
512
516
|
@builtins.property
|
|
513
517
|
@jsii.member(jsii_name="roleArns")
|
|
514
518
|
def role_arns(self) -> typing.List[builtins.str]:
|
|
515
|
-
'''A list of IAM role ARNs
|
|
519
|
+
'''A list of IAM role ARNs.'''
|
|
516
520
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "roleArns"))
|
|
517
521
|
|
|
518
522
|
@role_arns.setter
|
|
@@ -525,7 +529,7 @@ class CfnProfile(
|
|
|
525
529
|
@builtins.property
|
|
526
530
|
@jsii.member(jsii_name="durationSeconds")
|
|
527
531
|
def duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
528
|
-
'''
|
|
532
|
+
'''Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.'''
|
|
529
533
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "durationSeconds"))
|
|
530
534
|
|
|
531
535
|
@duration_seconds.setter
|
|
@@ -540,7 +544,7 @@ class CfnProfile(
|
|
|
540
544
|
def enabled(
|
|
541
545
|
self,
|
|
542
546
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
543
|
-
'''
|
|
547
|
+
'''Indicates whether the profile is enabled.'''
|
|
544
548
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
|
|
545
549
|
|
|
546
550
|
@enabled.setter
|
|
@@ -556,7 +560,7 @@ class CfnProfile(
|
|
|
556
560
|
@builtins.property
|
|
557
561
|
@jsii.member(jsii_name="managedPolicyArns")
|
|
558
562
|
def managed_policy_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
559
|
-
'''A list of managed policy ARNs.'''
|
|
563
|
+
'''A list of managed policy ARNs that apply to the vended session credentials.'''
|
|
560
564
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "managedPolicyArns"))
|
|
561
565
|
|
|
562
566
|
@managed_policy_arns.setter
|
|
@@ -574,7 +578,7 @@ class CfnProfile(
|
|
|
574
578
|
def require_instance_properties(
|
|
575
579
|
self,
|
|
576
580
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
577
|
-
'''Specifies whether instance properties are required in
|
|
581
|
+
'''Specifies whether instance properties are required in temporary credential requests with this profile.'''
|
|
578
582
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "requireInstanceProperties"))
|
|
579
583
|
|
|
580
584
|
@require_instance_properties.setter
|
|
@@ -590,7 +594,7 @@ class CfnProfile(
|
|
|
590
594
|
@builtins.property
|
|
591
595
|
@jsii.member(jsii_name="sessionPolicy")
|
|
592
596
|
def session_policy(self) -> typing.Optional[builtins.str]:
|
|
593
|
-
'''A session policy that
|
|
597
|
+
'''A session policy that applies to the trust boundary of the vended session credentials.'''
|
|
594
598
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sessionPolicy"))
|
|
595
599
|
|
|
596
600
|
@session_policy.setter
|
|
@@ -603,7 +607,7 @@ class CfnProfile(
|
|
|
603
607
|
@builtins.property
|
|
604
608
|
@jsii.member(jsii_name="tagsRaw")
|
|
605
609
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
606
|
-
'''
|
|
610
|
+
'''The tags to attach to the profile.'''
|
|
607
611
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
608
612
|
|
|
609
613
|
@tags_raw.setter
|
|
@@ -643,14 +647,14 @@ class CfnProfileProps:
|
|
|
643
647
|
) -> None:
|
|
644
648
|
'''Properties for defining a ``CfnProfile``.
|
|
645
649
|
|
|
646
|
-
:param name: The
|
|
647
|
-
:param role_arns: A list of IAM role ARNs
|
|
648
|
-
:param duration_seconds:
|
|
649
|
-
:param enabled:
|
|
650
|
-
:param managed_policy_arns: A list of managed policy ARNs
|
|
651
|
-
:param require_instance_properties: Specifies whether instance properties are required in
|
|
652
|
-
:param session_policy: A session policy that
|
|
653
|
-
:param tags:
|
|
650
|
+
:param name: The name of the profile.
|
|
651
|
+
:param role_arns: A list of IAM role ARNs. During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
|
|
652
|
+
:param duration_seconds: Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
|
|
653
|
+
:param enabled: Indicates whether the profile is enabled.
|
|
654
|
+
:param managed_policy_arns: A list of managed policy ARNs that apply to the vended session credentials.
|
|
655
|
+
:param require_instance_properties: Specifies whether instance properties are required in temporary credential requests with this profile.
|
|
656
|
+
:param session_policy: A session policy that applies to the trust boundary of the vended session credentials.
|
|
657
|
+
:param tags: The tags to attach to the profile.
|
|
654
658
|
|
|
655
659
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html
|
|
656
660
|
:exampleMetadata: fixture=_generated
|
|
@@ -706,7 +710,7 @@ class CfnProfileProps:
|
|
|
706
710
|
|
|
707
711
|
@builtins.property
|
|
708
712
|
def name(self) -> builtins.str:
|
|
709
|
-
'''The
|
|
713
|
+
'''The name of the profile.
|
|
710
714
|
|
|
711
715
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-name
|
|
712
716
|
'''
|
|
@@ -716,7 +720,9 @@ class CfnProfileProps:
|
|
|
716
720
|
|
|
717
721
|
@builtins.property
|
|
718
722
|
def role_arns(self) -> typing.List[builtins.str]:
|
|
719
|
-
'''A list of IAM role ARNs
|
|
723
|
+
'''A list of IAM role ARNs.
|
|
724
|
+
|
|
725
|
+
During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
|
|
720
726
|
|
|
721
727
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-rolearns
|
|
722
728
|
'''
|
|
@@ -726,7 +732,7 @@ class CfnProfileProps:
|
|
|
726
732
|
|
|
727
733
|
@builtins.property
|
|
728
734
|
def duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
729
|
-
'''
|
|
735
|
+
'''Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
|
|
730
736
|
|
|
731
737
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-durationseconds
|
|
732
738
|
'''
|
|
@@ -737,7 +743,7 @@ class CfnProfileProps:
|
|
|
737
743
|
def enabled(
|
|
738
744
|
self,
|
|
739
745
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
740
|
-
'''
|
|
746
|
+
'''Indicates whether the profile is enabled.
|
|
741
747
|
|
|
742
748
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-enabled
|
|
743
749
|
'''
|
|
@@ -746,9 +752,7 @@ class CfnProfileProps:
|
|
|
746
752
|
|
|
747
753
|
@builtins.property
|
|
748
754
|
def managed_policy_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
749
|
-
'''A list of managed policy ARNs.
|
|
750
|
-
|
|
751
|
-
Managed policies identified by this list will be applied to the vended session credentials.
|
|
755
|
+
'''A list of managed policy ARNs that apply to the vended session credentials.
|
|
752
756
|
|
|
753
757
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-managedpolicyarns
|
|
754
758
|
'''
|
|
@@ -759,7 +763,7 @@ class CfnProfileProps:
|
|
|
759
763
|
def require_instance_properties(
|
|
760
764
|
self,
|
|
761
765
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
762
|
-
'''Specifies whether instance properties are required in
|
|
766
|
+
'''Specifies whether instance properties are required in temporary credential requests with this profile.
|
|
763
767
|
|
|
764
768
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-requireinstanceproperties
|
|
765
769
|
'''
|
|
@@ -768,7 +772,7 @@ class CfnProfileProps:
|
|
|
768
772
|
|
|
769
773
|
@builtins.property
|
|
770
774
|
def session_policy(self) -> typing.Optional[builtins.str]:
|
|
771
|
-
'''A session policy that
|
|
775
|
+
'''A session policy that applies to the trust boundary of the vended session credentials.
|
|
772
776
|
|
|
773
777
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-sessionpolicy
|
|
774
778
|
'''
|
|
@@ -777,7 +781,7 @@ class CfnProfileProps:
|
|
|
777
781
|
|
|
778
782
|
@builtins.property
|
|
779
783
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
780
|
-
'''
|
|
784
|
+
'''The tags to attach to the profile.
|
|
781
785
|
|
|
782
786
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-tags
|
|
783
787
|
'''
|
|
@@ -802,7 +806,11 @@ class CfnTrustAnchor(
|
|
|
802
806
|
metaclass=jsii.JSIIMeta,
|
|
803
807
|
jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnTrustAnchor",
|
|
804
808
|
):
|
|
805
|
-
'''Creates a
|
|
809
|
+
'''Creates a trust anchor to establish trust between IAM Roles Anywhere and your certificate authority (CA).
|
|
810
|
+
|
|
811
|
+
You can define a trust anchor as a reference to an AWS Private Certificate Authority ( AWS Private CA ) or by uploading a CA certificate. Your AWS workloads can authenticate with the trust anchor using certificates issued by the CA in exchange for temporary AWS credentials.
|
|
812
|
+
|
|
813
|
+
*Required permissions:* ``rolesanywhere:CreateTrustAnchor`` .
|
|
806
814
|
|
|
807
815
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html
|
|
808
816
|
:cloudformationResource: AWS::RolesAnywhere::TrustAnchor
|
|
@@ -1146,7 +1154,7 @@ class CfnTrustAnchor(
|
|
|
1146
1154
|
acm_pca_arn: typing.Optional[builtins.str] = None,
|
|
1147
1155
|
x509_certificate_data: typing.Optional[builtins.str] = None,
|
|
1148
1156
|
) -> None:
|
|
1149
|
-
'''
|
|
1157
|
+
'''The data field of the trust anchor depending on its type.
|
|
1150
1158
|
|
|
1151
1159
|
:param acm_pca_arn: The root certificate of the AWS Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests. Included for trust anchors of type ``AWS_ACM_PCA`` . .. epigraph:: This field is not supported in your region.
|
|
1152
1160
|
:param x509_certificate_data: The PEM-encoded data for the certificate anchor. Included for trust anchors of type ``CERTIFICATE_BUNDLE`` .
|
|
@@ -1223,10 +1231,10 @@ class CfnTrustAnchor(
|
|
|
1223
1231
|
source_data: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTrustAnchor.SourceDataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1224
1232
|
source_type: typing.Optional[builtins.str] = None,
|
|
1225
1233
|
) -> None:
|
|
1226
|
-
'''
|
|
1234
|
+
'''The trust anchor type and its related certificate data.
|
|
1227
1235
|
|
|
1228
|
-
:param source_data:
|
|
1229
|
-
:param source_type: The type of the TrustAnchor.
|
|
1236
|
+
:param source_data: The data field of the trust anchor depending on its type.
|
|
1237
|
+
:param source_type: The type of the TrustAnchor. .. epigraph:: ``AWS_ACM_PCA`` is not an allowed value in your region.
|
|
1230
1238
|
|
|
1231
1239
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html
|
|
1232
1240
|
:exampleMetadata: fixture=_generated
|
|
@@ -1259,7 +1267,7 @@ class CfnTrustAnchor(
|
|
|
1259
1267
|
def source_data(
|
|
1260
1268
|
self,
|
|
1261
1269
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTrustAnchor.SourceDataProperty"]]:
|
|
1262
|
-
'''
|
|
1270
|
+
'''The data field of the trust anchor depending on its type.
|
|
1263
1271
|
|
|
1264
1272
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html#cfn-rolesanywhere-trustanchor-source-sourcedata
|
|
1265
1273
|
'''
|
|
@@ -1270,6 +1278,10 @@ class CfnTrustAnchor(
|
|
|
1270
1278
|
def source_type(self) -> typing.Optional[builtins.str]:
|
|
1271
1279
|
'''The type of the TrustAnchor.
|
|
1272
1280
|
|
|
1281
|
+
.. epigraph::
|
|
1282
|
+
|
|
1283
|
+
``AWS_ACM_PCA`` is not an allowed value in your region.
|
|
1284
|
+
|
|
1273
1285
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html#cfn-rolesanywhere-trustanchor-source-sourcetype
|
|
1274
1286
|
'''
|
|
1275
1287
|
result = self._values.get("source_type")
|
aws_cdk/aws_route53/__init__.py
CHANGED
|
@@ -2919,7 +2919,7 @@ class CfnRecordSet(
|
|
|
2919
2919
|
'''
|
|
2920
2920
|
:param scope: Scope in which this resource is defined.
|
|
2921
2921
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2922
|
-
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
2922
|
+
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
2923
2923
|
:param type: The DNS record type. For information about different record types and how data is encoded for them, see `Supported DNS Resource Record Types <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html>`_ in the *Amazon Route 53 Developer Guide* . Valid values for basic resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``DS`` | ``MX`` | ``NAPTR`` | ``NS`` | ``PTR`` | ``SOA`` | ``SPF`` | ``SRV`` | ``TXT`` Values for weighted, latency, geolocation, and failover resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group. Valid values for multivalue answer resource record sets: ``A`` | ``AAAA`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` .. epigraph:: SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of ``Type`` is ``SPF`` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, `The SPF DNS Record Type <https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1>`_ . Values for alias resource record sets: - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* ``A`` - *CloudFront distributions:* ``A`` If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of ``A`` and one with a value of ``AAAA`` . - *Amazon API Gateway environment that has a regionalized subdomain* : ``A`` - *ELB load balancers:* ``A`` | ``AAAA`` - *Amazon S3 buckets:* ``A`` - *Amazon Virtual Private Cloud interface VPC endpoints* ``A`` - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except ``NS`` and ``SOA`` . .. epigraph:: If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of ``Type`` is ``CNAME`` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
|
|
2924
2924
|
:param alias_target: *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to. If you're creating resource records sets for a private hosted zone, note the following: - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution. - For information about creating failover resource record sets in a private hosted zone, see `Configuring Failover in a Private Hosted Zone <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html>`_ in the *Amazon Route 53 Developer Guide* .
|
|
2925
2925
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A ``LocationName`` with an asterisk “*” can be used to create a default CIDR record. ``CollectionId`` is still required for default record.
|
|
@@ -4234,7 +4234,7 @@ class CfnRecordSetGroup(
|
|
|
4234
4234
|
) -> None:
|
|
4235
4235
|
'''Information about one record that you want to create.
|
|
4236
4236
|
|
|
4237
|
-
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
4237
|
+
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
4238
4238
|
:param type: The DNS record type. For information about different record types and how data is encoded for them, see `Supported DNS Resource Record Types <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html>`_ in the *Amazon Route 53 Developer Guide* . Valid values for basic resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``DS`` | ``MX`` | ``NAPTR`` | ``NS`` | ``PTR`` | ``SOA`` | ``SPF`` | ``SRV`` | ``TXT`` Values for weighted, latency, geolocation, and failover resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group. Valid values for multivalue answer resource record sets: ``A`` | ``AAAA`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` .. epigraph:: SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of ``Type`` is ``SPF`` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, `The SPF DNS Record Type <https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1>`_ . Values for alias resource record sets: - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* ``A`` - *CloudFront distributions:* ``A`` If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of ``A`` and one with a value of ``AAAA`` . - *Amazon API Gateway environment that has a regionalized subdomain* : ``A`` - *ELB load balancers:* ``A`` | ``AAAA`` - *Amazon S3 buckets:* ``A`` - *Amazon Virtual Private Cloud interface VPC endpoints* ``A`` - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except ``NS`` and ``SOA`` . .. epigraph:: If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of ``Type`` is ``CNAME`` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
|
|
4239
4239
|
:param alias_target: *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to. If you're creating resource records sets for a private hosted zone, note the following: - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution. - For information about creating failover resource record sets in a private hosted zone, see `Configuring Failover in a Private Hosted Zone <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html>`_ in the *Amazon Route 53 Developer Guide* .
|
|
4240
4240
|
:param cidr_routing_config:
|
|
@@ -4362,8 +4362,6 @@ class CfnRecordSetGroup(
|
|
|
4362
4362
|
|
|
4363
4363
|
You can't use the * wildcard for resource records sets that have a type of NS.
|
|
4364
4364
|
|
|
4365
|
-
You can use the * wildcard as the leftmost label in a domain name, for example, ``*.example.com`` . You can't use an * for one of the middle labels, for example, ``marketing.*.example.com`` . In addition, the * must replace the entire label; for example, you can't specify ``prod*.example.com`` .
|
|
4366
|
-
|
|
4367
4365
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-recordset.html#cfn-route53-recordsetgroup-recordset-name
|
|
4368
4366
|
'''
|
|
4369
4367
|
result = self._values.get("name")
|
|
@@ -4884,7 +4882,7 @@ class CfnRecordSetProps:
|
|
|
4884
4882
|
) -> None:
|
|
4885
4883
|
'''Properties for defining a ``CfnRecordSet``.
|
|
4886
4884
|
|
|
4887
|
-
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
4885
|
+
:param name: For ``ChangeResourceRecordSets`` requests, the name of the record that you want to create, update, or delete. For ``ListResourceRecordSets`` responses, the name of a record in the specified hosted zone. *ChangeResourceRecordSets Only* Enter a fully qualified domain name, for example, ``www.example.com`` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats ``www.example.com`` (without a trailing dot) and ``www.example.com.`` (with a trailing dot) as identical. For information about how to specify characters other than ``a-z`` , ``0-9`` , and ``-`` (hyphen) and how to specify internationalized domain names, see `DNS Domain Name Format <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html>`_ in the *Amazon Route 53 Developer Guide* . You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, ``*.example.com`` . Note the following: - The * must replace the entire label. For example, you can't specify ``*prod.example.com`` or ``prod*.example.com`` . - The * can't replace any of the middle labels, for example, marketing.*.example.com. - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. .. epigraph:: You can't use the * wildcard for resource records sets that have a type of NS.
|
|
4888
4886
|
:param type: The DNS record type. For information about different record types and how data is encoded for them, see `Supported DNS Resource Record Types <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html>`_ in the *Amazon Route 53 Developer Guide* . Valid values for basic resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``DS`` | ``MX`` | ``NAPTR`` | ``NS`` | ``PTR`` | ``SOA`` | ``SPF`` | ``SRV`` | ``TXT`` Values for weighted, latency, geolocation, and failover resource record sets: ``A`` | ``AAAA`` | ``CAA`` | ``CNAME`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group. Valid values for multivalue answer resource record sets: ``A`` | ``AAAA`` | ``MX`` | ``NAPTR`` | ``PTR`` | ``SPF`` | ``SRV`` | ``TXT`` .. epigraph:: SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of ``Type`` is ``SPF`` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, `The SPF DNS Record Type <https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1>`_ . Values for alias resource record sets: - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* ``A`` - *CloudFront distributions:* ``A`` If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of ``A`` and one with a value of ``AAAA`` . - *Amazon API Gateway environment that has a regionalized subdomain* : ``A`` - *ELB load balancers:* ``A`` | ``AAAA`` - *Amazon S3 buckets:* ``A`` - *Amazon Virtual Private Cloud interface VPC endpoints* ``A`` - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except ``NS`` and ``SOA`` . .. epigraph:: If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of ``Type`` is ``CNAME`` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
|
|
4889
4887
|
:param alias_target: *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to. If you're creating resource records sets for a private hosted zone, note the following: - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution. - For information about creating failover resource record sets in a private hosted zone, see `Configuring Failover in a Private Hosted Zone <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html>`_ in the *Amazon Route 53 Developer Guide* .
|
|
4890
4888
|
:param cidr_routing_config: The object that is specified in resource record set object when you are linking a resource record set to a CIDR location. A ``LocationName`` with an asterisk “*” can be used to create a default CIDR record. ``CollectionId`` is still required for default record.
|
|
@@ -5017,8 +5015,6 @@ class CfnRecordSetProps:
|
|
|
5017
5015
|
|
|
5018
5016
|
You can't use the * wildcard for resource records sets that have a type of NS.
|
|
5019
5017
|
|
|
5020
|
-
You can use the * wildcard as the leftmost label in a domain name, for example, ``*.example.com`` . You can't use an * for one of the middle labels, for example, ``marketing.*.example.com`` . In addition, the * must replace the entire label; for example, you can't specify ``prod*.example.com`` .
|
|
5021
|
-
|
|
5022
5018
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordset.html#cfn-route53-recordset-name
|
|
5023
5019
|
'''
|
|
5024
5020
|
result = self._values.get("name")
|