aws-cdk-lib 2.172.0__py3-none-any.whl → 2.173.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 +57 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.172.0.jsii.tgz → aws-cdk-lib@2.173.1.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +111 -64
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_autoscaling/__init__.py +15 -6
- aws_cdk/aws_bedrock/__init__.py +32 -44
- aws_cdk/aws_chatbot/__init__.py +72 -46
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudfront/__init__.py +4 -2
- aws_cdk/aws_cloudtrail/__init__.py +104 -68
- aws_cdk/aws_cloudwatch/__init__.py +51 -14
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_codepipeline/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +221 -53
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +25 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +130 -48
- aws_cdk/aws_ecs/__init__.py +25 -13
- aws_cdk/aws_eks/__init__.py +86 -24
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +138 -128
- aws_cdk/aws_events/__init__.py +39 -26
- aws_cdk/aws_fsx/__init__.py +134 -10
- aws_cdk/aws_imagebuilder/__init__.py +8 -8
- aws_cdk/aws_invoicing/__init__.py +651 -0
- aws_cdk/aws_iot/__init__.py +28 -22
- aws_cdk/aws_iotfleetwise/__init__.py +473 -332
- aws_cdk/aws_iotsitewise/__init__.py +6 -4
- aws_cdk/aws_ivs/__init__.py +43 -31
- aws_cdk/aws_kendra/__init__.py +4 -0
- aws_cdk/aws_lakeformation/__init__.py +2 -1
- aws_cdk/aws_lambda/__init__.py +258 -156
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +24 -14
- aws_cdk/aws_medialive/__init__.py +2359 -5
- aws_cdk/aws_mediapackage/__init__.py +3 -9
- aws_cdk/aws_mediapackagev2/__init__.py +19 -17
- aws_cdk/aws_memorydb/__init__.py +664 -4
- aws_cdk/aws_qbusiness/__init__.py +2018 -66
- aws_cdk/aws_rds/__init__.py +30 -0
- aws_cdk/aws_resourcegroups/__init__.py +26 -17
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +224 -100
- aws_cdk/aws_route53resolver/__init__.py +4 -2
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +30 -19
- aws_cdk/aws_sagemaker/__init__.py +783 -9
- aws_cdk/aws_secretsmanager/__init__.py +20 -6
- aws_cdk/aws_securityhub/__init__.py +64 -32
- aws_cdk/aws_servicediscovery/__init__.py +43 -0
- aws_cdk/aws_ses/__init__.py +109 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +190 -35
- aws_cdk/aws_synthetics/__init__.py +7 -5
- aws_cdk/aws_vpclattice/__init__.py +1479 -122
- aws_cdk/aws_wisdom/__init__.py +2698 -232
- aws_cdk/aws_workspacesweb/__init__.py +118 -61
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/RECORD +69 -68
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/top_level.txt +0 -0
|
@@ -383,7 +383,7 @@ class CfnDataProtectionSettings(
|
|
|
383
383
|
metaclass=jsii.JSIIMeta,
|
|
384
384
|
jsii_type="aws-cdk-lib.aws_workspacesweb.CfnDataProtectionSettings",
|
|
385
385
|
):
|
|
386
|
-
'''
|
|
386
|
+
'''The data protection settings resource that can be associated with a web portal.
|
|
387
387
|
|
|
388
388
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html
|
|
389
389
|
:cloudformationResource: AWS::WorkSpacesWeb::DataProtectionSettings
|
|
@@ -453,12 +453,12 @@ class CfnDataProtectionSettings(
|
|
|
453
453
|
'''
|
|
454
454
|
:param scope: Scope in which this resource is defined.
|
|
455
455
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
456
|
-
:param additional_encryption_context:
|
|
457
|
-
:param customer_managed_key:
|
|
458
|
-
:param description:
|
|
459
|
-
:param display_name:
|
|
460
|
-
:param inline_redaction_configuration:
|
|
461
|
-
:param tags:
|
|
456
|
+
:param additional_encryption_context: The additional encryption context of the data protection settings.
|
|
457
|
+
:param customer_managed_key: The customer managed key used to encrypt sensitive information in the data protection settings.
|
|
458
|
+
:param description: The description of the data protection settings.
|
|
459
|
+
:param display_name: The display name of the data protection settings.
|
|
460
|
+
:param inline_redaction_configuration: The inline redaction configuration for the data protection settings.
|
|
461
|
+
:param tags: The tags of the data protection settings.
|
|
462
462
|
'''
|
|
463
463
|
if __debug__:
|
|
464
464
|
type_hints = typing.get_type_hints(_typecheckingstub__851565cba0af7c67b6951a864a7d6671af0039654a56671ed86d28919552d73e)
|
|
@@ -508,7 +508,8 @@ class CfnDataProtectionSettings(
|
|
|
508
508
|
@builtins.property
|
|
509
509
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
510
510
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
511
|
-
'''
|
|
511
|
+
'''A list of web portal ARNs that this data protection settings resource is associated with.
|
|
512
|
+
|
|
512
513
|
:cloudformationAttribute: AssociatedPortalArns
|
|
513
514
|
'''
|
|
514
515
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -516,7 +517,8 @@ class CfnDataProtectionSettings(
|
|
|
516
517
|
@builtins.property
|
|
517
518
|
@jsii.member(jsii_name="attrCreationDate")
|
|
518
519
|
def attr_creation_date(self) -> builtins.str:
|
|
519
|
-
'''
|
|
520
|
+
'''The creation date timestamp of the data protection settings.
|
|
521
|
+
|
|
520
522
|
:cloudformationAttribute: CreationDate
|
|
521
523
|
'''
|
|
522
524
|
return typing.cast(builtins.str, jsii.get(self, "attrCreationDate"))
|
|
@@ -524,7 +526,8 @@ class CfnDataProtectionSettings(
|
|
|
524
526
|
@builtins.property
|
|
525
527
|
@jsii.member(jsii_name="attrDataProtectionSettingsArn")
|
|
526
528
|
def attr_data_protection_settings_arn(self) -> builtins.str:
|
|
527
|
-
'''
|
|
529
|
+
'''The ARN of the data protection settings resource.
|
|
530
|
+
|
|
528
531
|
:cloudformationAttribute: DataProtectionSettingsArn
|
|
529
532
|
'''
|
|
530
533
|
return typing.cast(builtins.str, jsii.get(self, "attrDataProtectionSettingsArn"))
|
|
@@ -545,6 +548,7 @@ class CfnDataProtectionSettings(
|
|
|
545
548
|
def additional_encryption_context(
|
|
546
549
|
self,
|
|
547
550
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
551
|
+
'''The additional encryption context of the data protection settings.'''
|
|
548
552
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "additionalEncryptionContext"))
|
|
549
553
|
|
|
550
554
|
@additional_encryption_context.setter
|
|
@@ -560,6 +564,7 @@ class CfnDataProtectionSettings(
|
|
|
560
564
|
@builtins.property
|
|
561
565
|
@jsii.member(jsii_name="customerManagedKey")
|
|
562
566
|
def customer_managed_key(self) -> typing.Optional[builtins.str]:
|
|
567
|
+
'''The customer managed key used to encrypt sensitive information in the data protection settings.'''
|
|
563
568
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "customerManagedKey"))
|
|
564
569
|
|
|
565
570
|
@customer_managed_key.setter
|
|
@@ -572,6 +577,7 @@ class CfnDataProtectionSettings(
|
|
|
572
577
|
@builtins.property
|
|
573
578
|
@jsii.member(jsii_name="description")
|
|
574
579
|
def description(self) -> typing.Optional[builtins.str]:
|
|
580
|
+
'''The description of the data protection settings.'''
|
|
575
581
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
576
582
|
|
|
577
583
|
@description.setter
|
|
@@ -584,6 +590,7 @@ class CfnDataProtectionSettings(
|
|
|
584
590
|
@builtins.property
|
|
585
591
|
@jsii.member(jsii_name="displayName")
|
|
586
592
|
def display_name(self) -> typing.Optional[builtins.str]:
|
|
593
|
+
'''The display name of the data protection settings.'''
|
|
587
594
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "displayName"))
|
|
588
595
|
|
|
589
596
|
@display_name.setter
|
|
@@ -598,6 +605,7 @@ class CfnDataProtectionSettings(
|
|
|
598
605
|
def inline_redaction_configuration(
|
|
599
606
|
self,
|
|
600
607
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProtectionSettings.InlineRedactionConfigurationProperty"]]:
|
|
608
|
+
'''The inline redaction configuration for the data protection settings.'''
|
|
601
609
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProtectionSettings.InlineRedactionConfigurationProperty"]], jsii.get(self, "inlineRedactionConfiguration"))
|
|
602
610
|
|
|
603
611
|
@inline_redaction_configuration.setter
|
|
@@ -613,6 +621,7 @@ class CfnDataProtectionSettings(
|
|
|
613
621
|
@builtins.property
|
|
614
622
|
@jsii.member(jsii_name="tags")
|
|
615
623
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
624
|
+
'''The tags of the data protection settings.'''
|
|
616
625
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
617
626
|
|
|
618
627
|
@tags.setter
|
|
@@ -641,11 +650,12 @@ class CfnDataProtectionSettings(
|
|
|
641
650
|
keyword_regex: typing.Optional[builtins.str] = None,
|
|
642
651
|
pattern_description: typing.Optional[builtins.str] = None,
|
|
643
652
|
) -> None:
|
|
644
|
-
'''
|
|
645
|
-
|
|
646
|
-
:param
|
|
647
|
-
:param
|
|
648
|
-
:param
|
|
653
|
+
'''The pattern configuration for redacting custom data types in session.
|
|
654
|
+
|
|
655
|
+
:param pattern_name: The pattern name for the custom pattern.
|
|
656
|
+
:param pattern_regex: The pattern regex for the customer pattern. The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example: “/ab+c/gi”.
|
|
657
|
+
:param keyword_regex: The keyword regex for the customer pattern. After there is a match to the pattern regex, the keyword regex is used to search within the proximity of the match. If there is a keyword match, then the match is confirmed. If no keyword regex is provided, the pattern regex match will automatically be confirmed. The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example, “/ab+c/gi”
|
|
658
|
+
:param pattern_description: The pattern description for the customer pattern.
|
|
649
659
|
|
|
650
660
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html
|
|
651
661
|
:exampleMetadata: fixture=_generated
|
|
@@ -682,7 +692,8 @@ class CfnDataProtectionSettings(
|
|
|
682
692
|
|
|
683
693
|
@builtins.property
|
|
684
694
|
def pattern_name(self) -> builtins.str:
|
|
685
|
-
'''
|
|
695
|
+
'''The pattern name for the custom pattern.
|
|
696
|
+
|
|
686
697
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html#cfn-workspacesweb-dataprotectionsettings-custompattern-patternname
|
|
687
698
|
'''
|
|
688
699
|
result = self._values.get("pattern_name")
|
|
@@ -691,7 +702,10 @@ class CfnDataProtectionSettings(
|
|
|
691
702
|
|
|
692
703
|
@builtins.property
|
|
693
704
|
def pattern_regex(self) -> builtins.str:
|
|
694
|
-
'''
|
|
705
|
+
'''The pattern regex for the customer pattern.
|
|
706
|
+
|
|
707
|
+
The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example: “/ab+c/gi”.
|
|
708
|
+
|
|
695
709
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html#cfn-workspacesweb-dataprotectionsettings-custompattern-patternregex
|
|
696
710
|
'''
|
|
697
711
|
result = self._values.get("pattern_regex")
|
|
@@ -700,7 +714,10 @@ class CfnDataProtectionSettings(
|
|
|
700
714
|
|
|
701
715
|
@builtins.property
|
|
702
716
|
def keyword_regex(self) -> typing.Optional[builtins.str]:
|
|
703
|
-
'''
|
|
717
|
+
'''The keyword regex for the customer pattern.
|
|
718
|
+
|
|
719
|
+
After there is a match to the pattern regex, the keyword regex is used to search within the proximity of the match. If there is a keyword match, then the match is confirmed. If no keyword regex is provided, the pattern regex match will automatically be confirmed. The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example, “/ab+c/gi”
|
|
720
|
+
|
|
704
721
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html#cfn-workspacesweb-dataprotectionsettings-custompattern-keywordregex
|
|
705
722
|
'''
|
|
706
723
|
result = self._values.get("keyword_regex")
|
|
@@ -708,7 +725,8 @@ class CfnDataProtectionSettings(
|
|
|
708
725
|
|
|
709
726
|
@builtins.property
|
|
710
727
|
def pattern_description(self) -> typing.Optional[builtins.str]:
|
|
711
|
-
'''
|
|
728
|
+
'''The pattern description for the customer pattern.
|
|
729
|
+
|
|
712
730
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html#cfn-workspacesweb-dataprotectionsettings-custompattern-patterndescription
|
|
713
731
|
'''
|
|
714
732
|
result = self._values.get("pattern_description")
|
|
@@ -744,11 +762,12 @@ class CfnDataProtectionSettings(
|
|
|
744
762
|
global_enforced_urls: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
745
763
|
global_exempt_urls: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
746
764
|
) -> None:
|
|
747
|
-
'''
|
|
748
|
-
|
|
749
|
-
:param
|
|
750
|
-
:param
|
|
751
|
-
:param
|
|
765
|
+
'''The configuration for in-session inline redaction.
|
|
766
|
+
|
|
767
|
+
:param inline_redaction_patterns: The inline redaction patterns to be enabled for the inline redaction configuration.
|
|
768
|
+
:param global_confidence_level: The global confidence level for the inline redaction configuration. This indicates the certainty of data type matches in the redaction process. Confidence level 3 means high confidence, and requires a formatted text pattern match in order for content to be redacted. Confidence level 2 means medium confidence, and redaction considers both formatted and unformatted text, and adds keyword associate to the logic. Confidence level 1 means low confidence, and redaction is enforced for both formatted pattern + unformatted pattern without keyword. This is applied to patterns that do not have a pattern-level confidence level. Defaults to confidence level 2.
|
|
769
|
+
:param global_enforced_urls: The global enforced URL configuration for the inline redaction configuration. This is applied to patterns that do not have a pattern-level enforced URL list.
|
|
770
|
+
:param global_exempt_urls: The global exempt URL configuration for the inline redaction configuration. This is applied to patterns that do not have a pattern-level exempt URL list.
|
|
752
771
|
|
|
753
772
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html
|
|
754
773
|
:exampleMetadata: fixture=_generated
|
|
@@ -809,7 +828,8 @@ class CfnDataProtectionSettings(
|
|
|
809
828
|
def inline_redaction_patterns(
|
|
810
829
|
self,
|
|
811
830
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataProtectionSettings.InlineRedactionPatternProperty"]]]:
|
|
812
|
-
'''
|
|
831
|
+
'''The inline redaction patterns to be enabled for the inline redaction configuration.
|
|
832
|
+
|
|
813
833
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionconfiguration-inlineredactionpatterns
|
|
814
834
|
'''
|
|
815
835
|
result = self._values.get("inline_redaction_patterns")
|
|
@@ -818,7 +838,10 @@ class CfnDataProtectionSettings(
|
|
|
818
838
|
|
|
819
839
|
@builtins.property
|
|
820
840
|
def global_confidence_level(self) -> typing.Optional[jsii.Number]:
|
|
821
|
-
'''
|
|
841
|
+
'''The global confidence level for the inline redaction configuration.
|
|
842
|
+
|
|
843
|
+
This indicates the certainty of data type matches in the redaction process. Confidence level 3 means high confidence, and requires a formatted text pattern match in order for content to be redacted. Confidence level 2 means medium confidence, and redaction considers both formatted and unformatted text, and adds keyword associate to the logic. Confidence level 1 means low confidence, and redaction is enforced for both formatted pattern + unformatted pattern without keyword. This is applied to patterns that do not have a pattern-level confidence level. Defaults to confidence level 2.
|
|
844
|
+
|
|
822
845
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionconfiguration-globalconfidencelevel
|
|
823
846
|
'''
|
|
824
847
|
result = self._values.get("global_confidence_level")
|
|
@@ -826,7 +849,10 @@ class CfnDataProtectionSettings(
|
|
|
826
849
|
|
|
827
850
|
@builtins.property
|
|
828
851
|
def global_enforced_urls(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
829
|
-
'''
|
|
852
|
+
'''The global enforced URL configuration for the inline redaction configuration.
|
|
853
|
+
|
|
854
|
+
This is applied to patterns that do not have a pattern-level enforced URL list.
|
|
855
|
+
|
|
830
856
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionconfiguration-globalenforcedurls
|
|
831
857
|
'''
|
|
832
858
|
result = self._values.get("global_enforced_urls")
|
|
@@ -834,7 +860,10 @@ class CfnDataProtectionSettings(
|
|
|
834
860
|
|
|
835
861
|
@builtins.property
|
|
836
862
|
def global_exempt_urls(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
837
|
-
'''
|
|
863
|
+
'''The global exempt URL configuration for the inline redaction configuration.
|
|
864
|
+
|
|
865
|
+
This is applied to patterns that do not have a pattern-level exempt URL list.
|
|
866
|
+
|
|
838
867
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionconfiguration-globalexempturls
|
|
839
868
|
'''
|
|
840
869
|
result = self._values.get("global_exempt_urls")
|
|
@@ -874,13 +903,14 @@ class CfnDataProtectionSettings(
|
|
|
874
903
|
enforced_urls: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
875
904
|
exempt_urls: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
876
905
|
) -> None:
|
|
877
|
-
'''
|
|
878
|
-
|
|
879
|
-
:param
|
|
880
|
-
:param
|
|
881
|
-
:param
|
|
882
|
-
:param
|
|
883
|
-
:param
|
|
906
|
+
'''The set of patterns that determine the data types redacted in session.
|
|
907
|
+
|
|
908
|
+
:param redaction_place_holder: The redaction placeholder that will replace the redacted text in session for the inline redaction pattern.
|
|
909
|
+
:param built_in_pattern_id: The built-in pattern from the list of preconfigured patterns. Either a customPattern or builtInPatternId is required. To view the entire list of data types and their corresponding built-in pattern IDs, see `Base inline redaction <https://docs.aws.amazon.com/workspaces-web/latest/adminguide/base-inline-redaction.html>`_ .
|
|
910
|
+
:param confidence_level: The confidence level for inline redaction pattern. This indicates the certainty of data type matches in the redaction process. Confidence level 3 means high confidence, and requires a formatted text pattern match in order for content to be redacted. Confidence level 2 means medium confidence, and redaction considers both formatted and unformatted text, and adds keyword associate to the logic. Confidence level 1 means low confidence, and redaction is enforced for both formatted pattern + unformatted pattern without keyword. This overrides the global confidence level.
|
|
911
|
+
:param custom_pattern: The configuration for a custom pattern. Either a customPattern or builtInPatternId is required.
|
|
912
|
+
:param enforced_urls: The enforced URL configuration for the inline redaction pattern. This will override the global enforced URL configuration.
|
|
913
|
+
:param exempt_urls: The exempt URL configuration for the inline redaction pattern. This will override the global exempt URL configuration for the inline redaction pattern.
|
|
884
914
|
|
|
885
915
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html
|
|
886
916
|
:exampleMetadata: fixture=_generated
|
|
@@ -940,7 +970,8 @@ class CfnDataProtectionSettings(
|
|
|
940
970
|
def redaction_place_holder(
|
|
941
971
|
self,
|
|
942
972
|
) -> typing.Union[_IResolvable_da3f097b, "CfnDataProtectionSettings.RedactionPlaceHolderProperty"]:
|
|
943
|
-
'''
|
|
973
|
+
'''The redaction placeholder that will replace the redacted text in session for the inline redaction pattern.
|
|
974
|
+
|
|
944
975
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-redactionplaceholder
|
|
945
976
|
'''
|
|
946
977
|
result = self._values.get("redaction_place_holder")
|
|
@@ -949,7 +980,10 @@ class CfnDataProtectionSettings(
|
|
|
949
980
|
|
|
950
981
|
@builtins.property
|
|
951
982
|
def built_in_pattern_id(self) -> typing.Optional[builtins.str]:
|
|
952
|
-
'''
|
|
983
|
+
'''The built-in pattern from the list of preconfigured patterns.
|
|
984
|
+
|
|
985
|
+
Either a customPattern or builtInPatternId is required. To view the entire list of data types and their corresponding built-in pattern IDs, see `Base inline redaction <https://docs.aws.amazon.com/workspaces-web/latest/adminguide/base-inline-redaction.html>`_ .
|
|
986
|
+
|
|
953
987
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-builtinpatternid
|
|
954
988
|
'''
|
|
955
989
|
result = self._values.get("built_in_pattern_id")
|
|
@@ -957,7 +991,10 @@ class CfnDataProtectionSettings(
|
|
|
957
991
|
|
|
958
992
|
@builtins.property
|
|
959
993
|
def confidence_level(self) -> typing.Optional[jsii.Number]:
|
|
960
|
-
'''
|
|
994
|
+
'''The confidence level for inline redaction pattern.
|
|
995
|
+
|
|
996
|
+
This indicates the certainty of data type matches in the redaction process. Confidence level 3 means high confidence, and requires a formatted text pattern match in order for content to be redacted. Confidence level 2 means medium confidence, and redaction considers both formatted and unformatted text, and adds keyword associate to the logic. Confidence level 1 means low confidence, and redaction is enforced for both formatted pattern + unformatted pattern without keyword. This overrides the global confidence level.
|
|
997
|
+
|
|
961
998
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-confidencelevel
|
|
962
999
|
'''
|
|
963
1000
|
result = self._values.get("confidence_level")
|
|
@@ -967,7 +1004,10 @@ class CfnDataProtectionSettings(
|
|
|
967
1004
|
def custom_pattern(
|
|
968
1005
|
self,
|
|
969
1006
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataProtectionSettings.CustomPatternProperty"]]:
|
|
970
|
-
'''
|
|
1007
|
+
'''The configuration for a custom pattern.
|
|
1008
|
+
|
|
1009
|
+
Either a customPattern or builtInPatternId is required.
|
|
1010
|
+
|
|
971
1011
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-custompattern
|
|
972
1012
|
'''
|
|
973
1013
|
result = self._values.get("custom_pattern")
|
|
@@ -975,7 +1015,10 @@ class CfnDataProtectionSettings(
|
|
|
975
1015
|
|
|
976
1016
|
@builtins.property
|
|
977
1017
|
def enforced_urls(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
978
|
-
'''
|
|
1018
|
+
'''The enforced URL configuration for the inline redaction pattern.
|
|
1019
|
+
|
|
1020
|
+
This will override the global enforced URL configuration.
|
|
1021
|
+
|
|
979
1022
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-enforcedurls
|
|
980
1023
|
'''
|
|
981
1024
|
result = self._values.get("enforced_urls")
|
|
@@ -983,7 +1026,10 @@ class CfnDataProtectionSettings(
|
|
|
983
1026
|
|
|
984
1027
|
@builtins.property
|
|
985
1028
|
def exempt_urls(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
986
|
-
'''
|
|
1029
|
+
'''The exempt URL configuration for the inline redaction pattern.
|
|
1030
|
+
|
|
1031
|
+
This will override the global exempt URL configuration for the inline redaction pattern.
|
|
1032
|
+
|
|
987
1033
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionpattern-exempturls
|
|
988
1034
|
'''
|
|
989
1035
|
result = self._values.get("exempt_urls")
|
|
@@ -1015,9 +1061,10 @@ class CfnDataProtectionSettings(
|
|
|
1015
1061
|
redaction_place_holder_type: builtins.str,
|
|
1016
1062
|
redaction_place_holder_text: typing.Optional[builtins.str] = None,
|
|
1017
1063
|
) -> None:
|
|
1018
|
-
'''
|
|
1019
|
-
|
|
1020
|
-
:param
|
|
1064
|
+
'''The redaction placeholder that will replace the redacted text in session.
|
|
1065
|
+
|
|
1066
|
+
:param redaction_place_holder_type: The redaction placeholder type that will replace the redacted text in session.
|
|
1067
|
+
:param redaction_place_holder_text: The redaction placeholder text that will replace the redacted text in session for the custom text redaction placeholder type.
|
|
1021
1068
|
|
|
1022
1069
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholder.html
|
|
1023
1070
|
:exampleMetadata: fixture=_generated
|
|
@@ -1047,7 +1094,8 @@ class CfnDataProtectionSettings(
|
|
|
1047
1094
|
|
|
1048
1095
|
@builtins.property
|
|
1049
1096
|
def redaction_place_holder_type(self) -> builtins.str:
|
|
1050
|
-
'''
|
|
1097
|
+
'''The redaction placeholder type that will replace the redacted text in session.
|
|
1098
|
+
|
|
1051
1099
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholder.html#cfn-workspacesweb-dataprotectionsettings-redactionplaceholder-redactionplaceholdertype
|
|
1052
1100
|
'''
|
|
1053
1101
|
result = self._values.get("redaction_place_holder_type")
|
|
@@ -1056,7 +1104,8 @@ class CfnDataProtectionSettings(
|
|
|
1056
1104
|
|
|
1057
1105
|
@builtins.property
|
|
1058
1106
|
def redaction_place_holder_text(self) -> typing.Optional[builtins.str]:
|
|
1059
|
-
'''
|
|
1107
|
+
'''The redaction placeholder text that will replace the redacted text in session for the custom text redaction placeholder type.
|
|
1108
|
+
|
|
1060
1109
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholder.html#cfn-workspacesweb-dataprotectionsettings-redactionplaceholder-redactionplaceholdertext
|
|
1061
1110
|
'''
|
|
1062
1111
|
result = self._values.get("redaction_place_holder_text")
|
|
@@ -1099,12 +1148,12 @@ class CfnDataProtectionSettingsProps:
|
|
|
1099
1148
|
) -> None:
|
|
1100
1149
|
'''Properties for defining a ``CfnDataProtectionSettings``.
|
|
1101
1150
|
|
|
1102
|
-
:param additional_encryption_context:
|
|
1103
|
-
:param customer_managed_key:
|
|
1104
|
-
:param description:
|
|
1105
|
-
:param display_name:
|
|
1106
|
-
:param inline_redaction_configuration:
|
|
1107
|
-
:param tags:
|
|
1151
|
+
:param additional_encryption_context: The additional encryption context of the data protection settings.
|
|
1152
|
+
:param customer_managed_key: The customer managed key used to encrypt sensitive information in the data protection settings.
|
|
1153
|
+
:param description: The description of the data protection settings.
|
|
1154
|
+
:param display_name: The display name of the data protection settings.
|
|
1155
|
+
:param inline_redaction_configuration: The inline redaction configuration for the data protection settings.
|
|
1156
|
+
:param tags: The tags of the data protection settings.
|
|
1108
1157
|
|
|
1109
1158
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html
|
|
1110
1159
|
:exampleMetadata: fixture=_generated
|
|
@@ -1183,7 +1232,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1183
1232
|
def additional_encryption_context(
|
|
1184
1233
|
self,
|
|
1185
1234
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
1186
|
-
'''
|
|
1235
|
+
'''The additional encryption context of the data protection settings.
|
|
1236
|
+
|
|
1187
1237
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-additionalencryptioncontext
|
|
1188
1238
|
'''
|
|
1189
1239
|
result = self._values.get("additional_encryption_context")
|
|
@@ -1191,7 +1241,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1191
1241
|
|
|
1192
1242
|
@builtins.property
|
|
1193
1243
|
def customer_managed_key(self) -> typing.Optional[builtins.str]:
|
|
1194
|
-
'''
|
|
1244
|
+
'''The customer managed key used to encrypt sensitive information in the data protection settings.
|
|
1245
|
+
|
|
1195
1246
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-customermanagedkey
|
|
1196
1247
|
'''
|
|
1197
1248
|
result = self._values.get("customer_managed_key")
|
|
@@ -1199,7 +1250,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1199
1250
|
|
|
1200
1251
|
@builtins.property
|
|
1201
1252
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1202
|
-
'''
|
|
1253
|
+
'''The description of the data protection settings.
|
|
1254
|
+
|
|
1203
1255
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-description
|
|
1204
1256
|
'''
|
|
1205
1257
|
result = self._values.get("description")
|
|
@@ -1207,7 +1259,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1207
1259
|
|
|
1208
1260
|
@builtins.property
|
|
1209
1261
|
def display_name(self) -> typing.Optional[builtins.str]:
|
|
1210
|
-
'''
|
|
1262
|
+
'''The display name of the data protection settings.
|
|
1263
|
+
|
|
1211
1264
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-displayname
|
|
1212
1265
|
'''
|
|
1213
1266
|
result = self._values.get("display_name")
|
|
@@ -1217,7 +1270,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1217
1270
|
def inline_redaction_configuration(
|
|
1218
1271
|
self,
|
|
1219
1272
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataProtectionSettings.InlineRedactionConfigurationProperty]]:
|
|
1220
|
-
'''
|
|
1273
|
+
'''The inline redaction configuration for the data protection settings.
|
|
1274
|
+
|
|
1221
1275
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-inlineredactionconfiguration
|
|
1222
1276
|
'''
|
|
1223
1277
|
result = self._values.get("inline_redaction_configuration")
|
|
@@ -1225,7 +1279,8 @@ class CfnDataProtectionSettingsProps:
|
|
|
1225
1279
|
|
|
1226
1280
|
@builtins.property
|
|
1227
1281
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1228
|
-
'''
|
|
1282
|
+
'''The tags of the data protection settings.
|
|
1283
|
+
|
|
1229
1284
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#cfn-workspacesweb-dataprotectionsettings-tags
|
|
1230
1285
|
'''
|
|
1231
1286
|
result = self._values.get("tags")
|
|
@@ -2443,7 +2498,7 @@ class CfnPortal(
|
|
|
2443
2498
|
:param authentication_type: The type of authentication integration points used when signing into the web portal. Defaults to ``Standard`` . ``Standard`` web portals are authenticated directly through your identity provider (IdP). User and group access to your web portal is controlled through your IdP. You need to include an IdP resource in your template to integrate your IdP with your web portal. Completing the configuration for your IdP requires exchanging WorkSpaces Secure Browser’s SP metadata with your IdP’s IdP metadata. If your IdP requires the SP metadata first before returning the IdP metadata, you should follow these steps: 1. Create and deploy a CloudFormation template with a ``Standard`` portal with no ``IdentityProvider`` resource. 2. Retrieve the SP metadata using ``Fn:GetAtt`` , the WorkSpaces Secure Browser console, or by the calling the ``GetPortalServiceProviderMetadata`` API. 3. Submit the data to your IdP. 4. Add an ``IdentityProvider`` resource to your CloudFormation template. ``IAM Identity Center`` web portals are authenticated through AWS IAM Identity Center . They provide additional features, such as IdP-initiated authentication. Identity sources (including external identity provider integration) and other identity provider information must be configured in IAM Identity Center . User and group assignment must be done through the WorkSpaces Secure Browser console. These cannot be configured in CloudFormation.
|
|
2444
2499
|
:param browser_settings_arn: The ARN of the browser settings that is associated with this web portal.
|
|
2445
2500
|
:param customer_managed_key: The customer managed key of the web portal. *Pattern* : ``^arn:[\\w+=\\/,.@-]+:kms:[a-zA-Z0-9\\-]*:[a-zA-Z0-9]{1,12}:key\\/[a-zA-Z0-9-]+$``
|
|
2446
|
-
:param data_protection_settings_arn:
|
|
2501
|
+
:param data_protection_settings_arn: The ARN of the data protection settings.
|
|
2447
2502
|
:param display_name: The name of the web portal.
|
|
2448
2503
|
:param instance_type: The type and resources of the underlying instance.
|
|
2449
2504
|
:param ip_access_settings_arn: The ARN of the IP access settings that is associated with the web portal.
|
|
@@ -2653,6 +2708,7 @@ class CfnPortal(
|
|
|
2653
2708
|
@builtins.property
|
|
2654
2709
|
@jsii.member(jsii_name="dataProtectionSettingsArn")
|
|
2655
2710
|
def data_protection_settings_arn(self) -> typing.Optional[builtins.str]:
|
|
2711
|
+
'''The ARN of the data protection settings.'''
|
|
2656
2712
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "dataProtectionSettingsArn"))
|
|
2657
2713
|
|
|
2658
2714
|
@data_protection_settings_arn.setter
|
|
@@ -2831,7 +2887,7 @@ class CfnPortalProps:
|
|
|
2831
2887
|
:param authentication_type: The type of authentication integration points used when signing into the web portal. Defaults to ``Standard`` . ``Standard`` web portals are authenticated directly through your identity provider (IdP). User and group access to your web portal is controlled through your IdP. You need to include an IdP resource in your template to integrate your IdP with your web portal. Completing the configuration for your IdP requires exchanging WorkSpaces Secure Browser’s SP metadata with your IdP’s IdP metadata. If your IdP requires the SP metadata first before returning the IdP metadata, you should follow these steps: 1. Create and deploy a CloudFormation template with a ``Standard`` portal with no ``IdentityProvider`` resource. 2. Retrieve the SP metadata using ``Fn:GetAtt`` , the WorkSpaces Secure Browser console, or by the calling the ``GetPortalServiceProviderMetadata`` API. 3. Submit the data to your IdP. 4. Add an ``IdentityProvider`` resource to your CloudFormation template. ``IAM Identity Center`` web portals are authenticated through AWS IAM Identity Center . They provide additional features, such as IdP-initiated authentication. Identity sources (including external identity provider integration) and other identity provider information must be configured in IAM Identity Center . User and group assignment must be done through the WorkSpaces Secure Browser console. These cannot be configured in CloudFormation.
|
|
2832
2888
|
:param browser_settings_arn: The ARN of the browser settings that is associated with this web portal.
|
|
2833
2889
|
:param customer_managed_key: The customer managed key of the web portal. *Pattern* : ``^arn:[\\w+=\\/,.@-]+:kms:[a-zA-Z0-9\\-]*:[a-zA-Z0-9]{1,12}:key\\/[a-zA-Z0-9-]+$``
|
|
2834
|
-
:param data_protection_settings_arn:
|
|
2890
|
+
:param data_protection_settings_arn: The ARN of the data protection settings.
|
|
2835
2891
|
:param display_name: The name of the web portal.
|
|
2836
2892
|
:param instance_type: The type and resources of the underlying instance.
|
|
2837
2893
|
:param ip_access_settings_arn: The ARN of the IP access settings that is associated with the web portal.
|
|
@@ -2970,7 +3026,8 @@ class CfnPortalProps:
|
|
|
2970
3026
|
|
|
2971
3027
|
@builtins.property
|
|
2972
3028
|
def data_protection_settings_arn(self) -> typing.Optional[builtins.str]:
|
|
2973
|
-
'''
|
|
3029
|
+
'''The ARN of the data protection settings.
|
|
3030
|
+
|
|
2974
3031
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-portal.html#cfn-workspacesweb-portal-dataprotectionsettingsarn
|
|
2975
3032
|
'''
|
|
2976
3033
|
result = self._values.get("data_protection_settings_arn")
|