aws-cdk-lib 2.142.1__py3-none-any.whl → 2.143.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.

Files changed (49) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.142.1.jsii.tgz → aws-cdk-lib@2.143.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_amplify/__init__.py +12 -5
  4. aws_cdk/aws_backup/__init__.py +3 -3
  5. aws_cdk/aws_batch/__init__.py +237 -0
  6. aws_cdk/aws_bedrock/__init__.py +700 -16
  7. aws_cdk/aws_budgets/__init__.py +282 -3
  8. aws_cdk/aws_cloudtrail/__init__.py +12 -2
  9. aws_cdk/aws_codebuild/__init__.py +44 -0
  10. aws_cdk/aws_codepipeline/__init__.py +91 -4
  11. aws_cdk/aws_cognito/__init__.py +75 -0
  12. aws_cdk/aws_datazone/__init__.py +1743 -448
  13. aws_cdk/aws_dynamodb/__init__.py +60 -25
  14. aws_cdk/aws_ec2/__init__.py +112 -39
  15. aws_cdk/aws_ecs/__init__.py +3 -3
  16. aws_cdk/aws_ecs_patterns/__init__.py +106 -0
  17. aws_cdk/aws_eks/__init__.py +13 -10
  18. aws_cdk/aws_elasticache/__init__.py +9 -0
  19. aws_cdk/aws_events/__init__.py +219 -14
  20. aws_cdk/aws_events_targets/__init__.py +140 -3
  21. aws_cdk/aws_fms/__init__.py +42 -43
  22. aws_cdk/aws_fsx/__init__.py +3 -3
  23. aws_cdk/aws_identitystore/__init__.py +11 -11
  24. aws_cdk/aws_lambda/__init__.py +45 -0
  25. aws_cdk/aws_lambda_nodejs/__init__.py +16 -6
  26. aws_cdk/aws_lightsail/__init__.py +9 -0
  27. aws_cdk/aws_location/__init__.py +8 -4
  28. aws_cdk/aws_mediaconnect/__init__.py +1789 -39
  29. aws_cdk/aws_mediatailor/__init__.py +21 -1
  30. aws_cdk/aws_mwaa/__init__.py +82 -0
  31. aws_cdk/aws_neptune/__init__.py +374 -0
  32. aws_cdk/aws_personalize/__init__.py +9 -3
  33. aws_cdk/aws_pipes/__init__.py +7 -7
  34. aws_cdk/aws_quicksight/__init__.py +684 -156
  35. aws_cdk/aws_rds/__init__.py +88 -24
  36. aws_cdk/aws_redshift/__init__.py +0 -46
  37. aws_cdk/aws_route53resolver/__init__.py +23 -0
  38. aws_cdk/aws_s3/__init__.py +4 -4
  39. aws_cdk/aws_sagemaker/__init__.py +185 -4
  40. aws_cdk/aws_securityhub/__init__.py +387 -1
  41. aws_cdk/aws_ssm/__init__.py +14 -6
  42. aws_cdk/aws_sso/__init__.py +1243 -34
  43. aws_cdk/cx_api/__init__.py +16 -0
  44. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/METADATA +1 -1
  45. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/RECORD +49 -49
  46. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/LICENSE +0 -0
  47. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/NOTICE +0 -0
  48. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/WHEEL +0 -0
  49. {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/top_level.txt +0 -0
@@ -2873,6 +2873,312 @@ class CfnDBSubnetGroupProps:
2873
2873
  )
2874
2874
 
2875
2875
 
