aws-cdk-lib 2.145.0__py3-none-any.whl → 2.147.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 +12 -11
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.145.0.jsii.tgz → aws-cdk-lib@2.147.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +32 -12
- aws_cdk/aws_apigatewayv2/__init__.py +48 -2
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +142 -4
- aws_cdk/aws_appconfig/__init__.py +8 -4
- aws_cdk/aws_applicationsignals/__init__.py +1766 -0
- aws_cdk/aws_appsync/__init__.py +62 -0
- aws_cdk/aws_auditmanager/__init__.py +5 -1
- aws_cdk/aws_autoscaling/__init__.py +457 -56
- aws_cdk/aws_batch/__init__.py +215 -0
- aws_cdk/aws_bedrock/__init__.py +272 -103
- aws_cdk/aws_cloudformation/__init__.py +5 -11
- aws_cdk/aws_cloudfront/__init__.py +10 -3
- aws_cdk/aws_cloudtrail/__init__.py +56 -2
- aws_cdk/aws_codebuild/__init__.py +85 -32
- aws_cdk/aws_codepipeline/__init__.py +10 -5
- aws_cdk/aws_connect/__init__.py +86 -0
- aws_cdk/aws_datazone/__init__.py +80 -68
- aws_cdk/aws_deadline/__init__.py +603 -17
- aws_cdk/aws_ec2/__init__.py +237 -112
- aws_cdk/aws_ecs/__init__.py +123 -12
- aws_cdk/aws_eks/__init__.py +1335 -50
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +11 -5
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +36 -16
- aws_cdk/aws_fsx/__init__.py +126 -21
- aws_cdk/aws_globalaccelerator/__init__.py +2 -1
- aws_cdk/aws_globalaccelerator_endpoints/__init__.py +35 -4
- aws_cdk/aws_glue/__init__.py +26 -0
- aws_cdk/aws_grafana/__init__.py +4 -4
- aws_cdk/aws_groundstation/__init__.py +55 -35
- aws_cdk/aws_guardduty/__init__.py +826 -0
- aws_cdk/aws_iam/__init__.py +13 -8
- aws_cdk/aws_iot/__init__.py +3 -3
- aws_cdk/aws_lambda/__init__.py +7 -5
- aws_cdk/aws_lightsail/__init__.py +1 -1
- aws_cdk/aws_location/__init__.py +10 -11
- aws_cdk/aws_mediapackagev2/__init__.py +38 -20
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +4 -4
- aws_cdk/aws_mwaa/__init__.py +16 -8
- aws_cdk/aws_nimblestudio/__init__.py +9 -9
- aws_cdk/aws_opensearchservice/__init__.py +11 -4
- aws_cdk/aws_opsworks/__init__.py +3 -3
- aws_cdk/aws_osis/__init__.py +33 -4
- aws_cdk/aws_pipes/__init__.py +691 -0
- aws_cdk/aws_quicksight/__init__.py +23 -21
- aws_cdk/aws_rds/__init__.py +55 -11
- aws_cdk/aws_refactorspaces/__init__.py +3 -3
- aws_cdk/aws_rolesanywhere/__init__.py +206 -3
- aws_cdk/aws_sagemaker/__init__.py +5 -2
- aws_cdk/aws_securityhub/__init__.py +163 -78
- aws_cdk/aws_securitylake/__init__.py +7 -5
- aws_cdk/aws_ses/__init__.py +117 -0
- aws_cdk/aws_simspaceweaver/__init__.py +2 -2
- aws_cdk/aws_sns/__init__.py +67 -13
- aws_cdk/aws_sqs/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +51 -28
- aws_cdk/aws_stepfunctions_tasks/__init__.py +59 -5
- aws_cdk/aws_transfer/__init__.py +8 -2
- aws_cdk/aws_wafv2/__init__.py +10 -10
- aws_cdk/aws_workspacesweb/__init__.py +8 -8
- aws_cdk/region_info/__init__.py +6 -0
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/NOTICE +0 -35
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/RECORD +71 -70
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/top_level.txt +0 -0
|
@@ -385,6 +385,12 @@ class CfnProfile(
|
|
|
385
385
|
role_arns=["roleArns"],
|
|
386
386
|
|
|
387
387
|
# the properties below are optional
|
|
388
|
+
attribute_mappings=[rolesanywhere.CfnProfile.AttributeMappingProperty(
|
|
389
|
+
certificate_field="certificateField",
|
|
390
|
+
mapping_rules=[rolesanywhere.CfnProfile.MappingRuleProperty(
|
|
391
|
+
specifier="specifier"
|
|
392
|
+
)]
|
|
393
|
+
)],
|
|
388
394
|
duration_seconds=123,
|
|
389
395
|
enabled=False,
|
|
390
396
|
managed_policy_arns=["managedPolicyArns"],
|
|
@@ -404,6 +410,7 @@ class CfnProfile(
|
|
|
404
410
|
*,
|
|
405
411
|
name: builtins.str,
|
|
406
412
|
role_arns: typing.Sequence[builtins.str],
|
|
413
|
+
attribute_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProfile.AttributeMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
407
414
|
duration_seconds: typing.Optional[jsii.Number] = None,
|
|
408
415
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
409
416
|
managed_policy_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -416,6 +423,7 @@ class CfnProfile(
|
|
|
416
423
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
417
424
|
:param name: The customer specified name of the resource.
|
|
418
425
|
:param role_arns: A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.
|
|
426
|
+
:param attribute_mappings: A mapping applied to the authenticating end-entity certificate.
|
|
419
427
|
:param duration_seconds: The number of seconds vended session credentials will be valid for.
|
|
420
428
|
:param enabled: The enabled status of the resource.
|
|
421
429
|
:param managed_policy_arns: A list of managed policy ARNs. Managed policies identified by this list will be applied to the vended session credentials.
|
|
@@ -430,6 +438,7 @@ class CfnProfile(
|
|
|
430
438
|
props = CfnProfileProps(
|
|
431
439
|
name=name,
|
|
432
440
|
role_arns=role_arns,
|
|
441
|
+
attribute_mappings=attribute_mappings,
|
|
433
442
|
duration_seconds=duration_seconds,
|
|
434
443
|
enabled=enabled,
|
|
435
444
|
managed_policy_arns=managed_policy_arns,
|
|
@@ -525,6 +534,24 @@ class CfnProfile(
|
|
|
525
534
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
526
535
|
jsii.set(self, "roleArns", value)
|
|
527
536
|
|
|
537
|
+
@builtins.property
|
|
538
|
+
@jsii.member(jsii_name="attributeMappings")
|
|
539
|
+
def attribute_mappings(
|
|
540
|
+
self,
|
|
541
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProfile.AttributeMappingProperty"]]]]:
|
|
542
|
+
'''A mapping applied to the authenticating end-entity certificate.'''
|
|
543
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProfile.AttributeMappingProperty"]]]], jsii.get(self, "attributeMappings"))
|
|
544
|
+
|
|
545
|
+
@attribute_mappings.setter
|
|
546
|
+
def attribute_mappings(
|
|
547
|
+
self,
|
|
548
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProfile.AttributeMappingProperty"]]]],
|
|
549
|
+
) -> None:
|
|
550
|
+
if __debug__:
|
|
551
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a933bc8a589ca2e29de261062eefb4537f3f9eee0b743f26a28b8b55ea20b163)
|
|
552
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
553
|
+
jsii.set(self, "attributeMappings", value)
|
|
554
|
+
|
|
528
555
|
@builtins.property
|
|
529
556
|
@jsii.member(jsii_name="durationSeconds")
|
|
530
557
|
def duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
@@ -616,6 +643,136 @@ class CfnProfile(
|
|
|
616
643
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
617
644
|
jsii.set(self, "tagsRaw", value)
|
|
618
645
|
|
|
646
|
+
@jsii.data_type(
|
|
647
|
+
jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnProfile.AttributeMappingProperty",
|
|
648
|
+
jsii_struct_bases=[],
|
|
649
|
+
name_mapping={
|
|
650
|
+
"certificate_field": "certificateField",
|
|
651
|
+
"mapping_rules": "mappingRules",
|
|
652
|
+
},
|
|
653
|
+
)
|
|
654
|
+
class AttributeMappingProperty:
|
|
655
|
+
def __init__(
|
|
656
|
+
self,
|
|
657
|
+
*,
|
|
658
|
+
certificate_field: builtins.str,
|
|
659
|
+
mapping_rules: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProfile.MappingRuleProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
660
|
+
) -> None:
|
|
661
|
+
'''A mapping applied to the authenticating end-entity certificate.
|
|
662
|
+
|
|
663
|
+
:param certificate_field: Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.
|
|
664
|
+
:param mapping_rules: A list of mapping entries for every supported specifier or sub-field.
|
|
665
|
+
|
|
666
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-attributemapping.html
|
|
667
|
+
:exampleMetadata: fixture=_generated
|
|
668
|
+
|
|
669
|
+
Example::
|
|
670
|
+
|
|
671
|
+
# The code below shows an example of how to instantiate this type.
|
|
672
|
+
# The values are placeholders you should change.
|
|
673
|
+
from aws_cdk import aws_rolesanywhere as rolesanywhere
|
|
674
|
+
|
|
675
|
+
attribute_mapping_property = rolesanywhere.CfnProfile.AttributeMappingProperty(
|
|
676
|
+
certificate_field="certificateField",
|
|
677
|
+
mapping_rules=[rolesanywhere.CfnProfile.MappingRuleProperty(
|
|
678
|
+
specifier="specifier"
|
|
679
|
+
)]
|
|
680
|
+
)
|
|
681
|
+
'''
|
|
682
|
+
if __debug__:
|
|
683
|
+
type_hints = typing.get_type_hints(_typecheckingstub__05d62dd9516ef6f649bf3b5d657cdfc92e568e217f35731a999cfd15f5b4f68e)
|
|
684
|
+
check_type(argname="argument certificate_field", value=certificate_field, expected_type=type_hints["certificate_field"])
|
|
685
|
+
check_type(argname="argument mapping_rules", value=mapping_rules, expected_type=type_hints["mapping_rules"])
|
|
686
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
687
|
+
"certificate_field": certificate_field,
|
|
688
|
+
"mapping_rules": mapping_rules,
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
@builtins.property
|
|
692
|
+
def certificate_field(self) -> builtins.str:
|
|
693
|
+
'''Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.
|
|
694
|
+
|
|
695
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-attributemapping.html#cfn-rolesanywhere-profile-attributemapping-certificatefield
|
|
696
|
+
'''
|
|
697
|
+
result = self._values.get("certificate_field")
|
|
698
|
+
assert result is not None, "Required property 'certificate_field' is missing"
|
|
699
|
+
return typing.cast(builtins.str, result)
|
|
700
|
+
|
|
701
|
+
@builtins.property
|
|
702
|
+
def mapping_rules(
|
|
703
|
+
self,
|
|
704
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProfile.MappingRuleProperty"]]]:
|
|
705
|
+
'''A list of mapping entries for every supported specifier or sub-field.
|
|
706
|
+
|
|
707
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-attributemapping.html#cfn-rolesanywhere-profile-attributemapping-mappingrules
|
|
708
|
+
'''
|
|
709
|
+
result = self._values.get("mapping_rules")
|
|
710
|
+
assert result is not None, "Required property 'mapping_rules' is missing"
|
|
711
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProfile.MappingRuleProperty"]]], result)
|
|
712
|
+
|
|
713
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
714
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
715
|
+
|
|
716
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
717
|
+
return not (rhs == self)
|
|
718
|
+
|
|
719
|
+
def __repr__(self) -> str:
|
|
720
|
+
return "AttributeMappingProperty(%s)" % ", ".join(
|
|
721
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
722
|
+
)
|
|
723
|
+
|
|
724
|
+
@jsii.data_type(
|
|
725
|
+
jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnProfile.MappingRuleProperty",
|
|
726
|
+
jsii_struct_bases=[],
|
|
727
|
+
name_mapping={"specifier": "specifier"},
|
|
728
|
+
)
|
|
729
|
+
class MappingRuleProperty:
|
|
730
|
+
def __init__(self, *, specifier: builtins.str) -> None:
|
|
731
|
+
'''A single mapping entry for each supported specifier or sub-field.
|
|
732
|
+
|
|
733
|
+
:param specifier: Specifier within a certificate field, such as CN, OU, or UID from the Subject field.
|
|
734
|
+
|
|
735
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-mappingrule.html
|
|
736
|
+
:exampleMetadata: fixture=_generated
|
|
737
|
+
|
|
738
|
+
Example::
|
|
739
|
+
|
|
740
|
+
# The code below shows an example of how to instantiate this type.
|
|
741
|
+
# The values are placeholders you should change.
|
|
742
|
+
from aws_cdk import aws_rolesanywhere as rolesanywhere
|
|
743
|
+
|
|
744
|
+
mapping_rule_property = rolesanywhere.CfnProfile.MappingRuleProperty(
|
|
745
|
+
specifier="specifier"
|
|
746
|
+
)
|
|
747
|
+
'''
|
|
748
|
+
if __debug__:
|
|
749
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7422c94323a807bff6335911405b595c6b214c6864553b5fe25c6dac4b8d588d)
|
|
750
|
+
check_type(argname="argument specifier", value=specifier, expected_type=type_hints["specifier"])
|
|
751
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
752
|
+
"specifier": specifier,
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
@builtins.property
|
|
756
|
+
def specifier(self) -> builtins.str:
|
|
757
|
+
'''Specifier within a certificate field, such as CN, OU, or UID from the Subject field.
|
|
758
|
+
|
|
759
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-mappingrule.html#cfn-rolesanywhere-profile-mappingrule-specifier
|
|
760
|
+
'''
|
|
761
|
+
result = self._values.get("specifier")
|
|
762
|
+
assert result is not None, "Required property 'specifier' is missing"
|
|
763
|
+
return typing.cast(builtins.str, result)
|
|
764
|
+
|
|
765
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
766
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
767
|
+
|
|
768
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
769
|
+
return not (rhs == self)
|
|
770
|
+
|
|
771
|
+
def __repr__(self) -> str:
|
|
772
|
+
return "MappingRuleProperty(%s)" % ", ".join(
|
|
773
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
774
|
+
)
|
|
775
|
+
|
|
619
776
|
|
|
620
777
|
@jsii.data_type(
|
|
621
778
|
jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnProfileProps",
|
|
@@ -623,6 +780,7 @@ class CfnProfile(
|
|
|
623
780
|
name_mapping={
|
|
624
781
|
"name": "name",
|
|
625
782
|
"role_arns": "roleArns",
|
|
783
|
+
"attribute_mappings": "attributeMappings",
|
|
626
784
|
"duration_seconds": "durationSeconds",
|
|
627
785
|
"enabled": "enabled",
|
|
628
786
|
"managed_policy_arns": "managedPolicyArns",
|
|
@@ -637,6 +795,7 @@ class CfnProfileProps:
|
|
|
637
795
|
*,
|
|
638
796
|
name: builtins.str,
|
|
639
797
|
role_arns: typing.Sequence[builtins.str],
|
|
798
|
+
attribute_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProfile.AttributeMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
640
799
|
duration_seconds: typing.Optional[jsii.Number] = None,
|
|
641
800
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
642
801
|
managed_policy_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -648,6 +807,7 @@ class CfnProfileProps:
|
|
|
648
807
|
|
|
649
808
|
:param name: The customer specified name of the resource.
|
|
650
809
|
:param role_arns: A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.
|
|
810
|
+
:param attribute_mappings: A mapping applied to the authenticating end-entity certificate.
|
|
651
811
|
:param duration_seconds: The number of seconds vended session credentials will be valid for.
|
|
652
812
|
:param enabled: The enabled status of the resource.
|
|
653
813
|
:param managed_policy_arns: A list of managed policy ARNs. Managed policies identified by this list will be applied to the vended session credentials.
|
|
@@ -669,6 +829,12 @@ class CfnProfileProps:
|
|
|
669
829
|
role_arns=["roleArns"],
|
|
670
830
|
|
|
671
831
|
# the properties below are optional
|
|
832
|
+
attribute_mappings=[rolesanywhere.CfnProfile.AttributeMappingProperty(
|
|
833
|
+
certificate_field="certificateField",
|
|
834
|
+
mapping_rules=[rolesanywhere.CfnProfile.MappingRuleProperty(
|
|
835
|
+
specifier="specifier"
|
|
836
|
+
)]
|
|
837
|
+
)],
|
|
672
838
|
duration_seconds=123,
|
|
673
839
|
enabled=False,
|
|
674
840
|
managed_policy_arns=["managedPolicyArns"],
|
|
@@ -684,6 +850,7 @@ class CfnProfileProps:
|
|
|
684
850
|
type_hints = typing.get_type_hints(_typecheckingstub__cc8a99a4d25c139ca779820c498d07ef2292a040188712d06b21830cb9c3d764)
|
|
685
851
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
686
852
|
check_type(argname="argument role_arns", value=role_arns, expected_type=type_hints["role_arns"])
|
|
853
|
+
check_type(argname="argument attribute_mappings", value=attribute_mappings, expected_type=type_hints["attribute_mappings"])
|
|
687
854
|
check_type(argname="argument duration_seconds", value=duration_seconds, expected_type=type_hints["duration_seconds"])
|
|
688
855
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
689
856
|
check_type(argname="argument managed_policy_arns", value=managed_policy_arns, expected_type=type_hints["managed_policy_arns"])
|
|
@@ -694,6 +861,8 @@ class CfnProfileProps:
|
|
|
694
861
|
"name": name,
|
|
695
862
|
"role_arns": role_arns,
|
|
696
863
|
}
|
|
864
|
+
if attribute_mappings is not None:
|
|
865
|
+
self._values["attribute_mappings"] = attribute_mappings
|
|
697
866
|
if duration_seconds is not None:
|
|
698
867
|
self._values["duration_seconds"] = duration_seconds
|
|
699
868
|
if enabled is not None:
|
|
@@ -727,6 +896,17 @@ class CfnProfileProps:
|
|
|
727
896
|
assert result is not None, "Required property 'role_arns' is missing"
|
|
728
897
|
return typing.cast(typing.List[builtins.str], result)
|
|
729
898
|
|
|
899
|
+
@builtins.property
|
|
900
|
+
def attribute_mappings(
|
|
901
|
+
self,
|
|
902
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProfile.AttributeMappingProperty]]]]:
|
|
903
|
+
'''A mapping applied to the authenticating end-entity certificate.
|
|
904
|
+
|
|
905
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-attributemappings
|
|
906
|
+
'''
|
|
907
|
+
result = self._values.get("attribute_mappings")
|
|
908
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProfile.AttributeMappingProperty]]]], result)
|
|
909
|
+
|
|
730
910
|
@builtins.property
|
|
731
911
|
def duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
732
912
|
'''The number of seconds vended session credentials will be valid for.
|
|
@@ -1038,11 +1218,11 @@ class CfnTrustAnchor(
|
|
|
1038
1218
|
) -> None:
|
|
1039
1219
|
'''Customizable notification settings that will be applied to notification events.
|
|
1040
1220
|
|
|
1041
|
-
IAM Roles Anywhere consumes these settings while notifying across multiple channels - CloudWatch metrics, EventBridge
|
|
1221
|
+
IAM Roles Anywhere consumes these settings while notifying across multiple channels - CloudWatch metrics, EventBridge, and AWS Health Dashboard .
|
|
1042
1222
|
|
|
1043
1223
|
:param enabled: Indicates whether the notification setting is enabled.
|
|
1044
1224
|
:param event: The event to which this notification setting is applied.
|
|
1045
|
-
:param channel: The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge
|
|
1225
|
+
:param channel: The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and AWS Health Dashboard to notify for an event. .. epigraph:: In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
|
|
1046
1226
|
:param threshold: The number of days before a notification event. This value is required for a notification setting that is enabled.
|
|
1047
1227
|
|
|
1048
1228
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-notificationsetting.html
|
|
@@ -1102,7 +1282,7 @@ class CfnTrustAnchor(
|
|
|
1102
1282
|
def channel(self) -> typing.Optional[builtins.str]:
|
|
1103
1283
|
'''The specified channel of notification.
|
|
1104
1284
|
|
|
1105
|
-
IAM Roles Anywhere uses CloudWatch metrics, EventBridge
|
|
1285
|
+
IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and AWS Health Dashboard to notify for an event.
|
|
1106
1286
|
.. epigraph::
|
|
1107
1287
|
|
|
1108
1288
|
In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
|
|
@@ -1520,6 +1700,7 @@ def _typecheckingstub__15739ec913066dea67815f6297a7c4e3ed351b4df22323a7b46fa138a
|
|
|
1520
1700
|
*,
|
|
1521
1701
|
name: builtins.str,
|
|
1522
1702
|
role_arns: typing.Sequence[builtins.str],
|
|
1703
|
+
attribute_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProfile.AttributeMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1523
1704
|
duration_seconds: typing.Optional[jsii.Number] = None,
|
|
1524
1705
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1525
1706
|
managed_policy_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -1554,6 +1735,12 @@ def _typecheckingstub__e8d24089a88ab86238c5340434a58996a10c5d047049180f8bfea3a52
|
|
|
1554
1735
|
"""Type checking stubs"""
|
|
1555
1736
|
pass
|
|
1556
1737
|
|
|
1738
|
+
def _typecheckingstub__a933bc8a589ca2e29de261062eefb4537f3f9eee0b743f26a28b8b55ea20b163(
|
|
1739
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProfile.AttributeMappingProperty]]]],
|
|
1740
|
+
) -> None:
|
|
1741
|
+
"""Type checking stubs"""
|
|
1742
|
+
pass
|
|
1743
|
+
|
|
1557
1744
|
def _typecheckingstub__c198b2977e47134c474ca242dadf9d96676c95614df55d34d80a89658dbb1f75(
|
|
1558
1745
|
value: typing.Optional[jsii.Number],
|
|
1559
1746
|
) -> None:
|
|
@@ -1590,10 +1777,26 @@ def _typecheckingstub__99305adebaa684e99f5f2849196087f9cc1788f2b87af7300c436a0fe
|
|
|
1590
1777
|
"""Type checking stubs"""
|
|
1591
1778
|
pass
|
|
1592
1779
|
|
|
1780
|
+
def _typecheckingstub__05d62dd9516ef6f649bf3b5d657cdfc92e568e217f35731a999cfd15f5b4f68e(
|
|
1781
|
+
*,
|
|
1782
|
+
certificate_field: builtins.str,
|
|
1783
|
+
mapping_rules: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProfile.MappingRuleProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
1784
|
+
) -> None:
|
|
1785
|
+
"""Type checking stubs"""
|
|
1786
|
+
pass
|
|
1787
|
+
|
|
1788
|
+
def _typecheckingstub__7422c94323a807bff6335911405b595c6b214c6864553b5fe25c6dac4b8d588d(
|
|
1789
|
+
*,
|
|
1790
|
+
specifier: builtins.str,
|
|
1791
|
+
) -> None:
|
|
1792
|
+
"""Type checking stubs"""
|
|
1793
|
+
pass
|
|
1794
|
+
|
|
1593
1795
|
def _typecheckingstub__cc8a99a4d25c139ca779820c498d07ef2292a040188712d06b21830cb9c3d764(
|
|
1594
1796
|
*,
|
|
1595
1797
|
name: builtins.str,
|
|
1596
1798
|
role_arns: typing.Sequence[builtins.str],
|
|
1799
|
+
attribute_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProfile.AttributeMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1597
1800
|
duration_seconds: typing.Optional[jsii.Number] = None,
|
|
1598
1801
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1599
1802
|
managed_policy_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -5992,7 +5992,7 @@ class CfnDomain(
|
|
|
5992
5992
|
'''A collection of settings that apply to spaces created in the domain.
|
|
5993
5993
|
|
|
5994
5994
|
:param execution_role: The ARN of the execution role for the space.
|
|
5995
|
-
:param custom_file_system_configs:
|
|
5995
|
+
:param custom_file_system_configs: The settings for assigning a custom file system to a domain. Permitted users can access this file system in Amazon SageMaker Studio.
|
|
5996
5996
|
:param custom_posix_user_config:
|
|
5997
5997
|
:param jupyter_lab_app_settings: The JupyterLab app settings.
|
|
5998
5998
|
:param jupyter_server_app_settings: The JupyterServer app settings.
|
|
@@ -6118,7 +6118,10 @@ class CfnDomain(
|
|
|
6118
6118
|
def custom_file_system_configs(
|
|
6119
6119
|
self,
|
|
6120
6120
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDomain.CustomFileSystemConfigProperty"]]]]:
|
|
6121
|
-
'''
|
|
6121
|
+
'''The settings for assigning a custom file system to a domain.
|
|
6122
|
+
|
|
6123
|
+
Permitted users can access this file system in Amazon SageMaker Studio.
|
|
6124
|
+
|
|
6122
6125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html#cfn-sagemaker-domain-defaultspacesettings-customfilesystemconfigs
|
|
6123
6126
|
'''
|
|
6124
6127
|
result = self._values.get("custom_file_system_configs")
|