aws-cdk-lib 2.139.1__py3-none-any.whl → 2.141.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.139.1.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +70 -56
- aws_cdk/aws_apigateway/__init__.py +126 -53
- aws_cdk/aws_applicationautoscaling/__init__.py +1 -4
- aws_cdk/aws_arczonalshift/__init__.py +49 -44
- aws_cdk/aws_bedrock/__init__.py +2829 -147
- aws_cdk/aws_cloudfront/__init__.py +51 -9
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codecommit/__init__.py +72 -46
- aws_cdk/aws_connectcampaigns/__init__.py +34 -4
- aws_cdk/aws_datasync/__init__.py +96 -75
- aws_cdk/aws_dms/__init__.py +0 -269
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +239 -84
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +2 -4
- aws_cdk/aws_efs/__init__.py +16 -2
- aws_cdk/aws_eks/__init__.py +57 -0
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +115 -0
- aws_cdk/aws_events_targets/__init__.py +15 -0
- aws_cdk/aws_fis/__init__.py +2 -1
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +1984 -107
- aws_cdk/aws_globalaccelerator/__init__.py +20 -16
- aws_cdk/aws_iam/__init__.py +2 -2
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kinesis/__init__.py +21 -0
- aws_cdk/aws_kinesisvideo/__init__.py +6 -4
- aws_cdk/aws_kms/__init__.py +33 -6
- aws_cdk/aws_lambda/__init__.py +0 -9
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_medialive/__init__.py +444 -3
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +1155 -0
- aws_cdk/aws_personalize/__init__.py +8 -2
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +5583 -0
- aws_cdk/aws_quicksight/__init__.py +10063 -1450
- aws_cdk/aws_rds/__init__.py +77 -5
- aws_cdk/aws_redshiftserverless/__init__.py +13 -9
- aws_cdk/aws_route53/__init__.py +350 -0
- aws_cdk/aws_route53profiles/__init__.py +1048 -0
- aws_cdk/aws_s3/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_transfer/__init__.py +102 -37
- aws_cdk/aws_voiceid/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +92 -6
- aws_cdk/custom_resources/__init__.py +23 -2
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +60 -57
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_s3/__init__.py
CHANGED
|
@@ -248,7 +248,7 @@ my_cross_region_bucket = s3.Bucket.from_bucket_attributes(self, "CrossRegionImpo
|
|
|
248
248
|
|
|
249
249
|
The Amazon S3 notification feature enables you to receive notifications when
|
|
250
250
|
certain events happen in your bucket as described under [S3 Bucket
|
|
251
|
-
Notifications] of the S3 Developer Guide.
|
|
251
|
+
Notifications](https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) of the S3 Developer Guide.
|
|
252
252
|
|
|
253
253
|
To subscribe for bucket notifications, use the `bucket.addEventNotification` method. The
|
|
254
254
|
`bucket.addObjectCreatedNotification` and `bucket.addObjectRemovedNotification` can also be used for
|
|
@@ -5866,10 +5866,10 @@ class CfnDomain(
|
|
|
5866
5866
|
default_ebs_volume_size_in_gb: jsii.Number,
|
|
5867
5867
|
maximum_ebs_volume_size_in_gb: jsii.Number,
|
|
5868
5868
|
) -> None:
|
|
5869
|
-
'''A collection of default EBS storage settings that
|
|
5869
|
+
'''A collection of default EBS storage settings that apply to spaces created within a domain or user profile.
|
|
5870
5870
|
|
|
5871
|
-
:param default_ebs_volume_size_in_gb: The default size of the EBS storage volume for a
|
|
5872
|
-
:param maximum_ebs_volume_size_in_gb: The maximum size of the EBS storage volume for a
|
|
5871
|
+
:param default_ebs_volume_size_in_gb: The default size of the EBS storage volume for a space.
|
|
5872
|
+
:param maximum_ebs_volume_size_in_gb: The maximum size of the EBS storage volume for a space.
|
|
5873
5873
|
|
|
5874
5874
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultebsstoragesettings.html
|
|
5875
5875
|
:exampleMetadata: fixture=_generated
|
|
@@ -5896,7 +5896,7 @@ class CfnDomain(
|
|
|
5896
5896
|
|
|
5897
5897
|
@builtins.property
|
|
5898
5898
|
def default_ebs_volume_size_in_gb(self) -> jsii.Number:
|
|
5899
|
-
'''The default size of the EBS storage volume for a
|
|
5899
|
+
'''The default size of the EBS storage volume for a space.
|
|
5900
5900
|
|
|
5901
5901
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultebsstoragesettings.html#cfn-sagemaker-domain-defaultebsstoragesettings-defaultebsvolumesizeingb
|
|
5902
5902
|
'''
|
|
@@ -5906,7 +5906,7 @@ class CfnDomain(
|
|
|
5906
5906
|
|
|
5907
5907
|
@builtins.property
|
|
5908
5908
|
def maximum_ebs_volume_size_in_gb(self) -> jsii.Number:
|
|
5909
|
-
'''The maximum size of the EBS storage volume for a
|
|
5909
|
+
'''The maximum size of the EBS storage volume for a space.
|
|
5910
5910
|
|
|
5911
5911
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultebsstoragesettings.html#cfn-sagemaker-domain-defaultebsstoragesettings-maximumebsvolumesizeingb
|
|
5912
5912
|
'''
|
|
@@ -6069,9 +6069,9 @@ class CfnDomain(
|
|
|
6069
6069
|
*,
|
|
6070
6070
|
default_ebs_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.DefaultEbsStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6071
6071
|
) -> None:
|
|
6072
|
-
'''The default storage settings for a
|
|
6072
|
+
'''The default storage settings for a space.
|
|
6073
6073
|
|
|
6074
|
-
:param default_ebs_storage_settings: The default EBS storage settings for a
|
|
6074
|
+
:param default_ebs_storage_settings: The default EBS storage settings for a space.
|
|
6075
6075
|
|
|
6076
6076
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacestoragesettings.html
|
|
6077
6077
|
:exampleMetadata: fixture=_generated
|
|
@@ -6100,7 +6100,7 @@ class CfnDomain(
|
|
|
6100
6100
|
def default_ebs_storage_settings(
|
|
6101
6101
|
self,
|
|
6102
6102
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultEbsStorageSettingsProperty"]]:
|
|
6103
|
-
'''The default EBS storage settings for a
|
|
6103
|
+
'''The default EBS storage settings for a space.
|
|
6104
6104
|
|
|
6105
6105
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacestoragesettings.html#cfn-sagemaker-domain-defaultspacestoragesettings-defaultebsstoragesettings
|
|
6106
6106
|
'''
|
|
@@ -7197,7 +7197,7 @@ class CfnDomain(
|
|
|
7197
7197
|
:param r_studio_server_pro_app_settings: A collection of settings that configure user interaction with the ``RStudioServerPro`` app.
|
|
7198
7198
|
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
7199
7199
|
:param sharing_settings: Specifies options for sharing Amazon SageMaker Studio notebooks.
|
|
7200
|
-
:param space_storage_settings: The storage settings for a
|
|
7200
|
+
:param space_storage_settings: The storage settings for a space.
|
|
7201
7201
|
:param studio_web_portal: Whether the user can access Studio. If this value is set to ``DISABLED`` , the user cannot access Studio, even if that is the default experience for the domain.
|
|
7202
7202
|
|
|
7203
7203
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html
|
|
@@ -7506,7 +7506,7 @@ class CfnDomain(
|
|
|
7506
7506
|
def space_storage_settings(
|
|
7507
7507
|
self,
|
|
7508
7508
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.DefaultSpaceStorageSettingsProperty"]]:
|
|
7509
|
-
'''The storage settings for a
|
|
7509
|
+
'''The storage settings for a space.
|
|
7510
7510
|
|
|
7511
7511
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html#cfn-sagemaker-domain-usersettings-spacestoragesettings
|
|
7512
7512
|
'''
|
|
@@ -40176,9 +40176,9 @@ class CfnSpace(
|
|
|
40176
40176
|
)
|
|
40177
40177
|
class EbsStorageSettingsProperty:
|
|
40178
40178
|
def __init__(self, *, ebs_volume_size_in_gb: jsii.Number) -> None:
|
|
40179
|
-
'''A collection of EBS storage settings that
|
|
40179
|
+
'''A collection of EBS storage settings that apply to both private and shared spaces.
|
|
40180
40180
|
|
|
40181
|
-
:param ebs_volume_size_in_gb: The size of an EBS storage volume for a
|
|
40181
|
+
:param ebs_volume_size_in_gb: The size of an EBS storage volume for a space.
|
|
40182
40182
|
|
|
40183
40183
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-ebsstoragesettings.html
|
|
40184
40184
|
:exampleMetadata: fixture=_generated
|
|
@@ -40202,7 +40202,7 @@ class CfnSpace(
|
|
|
40202
40202
|
|
|
40203
40203
|
@builtins.property
|
|
40204
40204
|
def ebs_volume_size_in_gb(self) -> jsii.Number:
|
|
40205
|
-
'''The size of an EBS storage volume for a
|
|
40205
|
+
'''The size of an EBS storage volume for a space.
|
|
40206
40206
|
|
|
40207
40207
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-ebsstoragesettings.html#cfn-sagemaker-space-ebsstoragesettings-ebsvolumesizeingb
|
|
40208
40208
|
'''
|
|
@@ -40384,7 +40384,7 @@ class CfnSpace(
|
|
|
40384
40384
|
def __init__(self, *, owner_user_profile_name: builtins.str) -> None:
|
|
40385
40385
|
'''The collection of ownership settings for a space.
|
|
40386
40386
|
|
|
40387
|
-
:param owner_user_profile_name: The user profile who is the owner of the
|
|
40387
|
+
:param owner_user_profile_name: The user profile who is the owner of the space.
|
|
40388
40388
|
|
|
40389
40389
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-ownershipsettings.html
|
|
40390
40390
|
:exampleMetadata: fixture=_generated
|
|
@@ -40408,7 +40408,7 @@ class CfnSpace(
|
|
|
40408
40408
|
|
|
40409
40409
|
@builtins.property
|
|
40410
40410
|
def owner_user_profile_name(self) -> builtins.str:
|
|
40411
|
-
'''The user profile who is the owner of the
|
|
40411
|
+
'''The user profile who is the owner of the space.
|
|
40412
40412
|
|
|
40413
40413
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-ownershipsettings.html#cfn-sagemaker-space-ownershipsettings-owneruserprofilename
|
|
40414
40414
|
'''
|
|
@@ -40699,7 +40699,7 @@ class CfnSpace(
|
|
|
40699
40699
|
:param jupyter_lab_app_settings: The settings for the JupyterLab application.
|
|
40700
40700
|
:param jupyter_server_app_settings: The JupyterServer app settings.
|
|
40701
40701
|
:param kernel_gateway_app_settings: The KernelGateway app settings.
|
|
40702
|
-
:param space_storage_settings: The storage settings for a
|
|
40702
|
+
:param space_storage_settings: The storage settings for a space.
|
|
40703
40703
|
|
|
40704
40704
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacesettings.html
|
|
40705
40705
|
:exampleMetadata: fixture=_generated
|
|
@@ -40857,7 +40857,7 @@ class CfnSpace(
|
|
|
40857
40857
|
def space_storage_settings(
|
|
40858
40858
|
self,
|
|
40859
40859
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSpace.SpaceStorageSettingsProperty"]]:
|
|
40860
|
-
'''The storage settings for a
|
|
40860
|
+
'''The storage settings for a space.
|
|
40861
40861
|
|
|
40862
40862
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacesettings.html#cfn-sagemaker-space-spacesettings-spacestoragesettings
|
|
40863
40863
|
'''
|
|
@@ -40938,9 +40938,9 @@ class CfnSpace(
|
|
|
40938
40938
|
*,
|
|
40939
40939
|
ebs_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSpace.EbsStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
40940
40940
|
) -> None:
|
|
40941
|
-
'''The storage settings for a
|
|
40941
|
+
'''The storage settings for a space.
|
|
40942
40942
|
|
|
40943
|
-
:param ebs_storage_settings: A collection of EBS storage settings for a
|
|
40943
|
+
:param ebs_storage_settings: A collection of EBS storage settings for a space.
|
|
40944
40944
|
|
|
40945
40945
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacestoragesettings.html
|
|
40946
40946
|
:exampleMetadata: fixture=_generated
|
|
@@ -40968,7 +40968,7 @@ class CfnSpace(
|
|
|
40968
40968
|
def ebs_storage_settings(
|
|
40969
40969
|
self,
|
|
40970
40970
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSpace.EbsStorageSettingsProperty"]]:
|
|
40971
|
-
'''A collection of EBS storage settings for a
|
|
40971
|
+
'''A collection of EBS storage settings for a space.
|
|
40972
40972
|
|
|
40973
40973
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacestoragesettings.html#cfn-sagemaker-space-spacestoragesettings-ebsstoragesettings
|
|
40974
40974
|
'''
|
|
@@ -41904,10 +41904,10 @@ class CfnUserProfile(
|
|
|
41904
41904
|
default_ebs_volume_size_in_gb: jsii.Number,
|
|
41905
41905
|
maximum_ebs_volume_size_in_gb: jsii.Number,
|
|
41906
41906
|
) -> None:
|
|
41907
|
-
'''A collection of default EBS storage settings that
|
|
41907
|
+
'''A collection of default EBS storage settings that apply to spaces created within a domain or user profile.
|
|
41908
41908
|
|
|
41909
|
-
:param default_ebs_volume_size_in_gb: The default size of the EBS storage volume for a
|
|
41910
|
-
:param maximum_ebs_volume_size_in_gb: The maximum size of the EBS storage volume for a
|
|
41909
|
+
:param default_ebs_volume_size_in_gb: The default size of the EBS storage volume for a space.
|
|
41910
|
+
:param maximum_ebs_volume_size_in_gb: The maximum size of the EBS storage volume for a space.
|
|
41911
41911
|
|
|
41912
41912
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-defaultebsstoragesettings.html
|
|
41913
41913
|
:exampleMetadata: fixture=_generated
|
|
@@ -41934,7 +41934,7 @@ class CfnUserProfile(
|
|
|
41934
41934
|
|
|
41935
41935
|
@builtins.property
|
|
41936
41936
|
def default_ebs_volume_size_in_gb(self) -> jsii.Number:
|
|
41937
|
-
'''The default size of the EBS storage volume for a
|
|
41937
|
+
'''The default size of the EBS storage volume for a space.
|
|
41938
41938
|
|
|
41939
41939
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-defaultebsstoragesettings.html#cfn-sagemaker-userprofile-defaultebsstoragesettings-defaultebsvolumesizeingb
|
|
41940
41940
|
'''
|
|
@@ -41944,7 +41944,7 @@ class CfnUserProfile(
|
|
|
41944
41944
|
|
|
41945
41945
|
@builtins.property
|
|
41946
41946
|
def maximum_ebs_volume_size_in_gb(self) -> jsii.Number:
|
|
41947
|
-
'''The maximum size of the EBS storage volume for a
|
|
41947
|
+
'''The maximum size of the EBS storage volume for a space.
|
|
41948
41948
|
|
|
41949
41949
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-defaultebsstoragesettings.html#cfn-sagemaker-userprofile-defaultebsstoragesettings-maximumebsvolumesizeingb
|
|
41950
41950
|
'''
|
|
@@ -41974,9 +41974,9 @@ class CfnUserProfile(
|
|
|
41974
41974
|
*,
|
|
41975
41975
|
default_ebs_storage_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUserProfile.DefaultEbsStorageSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
41976
41976
|
) -> None:
|
|
41977
|
-
'''The default storage settings for a
|
|
41977
|
+
'''The default storage settings for a space.
|
|
41978
41978
|
|
|
41979
|
-
:param default_ebs_storage_settings: The default EBS storage settings for a
|
|
41979
|
+
:param default_ebs_storage_settings: The default EBS storage settings for a space.
|
|
41980
41980
|
|
|
41981
41981
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-defaultspacestoragesettings.html
|
|
41982
41982
|
:exampleMetadata: fixture=_generated
|
|
@@ -42005,7 +42005,7 @@ class CfnUserProfile(
|
|
|
42005
42005
|
def default_ebs_storage_settings(
|
|
42006
42006
|
self,
|
|
42007
42007
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.DefaultEbsStorageSettingsProperty"]]:
|
|
42008
|
-
'''The default EBS storage settings for a
|
|
42008
|
+
'''The default EBS storage settings for a space.
|
|
42009
42009
|
|
|
42010
42010
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-defaultspacestoragesettings.html#cfn-sagemaker-userprofile-defaultspacestoragesettings-defaultebsstoragesettings
|
|
42011
42011
|
'''
|
|
@@ -42692,7 +42692,7 @@ class CfnUserProfile(
|
|
|
42692
42692
|
:param r_studio_server_pro_app_settings: A collection of settings that configure user interaction with the ``RStudioServerPro`` app.
|
|
42693
42693
|
:param security_groups: The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for communication. Optional when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``PublicInternetOnly`` . Required when the ``CreateDomain.AppNetworkAccessType`` parameter is set to ``VpcOnly`` , unless specified as part of the ``DefaultUserSettings`` for the domain. Amazon SageMaker adds a security group to allow NFS traffic from Amazon SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.
|
|
42694
42694
|
:param sharing_settings: Specifies options for sharing Amazon SageMaker Studio notebooks.
|
|
42695
|
-
:param space_storage_settings: The storage settings for a
|
|
42695
|
+
:param space_storage_settings: The storage settings for a space.
|
|
42696
42696
|
:param studio_web_portal: Whether the user can access Studio. If this value is set to ``DISABLED`` , the user cannot access Studio, even if that is the default experience for the domain.
|
|
42697
42697
|
|
|
42698
42698
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html
|
|
@@ -42965,7 +42965,7 @@ class CfnUserProfile(
|
|
|
42965
42965
|
def space_storage_settings(
|
|
42966
42966
|
self,
|
|
42967
42967
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.DefaultSpaceStorageSettingsProperty"]]:
|
|
42968
|
-
'''The storage settings for a
|
|
42968
|
+
'''The storage settings for a space.
|
|
42969
42969
|
|
|
42970
42970
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html#cfn-sagemaker-userprofile-usersettings-spacestoragesettings
|
|
42971
42971
|
'''
|
aws_cdk/aws_ses/__init__.py
CHANGED
|
@@ -7902,12 +7902,12 @@ typing.cast(typing.Any, IReceiptRuleSet).__jsii_proxy_class__ = lambda : _IRecei
|
|
|
7902
7902
|
|
|
7903
7903
|
@jsii.interface(jsii_type="aws-cdk-lib.aws_ses.IVdmAttributes")
|
|
7904
7904
|
class IVdmAttributes(_IResource_c80c4260, typing_extensions.Protocol):
|
|
7905
|
-
'''Virtual
|
|
7905
|
+
'''Virtual Deliverability Manager (VDM) attributes.'''
|
|
7906
7906
|
|
|
7907
7907
|
@builtins.property
|
|
7908
7908
|
@jsii.member(jsii_name="vdmAttributesName")
|
|
7909
7909
|
def vdm_attributes_name(self) -> builtins.str:
|
|
7910
|
-
'''The name of the resource behind the Virtual
|
|
7910
|
+
'''The name of the resource behind the Virtual Deliverability Manager attributes.
|
|
7911
7911
|
|
|
7912
7912
|
:attribute: true
|
|
7913
7913
|
'''
|
|
@@ -7917,14 +7917,14 @@ class IVdmAttributes(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
7917
7917
|
class _IVdmAttributesProxy(
|
|
7918
7918
|
jsii.proxy_for(_IResource_c80c4260), # type: ignore[misc]
|
|
7919
7919
|
):
|
|
7920
|
-
'''Virtual
|
|
7920
|
+
'''Virtual Deliverability Manager (VDM) attributes.'''
|
|
7921
7921
|
|
|
7922
7922
|
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_ses.IVdmAttributes"
|
|
7923
7923
|
|
|
7924
7924
|
@builtins.property
|
|
7925
7925
|
@jsii.member(jsii_name="vdmAttributesName")
|
|
7926
7926
|
def vdm_attributes_name(self) -> builtins.str:
|
|
7927
|
-
'''The name of the resource behind the Virtual
|
|
7927
|
+
'''The name of the resource behind the Virtual Deliverability Manager attributes.
|
|
7928
7928
|
|
|
7929
7929
|
:attribute: true
|
|
7930
7930
|
'''
|
|
@@ -9452,7 +9452,7 @@ class VdmAttributes(
|
|
|
9452
9452
|
metaclass=jsii.JSIIMeta,
|
|
9453
9453
|
jsii_type="aws-cdk-lib.aws_ses.VdmAttributes",
|
|
9454
9454
|
):
|
|
9455
|
-
'''Virtual
|
|
9455
|
+
'''Virtual Deliverability Manager (VDM) attributes.
|
|
9456
9456
|
|
|
9457
9457
|
:exampleMetadata: infused
|
|
9458
9458
|
|
|
@@ -9495,7 +9495,7 @@ class VdmAttributes(
|
|
|
9495
9495
|
id: builtins.str,
|
|
9496
9496
|
vdm_attributes_name: builtins.str,
|
|
9497
9497
|
) -> IVdmAttributes:
|
|
9498
|
-
'''Use an existing Virtual
|
|
9498
|
+
'''Use an existing Virtual Deliverability Manager attributes resource.
|
|
9499
9499
|
|
|
9500
9500
|
:param scope: -
|
|
9501
9501
|
:param id: -
|
|
@@ -9511,13 +9511,13 @@ class VdmAttributes(
|
|
|
9511
9511
|
@builtins.property
|
|
9512
9512
|
@jsii.member(jsii_name="vdmAttributesName")
|
|
9513
9513
|
def vdm_attributes_name(self) -> builtins.str:
|
|
9514
|
-
'''The name of the resource behind the Virtual
|
|
9514
|
+
'''The name of the resource behind the Virtual Deliverability Manager attributes.'''
|
|
9515
9515
|
return typing.cast(builtins.str, jsii.get(self, "vdmAttributesName"))
|
|
9516
9516
|
|
|
9517
9517
|
@builtins.property
|
|
9518
9518
|
@jsii.member(jsii_name="vdmAttributesResourceId")
|
|
9519
9519
|
def vdm_attributes_resource_id(self) -> builtins.str:
|
|
9520
|
-
'''Resource ID for the Virtual
|
|
9520
|
+
'''Resource ID for the Virtual Deliverability Manager attributes.
|
|
9521
9521
|
|
|
9522
9522
|
:attribute: true
|
|
9523
9523
|
'''
|
|
@@ -9539,7 +9539,7 @@ class VdmAttributesProps:
|
|
|
9539
9539
|
engagement_metrics: typing.Optional[builtins.bool] = None,
|
|
9540
9540
|
optimized_shared_delivery: typing.Optional[builtins.bool] = None,
|
|
9541
9541
|
) -> None:
|
|
9542
|
-
'''Properties for the Virtual
|
|
9542
|
+
'''Properties for the Virtual Deliverability Manager (VDM) attributes.
|
|
9543
9543
|
|
|
9544
9544
|
:param engagement_metrics: Whether engagement metrics are enabled for your account. Default: true
|
|
9545
9545
|
:param optimized_shared_delivery: Whether optimized shared delivery is enabled for your account. Default: true
|