2876
+ @jsii.implements(_IInspectable_c2943556)
2877
+ class CfnEventSubscription(
2878
+ _CfnResource_9df397a6,
2879
+ metaclass=jsii.JSIIMeta,
2880
+ jsii_type="aws-cdk-lib.aws_neptune.CfnEventSubscription",
2881
+ ):
2882
+ '''Creates an event notification subscription.
2883
+
2884
+ This action requires a topic ARN (Amazon Resource Name) created by either the Neptune console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console.
2885
+
2886
+ You can specify the type of source (SourceType) you want to be notified of, provide a list of Neptune sources (SourceIds) that triggers the events, and provide a list of event categories (EventCategories) for events you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup.
2887
+
2888
+ If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIdentifier = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify a SourceIdentifier, you receive notice of the events for that source type for all your Neptune sources. If you do not specify either the SourceType nor the SourceIdentifier, you are notified of events generated from all Neptune sources belonging to your customer account.
2889
+
2890
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html
2891
+ :cloudformationResource: AWS::Neptune::EventSubscription
2892
+ :exampleMetadata: fixture=_generated
2893
+
2894
+ Example::
2895
+
2896
+ # The code below shows an example of how to instantiate this type.
2897
+ # The values are placeholders you should change.
2898
+ from aws_cdk import aws_neptune as neptune
2899
+
2900
+ cfn_event_subscription = neptune.CfnEventSubscription(self, "MyCfnEventSubscription",
2901
+ enabled=False,
2902
+ event_categories=["eventCategories"],
2903
+ sns_topic_arn="snsTopicArn",
2904
+ source_ids=["sourceIds"],
2905
+ source_type="sourceType"
2906
+ )
2907
+ '''
2908
+
2909
+ def __init__(
2910
+ self,
2911
+ scope: _constructs_77d1e7e8.Construct,
2912
+ id: builtins.str,
2913
+ *,
2914
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2915
+ event_categories: typing.Optional[typing.Sequence[builtins.str]] = None,
2916
+ sns_topic_arn: typing.Optional[builtins.str] = None,
2917
+ source_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2918
+ source_type: typing.Optional[builtins.str] = None,
2919
+ ) -> None:
2920
+ '''
2921
+ :param scope: Scope in which this resource is defined.
2922
+ :param id: Construct identifier for this resource (unique in its scope).
2923
+ :param enabled: A Boolean value indicating if the subscription is enabled. True indicates the subscription is enabled.
2924
+ :param event_categories:
2925
+ :param sns_topic_arn: The topic ARN of the event notification subscription.
2926
+ :param source_ids:
2927
+ :param source_type: The source type for the event notification subscription.
2928
+ '''
2929
+ if __debug__:
2930
+ type_hints = typing.get_type_hints(_typecheckingstub__4853d81bb6e17fc63404c1d9d1bd303b3e043850ca95ab4456a810f0cc64fe78)
2931
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2932
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2933
+ props = CfnEventSubscriptionProps(
2934
+ enabled=enabled,
2935
+ event_categories=event_categories,
2936
+ sns_topic_arn=sns_topic_arn,
2937
+ source_ids=source_ids,
2938
+ source_type=source_type,
2939
+ )
2940
+
2941
+ jsii.create(self.__class__, self, [scope, id, props])
2942
+
2943
+ @jsii.member(jsii_name="inspect")
2944
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
2945
+ '''Examines the CloudFormation resource and discloses attributes.
2946
+
2947
+ :param inspector: tree inspector to collect and process attributes.
2948
+ '''
2949
+ if __debug__:
2950
+ type_hints = typing.get_type_hints(_typecheckingstub__41a813e751b1426b53fa005cd45581db52f93b6c9a4cb6522d89aba1b5474e62)
2951
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
2952
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
2953
+
2954
+ @jsii.member(jsii_name="renderProperties")
2955
+ def _render_properties(
2956
+ self,
2957
+ props: typing.Mapping[builtins.str, typing.Any],
2958
+ ) -> typing.Mapping[builtins.str, typing.Any]:
2959
+ '''
2960
+ :param props: -
2961
+ '''
2962
+ if __debug__:
2963
+ type_hints = typing.get_type_hints(_typecheckingstub__1019778da33af7ffea07d0dcfdddf9f4e6bab96359db115e025cbeb9fd3f769b)
2964
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
2965
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
2966
+
2967
+ @jsii.python.classproperty
2968
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
2969
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
2970
+ '''The CloudFormation resource type name for this resource class.'''
2971
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
2972
+
2973
+ @builtins.property
2974
+ @jsii.member(jsii_name="attrId")
2975
+ def attr_id(self) -> builtins.str:
2976
+ '''
2977
+ :cloudformationAttribute: Id
2978
+ '''
2979
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
2980
+
2981
+ @builtins.property
2982
+ @jsii.member(jsii_name="cfnProperties")
2983
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
2984
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
2985
+
2986
+ @builtins.property
2987
+ @jsii.member(jsii_name="enabled")
2988
+ def enabled(
2989
+ self,
2990
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
2991
+ '''A Boolean value indicating if the subscription is enabled.'''
2992
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
2993
+
2994
+ @enabled.setter
2995
+ def enabled(
2996
+ self,
2997
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
2998
+ ) -> None:
2999
+ if __debug__:
3000
+ type_hints = typing.get_type_hints(_typecheckingstub__2ef5fdcd4988a6fa95d4be96d80a0234938bc2612ec11dbfcc406afee49f7d89)
3001
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3002
+ jsii.set(self, "enabled", value)
3003
+
3004
+ @builtins.property
3005
+ @jsii.member(jsii_name="eventCategories")
3006
+ def event_categories(self) -> typing.Optional[typing.List[builtins.str]]:
3007
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "eventCategories"))
3008
+
3009
+ @event_categories.setter
3010
+ def event_categories(
3011
+ self,
3012
+ value: typing.Optional[typing.List[builtins.str]],
3013
+ ) -> None:
3014
+ if __debug__:
3015
+ type_hints = typing.get_type_hints(_typecheckingstub__111e4034140f86ff26410f58eebe254ec0df2120150f6443532c2f1053082699)
3016
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3017
+ jsii.set(self, "eventCategories", value)
3018
+
3019
+ @builtins.property
3020
+ @jsii.member(jsii_name="snsTopicArn")
3021
+ def sns_topic_arn(self) -> typing.Optional[builtins.str]:
3022
+ '''The topic ARN of the event notification subscription.'''
3023
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "snsTopicArn"))
3024
+
3025
+ @sns_topic_arn.setter
3026
+ def sns_topic_arn(self, value: typing.Optional[builtins.str]) -> None:
3027
+ if __debug__:
3028
+ type_hints = typing.get_type_hints(_typecheckingstub__52fb458cc4803abc3d472f5ca4edf22c2f9a84d5d6055ac52d01dea8a313e013)
3029
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3030
+ jsii.set(self, "snsTopicArn", value)
3031
+
3032
+ @builtins.property
3033
+ @jsii.member(jsii_name="sourceIds")
3034
+ def source_ids(self) -> typing.Optional[typing.List[builtins.str]]:
3035
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "sourceIds"))
3036
+
3037
+ @source_ids.setter
3038
+ def source_ids(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
3039
+ if __debug__:
3040
+ type_hints = typing.get_type_hints(_typecheckingstub__694d5c85265f82875056645d86b38bbe96fc0e3b1cdffa52f881898ae8bc2edb)
3041
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3042
+ jsii.set(self, "sourceIds", value)
3043
+
3044
+ @builtins.property
3045
+ @jsii.member(jsii_name="sourceType")
3046
+ def source_type(self) -> typing.Optional[builtins.str]:
3047
+ '''The source type for the event notification subscription.'''
3048
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sourceType"))
3049
+
3050
+ @source_type.setter
3051
+ def source_type(self, value: typing.Optional[builtins.str]) -> None:
3052
+ if __debug__:
3053
+ type_hints = typing.get_type_hints(_typecheckingstub__4743dbdfbbc96ad79cdb0ad58c8eb57c79460b33c86861de97ff6a633921e5db)
3054
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3055
+ jsii.set(self, "sourceType", value)
3056
+
3057
+
3058
+ @jsii.data_type(
3059
+ jsii_type="aws-cdk-lib.aws_neptune.CfnEventSubscriptionProps",
3060
+ jsii_struct_bases=[],
3061
+ name_mapping={
3062
+ "enabled": "enabled",
3063
+ "event_categories": "eventCategories",
3064
+ "sns_topic_arn": "snsTopicArn",
3065
+ "source_ids": "sourceIds",
3066
+ "source_type": "sourceType",
3067
+ },
3068
+ )
3069
+ class CfnEventSubscriptionProps:
3070
+ def __init__(
3071
+ self,
3072
+ *,
3073
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3074
+ event_categories: typing.Optional[typing.Sequence[builtins.str]] = None,
3075
+ sns_topic_arn: typing.Optional[builtins.str] = None,
3076
+ source_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
3077
+ source_type: typing.Optional[builtins.str] = None,
3078
+ ) -> None:
3079
+ '''Properties for defining a ``CfnEventSubscription``.
3080
+
3081
+ :param enabled: A Boolean value indicating if the subscription is enabled. True indicates the subscription is enabled.
3082
+ :param event_categories:
3083
+ :param sns_topic_arn: The topic ARN of the event notification subscription.
3084
+ :param source_ids:
3085
+ :param source_type: The source type for the event notification subscription.
3086
+
3087
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html
3088
+ :exampleMetadata: fixture=_generated
3089
+
3090
+ Example::
3091
+
3092
+ # The code below shows an example of how to instantiate this type.
3093
+ # The values are placeholders you should change.
3094
+ from aws_cdk import aws_neptune as neptune
3095
+
3096
+ cfn_event_subscription_props = neptune.CfnEventSubscriptionProps(
3097
+ enabled=False,
3098
+ event_categories=["eventCategories"],
3099
+ sns_topic_arn="snsTopicArn",
3100
+ source_ids=["sourceIds"],
3101
+ source_type="sourceType"
3102
+ )
3103
+ '''
3104
+ if __debug__:
3105
+ type_hints = typing.get_type_hints(_typecheckingstub__be12afbc64d35614ba28986fc60eff385d7080e57aabefaff50d73a28f572237)
3106
+ check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
3107
+ check_type(argname="argument event_categories", value=event_categories, expected_type=type_hints["event_categories"])
3108
+ check_type(argname="argument sns_topic_arn", value=sns_topic_arn, expected_type=type_hints["sns_topic_arn"])
3109
+ check_type(argname="argument source_ids", value=source_ids, expected_type=type_hints["source_ids"])
3110
+ check_type(argname="argument source_type", value=source_type, expected_type=type_hints["source_type"])
3111
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
3112
+ if enabled is not None:
3113
+ self._values["enabled"] = enabled
3114
+ if event_categories is not None:
3115
+ self._values["event_categories"] = event_categories
3116
+ if sns_topic_arn is not None:
3117
+ self._values["sns_topic_arn"] = sns_topic_arn
3118
+ if source_ids is not None:
3119
+ self._values["source_ids"] = source_ids
3120
+ if source_type is not None:
3121
+ self._values["source_type"] = source_type
3122
+
3123
+ @builtins.property
3124
+ def enabled(
3125
+ self,
3126
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
3127
+ '''A Boolean value indicating if the subscription is enabled.
3128
+
3129
+ True indicates the subscription is enabled.
3130
+
3131
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#cfn-neptune-eventsubscription-enabled
3132
+ '''
3133
+ result = self._values.get("enabled")
3134
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
3135
+
3136
+ @builtins.property
3137
+ def event_categories(self) -> typing.Optional[typing.List[builtins.str]]:
3138
+ '''
3139
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#cfn-neptune-eventsubscription-eventcategories
3140
+ '''
3141
+ result = self._values.get("event_categories")
3142
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
3143
+
3144
+ @builtins.property
3145
+ def sns_topic_arn(self) -> typing.Optional[builtins.str]:
3146
+ '''The topic ARN of the event notification subscription.
3147
+
3148
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#cfn-neptune-eventsubscription-snstopicarn
3149
+ '''
3150
+ result = self._values.get("sns_topic_arn")
3151
+ return typing.cast(typing.Optional[builtins.str], result)
3152
+
3153
+ @builtins.property
3154
+ def source_ids(self) -> typing.Optional[typing.List[builtins.str]]:
3155
+ '''
3156
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#cfn-neptune-eventsubscription-sourceids
3157
+ '''
3158
+ result = self._values.get("source_ids")
3159
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
3160
+
3161
+ @builtins.property
3162
+ def source_type(self) -> typing.Optional[builtins.str]:
3163
+ '''The source type for the event notification subscription.
3164
+
3165
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#cfn-neptune-eventsubscription-sourcetype
3166
+ '''
3167
+ result = self._values.get("source_type")
3168
+ return typing.cast(typing.Optional[builtins.str], result)
3169
+
3170
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3171
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3172
+
3173
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3174
+ return not (rhs == self)
3175
+
3176
+ def __repr__(self) -> str:
3177
+ return "CfnEventSubscriptionProps(%s)" % ", ".join(
3178
+ k + "=" + repr(v) for k, v in self._values.items()
3179
+ )
3180
+
3181
+
2876
3182
  __all__ = [
2877
3183
  "CfnDBCluster",
2878
3184
  "CfnDBClusterParameterGroup",
@@ -2884,6 +3190,8 @@ __all__ = [
2884
3190
  "CfnDBParameterGroupProps",
2885
3191
  "CfnDBSubnetGroup",
2886
3192
  "CfnDBSubnetGroupProps",
3193
+ "CfnEventSubscription",
3194
+ "CfnEventSubscriptionProps",
2887
3195
  ]
2888
3196
 
2889
3197
  publication.publish()
@@ -3433,3 +3741,69 @@ def _typecheckingstub__82ebea6599fb4b541844cf24f7d771410b52af442a682c2ccec51eabe
3433
3741
  ) -> None:
3434
3742
  """Type checking stubs"""
3435
3743
  pass
3744
+
3745
+ def _typecheckingstub__4853d81bb6e17fc63404c1d9d1bd303b3e043850ca95ab4456a810f0cc64fe78(
3746
+ scope: _constructs_77d1e7e8.Construct,
3747
+ id: builtins.str,
3748
+ *,
3749
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3750
+ event_categories: typing.Optional[typing.Sequence[builtins.str]] = None,
3751
+ sns_topic_arn: typing.Optional[builtins.str] = None,
3752
+ source_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
3753
+ source_type: typing.Optional[builtins.str] = None,
3754
+ ) -> None:
3755
+ """Type checking stubs"""
3756
+ pass
3757
+
3758
+ def _typecheckingstub__41a813e751b1426b53fa005cd45581db52f93b6c9a4cb6522d89aba1b5474e62(
3759
+ inspector: _TreeInspector_488e0dd5,
3760
+ ) -> None:
3761
+ """Type checking stubs"""
3762
+ pass
3763
+
3764
+ def _typecheckingstub__1019778da33af7ffea07d0dcfdddf9f4e6bab96359db115e025cbeb9fd3f769b(
3765
+ props: typing.Mapping[builtins.str, typing.Any],
3766
+ ) -> None:
3767
+ """Type checking stubs"""
3768
+ pass
3769
+
3770
+ def _typecheckingstub__2ef5fdcd4988a6fa95d4be96d80a0234938bc2612ec11dbfcc406afee49f7d89(
3771
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
3772
+ ) -> None:
3773
+ """Type checking stubs"""
3774
+ pass
3775
+
3776
+ def _typecheckingstub__111e4034140f86ff26410f58eebe254ec0df2120150f6443532c2f1053082699(
3777
+ value: typing.Optional[typing.List[builtins.str]],
3778
+ ) -> None:
3779
+ """Type checking stubs"""
3780
+ pass
3781
+
3782
+ def _typecheckingstub__52fb458cc4803abc3d472f5ca4edf22c2f9a84d5d6055ac52d01dea8a313e013(
3783
+ value: typing.Optional[builtins.str],
3784
+ ) -> None:
3785
+ """Type checking stubs"""
3786
+ pass
3787
+
3788
+ def _typecheckingstub__694d5c85265f82875056645d86b38bbe96fc0e3b1cdffa52f881898ae8bc2edb(
3789
+ value: typing.Optional[typing.List[builtins.str]],
3790
+ ) -> None:
3791
+ """Type checking stubs"""
3792
+ pass
3793
+
3794
+ def _typecheckingstub__4743dbdfbbc96ad79cdb0ad58c8eb57c79460b33c86861de97ff6a633921e5db(
3795
+ value: typing.Optional[builtins.str],
3796
+ ) -> None:
3797
+ """Type checking stubs"""
3798
+ pass
3799
+
3800
+ def _typecheckingstub__be12afbc64d35614ba28986fc60eff385d7080e57aabefaff50d73a28f572237(
3801
+ *,
3802
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3803
+ event_categories: typing.Optional[typing.Sequence[builtins.str]] = None,
3804
+ sns_topic_arn: typing.Optional[builtins.str] = None,
3805
+ source_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
3806
+ source_type: typing.Optional[builtins.str] = None,
3807
+ ) -> None:
3808
+ """Type checking stubs"""
3809
+ pass
@@ -272,9 +272,9 @@ class CfnDataset(
272
272
  *,
273
273
  data_location: typing.Optional[builtins.str] = None,
274
274
  ) -> None:
275
- '''Describes the data source that contains the data to upload to a dataset.
275
+ '''Describes the data source that contains the data to upload to a dataset, or the list of records to delete from Amazon Personalize.
276
276
 
277
- :param data_location: The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For example: ``s3://bucket-name/folder-name/``
277
+ :param data_location: For dataset import jobs, the path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For data deletion jobs, the path to the Amazon S3 bucket that stores the list of records to delete. For example: ``s3://bucket-name/folder-name/fileName.csv`` If your CSV files are in a folder in your Amazon S3 bucket and you want your import job or data deletion job to consider multiple files, you can specify the path to the folder. With a data deletion job, Amazon Personalize uses all files in the folder and any sub folder. Use the following syntax with a ``/`` after the folder name: ``s3://bucket-name/folder-name/``
278
278
 
279
279
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-dataset-datasource.html
280
280
  :exampleMetadata: fixture=_generated
@@ -298,10 +298,16 @@ class CfnDataset(
298
298
 
299
299
  @builtins.property
300
300
  def data_location(self) -> typing.Optional[builtins.str]:
301
- '''The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored.
301
+ '''For dataset import jobs, the path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored.
302
+
303
+ For data deletion jobs, the path to the Amazon S3 bucket that stores the list of records to delete.
302
304
 
303
305
  For example:
304
306
 
307
+ ``s3://bucket-name/folder-name/fileName.csv``
308
+
309
+ If your CSV files are in a folder in your Amazon S3 bucket and you want your import job or data deletion job to consider multiple files, you can specify the path to the folder. With a data deletion job, Amazon Personalize uses all files in the folder and any sub folder. Use the following syntax with a ``/`` after the folder name:
310
+
305
311
  ``s3://bucket-name/folder-name/``
306
312
 
307
313
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-dataset-datasource.html#cfn-personalize-dataset-datasource-datalocation
@@ -1874,10 +1874,10 @@ class CfnPipe(
1874
1874
  def __init__(self, *, size_in_gib: jsii.Number) -> None:
1875
1875
  '''The amount of ephemeral storage to allocate for the task.
1876
1876
 
1877
- This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate . For more information, see `Fargate task storage <https://docs.aws.amazon.com/AmazonECS/latest/userguide/using_data_volumes.html>`_ in the *Amazon ECS User Guide for Fargate* .
1877
+ This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see `Fargate task storage <https://docs.aws.amazon.com/AmazonECS/latest/userguide/using_data_volumes.html>`_ in the *Amazon ECS User Guide for Fargate* .
1878
1878
  .. epigraph::
1879
1879
 
1880
- This parameter is only supported for tasks hosted on Fargate using Linux platform version ``1.4.0`` or later. This parameter is not supported for Windows containers on Fargate .
1880
+ This parameter is only supported for tasks hosted on Fargate using Linux platform version ``1.4.0`` or later. This parameter is not supported for Windows containers on Fargate.
1881
1881
 
1882
1882
  :param size_in_gib: The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is ``21`` GiB and the maximum supported value is ``200`` GiB. Default: - 0
1883
1883
 
@@ -3638,7 +3638,7 @@ class CfnPipe(
3638
3638
  :param kinesis_stream_parameters: The parameters for using a Kinesis stream as a source.
3639
3639
  :param managed_streaming_kafka_parameters: The parameters for using an MSK stream as a source.
3640
3640
  :param rabbit_mq_broker_parameters: The parameters for using a Rabbit MQ broker as a source.
3641
- :param self_managed_kafka_parameters: The parameters for using a stream as a source. A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
3641
+ :param self_managed_kafka_parameters: The parameters for using a self-managed Apache Kafka stream as a source. A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
3642
3642
  :param sqs_queue_parameters: The parameters for using a Amazon SQS stream as a source.
3643
3643
 
3644
3644
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourceparameters.html
@@ -3848,7 +3848,7 @@ class CfnPipe(
3848
3848
  def self_managed_kafka_parameters(
3849
3849
  self,
3850
3850
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPipe.PipeSourceSelfManagedKafkaParametersProperty"]]:
3851
- '''The parameters for using a stream as a source.
3851
+ '''The parameters for using a self-managed Apache Kafka stream as a source.
3852
3852
 
3853
3853
  A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
3854
3854
 
@@ -4036,7 +4036,7 @@ class CfnPipe(
4036
4036
  starting_position: typing.Optional[builtins.str] = None,
4037
4037
  vpc: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4038
4038
  ) -> None:
4039
- '''The parameters for using a stream as a source.
4039
+ '''The parameters for using a self-managed Apache Kafka stream as a source.
4040
4040
 
4041
4041
  A *self managed* cluster refers to any Apache Kafka cluster not hosted by AWS . This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as `Confluent Cloud <https://docs.aws.amazon.com/https://www.confluent.io/>`_ , `CloudKarafka <https://docs.aws.amazon.com/https://www.cloudkarafka.com/>`_ , or `Redpanda <https://docs.aws.amazon.com/https://redpanda.com/>`_ . For more information, see `Apache Kafka streams as a source <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-kafka.html>`_ in the *Amazon EventBridge User Guide* .
4042
4042
 
@@ -5556,7 +5556,7 @@ class CfnPipe(
5556
5556
  :param database: The name of the database. Required when authenticating using temporary credentials.
5557
5557
  :param sqls: The SQL statement text to run.
5558
5558
  :param db_user: The database user name. Required when authenticating using temporary credentials.
5559
- :param secret_manager_arn: The name or ARN of the secret that enables access to the database. Required when authenticating using Secrets Manager .
5559
+ :param secret_manager_arn: The name or ARN of the secret that enables access to the database. Required when authenticating using Secrets Manager.
5560
5560
  :param statement_name: The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
5561
5561
  :param with_event: Indicates whether to send an event back to EventBridge after the SQL statement runs. Default: - false
5562
5562
 
@@ -5638,7 +5638,7 @@ class CfnPipe(
5638
5638
  def secret_manager_arn(self) -> typing.Optional[builtins.str]:
5639
5639
  '''The name or ARN of the secret that enables access to the database.
5640
5640
 
5641
- Required when authenticating using Secrets Manager .
5641
+ Required when authenticating using Secrets Manager.
5642
5642
 
5643
5643
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargetredshiftdataparameters.html#cfn-pipes-pipe-pipetargetredshiftdataparameters-secretmanagerarn
5644
5644
  '''