aws-cdk-lib 2.148.1__py3-none-any.whl → 2.149.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.148.1.jsii.tgz → aws-cdk-lib@2.149.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -12
- aws_cdk/aws_bedrock/__init__.py +30 -2
- aws_cdk/aws_codebuild/__init__.py +57 -5
- aws_cdk/aws_codecommit/__init__.py +103 -0
- aws_cdk/aws_codedeploy/__init__.py +251 -5
- aws_cdk/aws_codepipeline/__init__.py +69 -0
- aws_cdk/aws_codestarnotifications/__init__.py +90 -4
- aws_cdk/aws_deadline/__init__.py +9 -15
- aws_cdk/aws_dms/__init__.py +10 -10
- aws_cdk/aws_ec2/__init__.py +4 -0
- aws_cdk/aws_emr/__init__.py +8 -8
- aws_cdk/aws_events/__init__.py +1 -13
- aws_cdk/aws_kinesisanalytics/__init__.py +11 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +11 -11
- aws_cdk/aws_rds/__init__.py +3 -3
- aws_cdk/aws_rolesanywhere/__init__.py +22 -13
- aws_cdk/aws_route53profiles/__init__.py +4 -4
- aws_cdk/aws_s3/__init__.py +15 -117
- aws_cdk/aws_ses/__init__.py +119 -102
- aws_cdk/aws_stepfunctions_tasks/__init__.py +209 -16
- aws_cdk/aws_verifiedpermissions/__init__.py +7 -9
- aws_cdk/aws_wafv2/__init__.py +10 -16
- aws_cdk/aws_workspaces/__init__.py +86 -56
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/RECORD +31 -31
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/top_level.txt +0 -0
|
@@ -453,11 +453,11 @@ class CfnWorkspace(
|
|
|
453
453
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
454
454
|
:param bundle_id: The identifier of the bundle for the WorkSpace.
|
|
455
455
|
:param directory_id: The identifier of the AWS Directory Service directory for the WorkSpace.
|
|
456
|
-
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
456
|
+
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
457
457
|
:param root_volume_encryption_enabled: Indicates whether the data stored on the root volume is encrypted.
|
|
458
458
|
:param tags: The tags for the WorkSpace.
|
|
459
459
|
:param user_volume_encryption_enabled: Indicates whether the data stored on the user volume is encrypted.
|
|
460
|
-
:param volume_encryption_key: The
|
|
460
|
+
:param volume_encryption_key: The symmetric AWS KMS key used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric KMS keys.
|
|
461
461
|
:param workspace_properties: The WorkSpace properties.
|
|
462
462
|
'''
|
|
463
463
|
if __debug__:
|
|
@@ -618,7 +618,7 @@ class CfnWorkspace(
|
|
|
618
618
|
@builtins.property
|
|
619
619
|
@jsii.member(jsii_name="volumeEncryptionKey")
|
|
620
620
|
def volume_encryption_key(self) -> typing.Optional[builtins.str]:
|
|
621
|
-
'''The
|
|
621
|
+
'''The symmetric AWS KMS key used to encrypt data stored on your WorkSpace.'''
|
|
622
622
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "volumeEncryptionKey"))
|
|
623
623
|
|
|
624
624
|
@volume_encryption_key.setter
|
|
@@ -671,7 +671,7 @@ class CfnWorkspace(
|
|
|
671
671
|
|
|
672
672
|
:param compute_type_name: The compute type. For more information, see `Amazon WorkSpaces Bundles <https://docs.aws.amazon.com/workspaces/details/#Amazon_WorkSpaces_Bundles>`_ .
|
|
673
673
|
:param root_volume_size_gib: The size of the root volume. For important information about how to modify the size of the root and user volumes, see `Modify a WorkSpace <https://docs.aws.amazon.com/workspaces/latest/adminguide/modify-workspaces.html>`_ .
|
|
674
|
-
:param running_mode: The running mode. For more information, see `Manage the WorkSpace Running Mode <https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html>`_ .
|
|
674
|
+
:param running_mode: The running mode. For more information, see `Manage the WorkSpace Running Mode <https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html>`_ .
|
|
675
675
|
:param running_mode_auto_stop_timeout_in_minutes: The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.
|
|
676
676
|
:param user_volume_size_gib: The size of the user storage. For important information about how to modify the size of the root and user volumes, see `Modify a WorkSpace <https://docs.aws.amazon.com/workspaces/latest/adminguide/modify-workspaces.html>`_ .
|
|
677
677
|
|
|
@@ -735,11 +735,9 @@ class CfnWorkspace(
|
|
|
735
735
|
|
|
736
736
|
@builtins.property
|
|
737
737
|
def running_mode(self) -> typing.Optional[builtins.str]:
|
|
738
|
-
'''The running mode.
|
|
738
|
+
'''The running mode.
|
|
739
739
|
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
The ``MANUAL`` value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see `Amazon WorkSpaces Core <https://docs.aws.amazon.com/workspaces/core/>`_ .
|
|
740
|
+
For more information, see `Manage the WorkSpace Running Mode <https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html>`_ .
|
|
743
741
|
|
|
744
742
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html#cfn-workspaces-workspace-workspaceproperties-runningmode
|
|
745
743
|
'''
|
|
@@ -813,11 +811,11 @@ class CfnWorkspaceProps:
|
|
|
813
811
|
|
|
814
812
|
:param bundle_id: The identifier of the bundle for the WorkSpace.
|
|
815
813
|
:param directory_id: The identifier of the AWS Directory Service directory for the WorkSpace.
|
|
816
|
-
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
814
|
+
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
817
815
|
:param root_volume_encryption_enabled: Indicates whether the data stored on the root volume is encrypted.
|
|
818
816
|
:param tags: The tags for the WorkSpace.
|
|
819
817
|
:param user_volume_encryption_enabled: Indicates whether the data stored on the user volume is encrypted.
|
|
820
|
-
:param volume_encryption_key: The
|
|
818
|
+
:param volume_encryption_key: The symmetric AWS KMS key used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric KMS keys.
|
|
821
819
|
:param workspace_properties: The WorkSpace properties.
|
|
822
820
|
|
|
823
821
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html
|
|
@@ -903,8 +901,6 @@ class CfnWorkspaceProps:
|
|
|
903
901
|
|
|
904
902
|
This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
905
903
|
|
|
906
|
-
The reserved keyword, ``[UNDEFINED]`` , is used when creating user-decoupled WorkSpaces.
|
|
907
|
-
|
|
908
904
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username
|
|
909
905
|
'''
|
|
910
906
|
result = self._values.get("user_name")
|
|
@@ -944,7 +940,7 @@ class CfnWorkspaceProps:
|
|
|
944
940
|
|
|
945
941
|
@builtins.property
|
|
946
942
|
def volume_encryption_key(self) -> typing.Optional[builtins.str]:
|
|
947
|
-
'''The
|
|
943
|
+
'''The symmetric AWS KMS key used to encrypt data stored on your WorkSpace.
|
|
948
944
|
|
|
949
945
|
Amazon WorkSpaces does not support asymmetric KMS keys.
|
|
950
946
|
|
|
@@ -982,7 +978,7 @@ class CfnWorkspacesPool(
|
|
|
982
978
|
metaclass=jsii.JSIIMeta,
|
|
983
979
|
jsii_type="aws-cdk-lib.aws_workspaces.CfnWorkspacesPool",
|
|
984
980
|
):
|
|
985
|
-
'''
|
|
981
|
+
'''Describes a pool of WorkSpaces.
|
|
986
982
|
|
|
987
983
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html
|
|
988
984
|
:cloudformationResource: AWS::WorkSpaces::WorkspacesPool
|
|
@@ -1039,14 +1035,14 @@ class CfnWorkspacesPool(
|
|
|
1039
1035
|
'''
|
|
1040
1036
|
:param scope: Scope in which this resource is defined.
|
|
1041
1037
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1042
|
-
:param bundle_id:
|
|
1043
|
-
:param capacity:
|
|
1044
|
-
:param directory_id:
|
|
1045
|
-
:param pool_name:
|
|
1046
|
-
:param application_settings:
|
|
1047
|
-
:param description:
|
|
1048
|
-
:param tags:
|
|
1049
|
-
:param timeout_settings:
|
|
1038
|
+
:param bundle_id: The identifier of the bundle used by the pool.
|
|
1039
|
+
:param capacity: Describes the user capacity for the pool.
|
|
1040
|
+
:param directory_id: The identifier of the directory used by the pool.
|
|
1041
|
+
:param pool_name: The name of the pool.
|
|
1042
|
+
:param application_settings: The persistent application settings for users of the pool.
|
|
1043
|
+
:param description: The description of the pool.
|
|
1044
|
+
:param tags: The tags for the pool.
|
|
1045
|
+
:param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
|
|
1050
1046
|
'''
|
|
1051
1047
|
if __debug__:
|
|
1052
1048
|
type_hints = typing.get_type_hints(_typecheckingstub__2d46eb37beb6bc915a0a0c68f02dfa689a2d725a4252e6874da1ed60602a91e4)
|
|
@@ -1098,7 +1094,8 @@ class CfnWorkspacesPool(
|
|
|
1098
1094
|
@builtins.property
|
|
1099
1095
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
1100
1096
|
def attr_created_at(self) -> builtins.str:
|
|
1101
|
-
'''
|
|
1097
|
+
'''The time the pool was created.
|
|
1098
|
+
|
|
1102
1099
|
:cloudformationAttribute: CreatedAt
|
|
1103
1100
|
'''
|
|
1104
1101
|
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
@@ -1106,7 +1103,8 @@ class CfnWorkspacesPool(
|
|
|
1106
1103
|
@builtins.property
|
|
1107
1104
|
@jsii.member(jsii_name="attrPoolArn")
|
|
1108
1105
|
def attr_pool_arn(self) -> builtins.str:
|
|
1109
|
-
'''
|
|
1106
|
+
'''The Amazon Resource Name (ARN) for the pool.
|
|
1107
|
+
|
|
1110
1108
|
:cloudformationAttribute: PoolArn
|
|
1111
1109
|
'''
|
|
1112
1110
|
return typing.cast(builtins.str, jsii.get(self, "attrPoolArn"))
|
|
@@ -1114,7 +1112,8 @@ class CfnWorkspacesPool(
|
|
|
1114
1112
|
@builtins.property
|
|
1115
1113
|
@jsii.member(jsii_name="attrPoolId")
|
|
1116
1114
|
def attr_pool_id(self) -> builtins.str:
|
|
1117
|
-
'''
|
|
1115
|
+
'''The identifier of the pool.
|
|
1116
|
+
|
|
1118
1117
|
:cloudformationAttribute: PoolId
|
|
1119
1118
|
'''
|
|
1120
1119
|
return typing.cast(builtins.str, jsii.get(self, "attrPoolId"))
|
|
@@ -1133,6 +1132,7 @@ class CfnWorkspacesPool(
|
|
|
1133
1132
|
@builtins.property
|
|
1134
1133
|
@jsii.member(jsii_name="bundleId")
|
|
1135
1134
|
def bundle_id(self) -> builtins.str:
|
|
1135
|
+
'''The identifier of the bundle used by the pool.'''
|
|
1136
1136
|
return typing.cast(builtins.str, jsii.get(self, "bundleId"))
|
|
1137
1137
|
|
|
1138
1138
|
@bundle_id.setter
|
|
@@ -1147,6 +1147,7 @@ class CfnWorkspacesPool(
|
|
|
1147
1147
|
def capacity(
|
|
1148
1148
|
self,
|
|
1149
1149
|
) -> typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.CapacityProperty"]:
|
|
1150
|
+
'''Describes the user capacity for the pool.'''
|
|
1150
1151
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.CapacityProperty"], jsii.get(self, "capacity"))
|
|
1151
1152
|
|
|
1152
1153
|
@capacity.setter
|
|
@@ -1162,6 +1163,7 @@ class CfnWorkspacesPool(
|
|
|
1162
1163
|
@builtins.property
|
|
1163
1164
|
@jsii.member(jsii_name="directoryId")
|
|
1164
1165
|
def directory_id(self) -> builtins.str:
|
|
1166
|
+
'''The identifier of the directory used by the pool.'''
|
|
1165
1167
|
return typing.cast(builtins.str, jsii.get(self, "directoryId"))
|
|
1166
1168
|
|
|
1167
1169
|
@directory_id.setter
|
|
@@ -1174,6 +1176,7 @@ class CfnWorkspacesPool(
|
|
|
1174
1176
|
@builtins.property
|
|
1175
1177
|
@jsii.member(jsii_name="poolName")
|
|
1176
1178
|
def pool_name(self) -> builtins.str:
|
|
1179
|
+
'''The name of the pool.'''
|
|
1177
1180
|
return typing.cast(builtins.str, jsii.get(self, "poolName"))
|
|
1178
1181
|
|
|
1179
1182
|
@pool_name.setter
|
|
@@ -1188,6 +1191,7 @@ class CfnWorkspacesPool(
|
|
|
1188
1191
|
def application_settings(
|
|
1189
1192
|
self,
|
|
1190
1193
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.ApplicationSettingsProperty"]]:
|
|
1194
|
+
'''The persistent application settings for users of the pool.'''
|
|
1191
1195
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.ApplicationSettingsProperty"]], jsii.get(self, "applicationSettings"))
|
|
1192
1196
|
|
|
1193
1197
|
@application_settings.setter
|
|
@@ -1203,6 +1207,7 @@ class CfnWorkspacesPool(
|
|
|
1203
1207
|
@builtins.property
|
|
1204
1208
|
@jsii.member(jsii_name="description")
|
|
1205
1209
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1210
|
+
'''The description of the pool.'''
|
|
1206
1211
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
1207
1212
|
|
|
1208
1213
|
@description.setter
|
|
@@ -1215,6 +1220,7 @@ class CfnWorkspacesPool(
|
|
|
1215
1220
|
@builtins.property
|
|
1216
1221
|
@jsii.member(jsii_name="tags")
|
|
1217
1222
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1223
|
+
'''The tags for the pool.'''
|
|
1218
1224
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
1219
1225
|
|
|
1220
1226
|
@tags.setter
|
|
@@ -1229,6 +1235,7 @@ class CfnWorkspacesPool(
|
|
|
1229
1235
|
def timeout_settings(
|
|
1230
1236
|
self,
|
|
1231
1237
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.TimeoutSettingsProperty"]]:
|
|
1238
|
+
'''The amount of time that a pool session remains active after users disconnect.'''
|
|
1232
1239
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkspacesPool.TimeoutSettingsProperty"]], jsii.get(self, "timeoutSettings"))
|
|
1233
1240
|
|
|
1234
1241
|
@timeout_settings.setter
|
|
@@ -1253,9 +1260,10 @@ class CfnWorkspacesPool(
|
|
|
1253
1260
|
status: builtins.str,
|
|
1254
1261
|
settings_group: typing.Optional[builtins.str] = None,
|
|
1255
1262
|
) -> None:
|
|
1256
|
-
'''
|
|
1257
|
-
|
|
1258
|
-
:param
|
|
1263
|
+
'''The persistent application settings for users in the pool.
|
|
1264
|
+
|
|
1265
|
+
:param status: Enables or disables persistent application settings for users during their pool sessions.
|
|
1266
|
+
:param settings_group: The path prefix for the S3 bucket where users’ persistent application settings are stored.
|
|
1259
1267
|
|
|
1260
1268
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-applicationsettings.html
|
|
1261
1269
|
:exampleMetadata: fixture=_generated
|
|
@@ -1285,7 +1293,8 @@ class CfnWorkspacesPool(
|
|
|
1285
1293
|
|
|
1286
1294
|
@builtins.property
|
|
1287
1295
|
def status(self) -> builtins.str:
|
|
1288
|
-
'''
|
|
1296
|
+
'''Enables or disables persistent application settings for users during their pool sessions.
|
|
1297
|
+
|
|
1289
1298
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-applicationsettings.html#cfn-workspaces-workspacespool-applicationsettings-status
|
|
1290
1299
|
'''
|
|
1291
1300
|
result = self._values.get("status")
|
|
@@ -1294,7 +1303,8 @@ class CfnWorkspacesPool(
|
|
|
1294
1303
|
|
|
1295
1304
|
@builtins.property
|
|
1296
1305
|
def settings_group(self) -> typing.Optional[builtins.str]:
|
|
1297
|
-
'''
|
|
1306
|
+
'''The path prefix for the S3 bucket where users’ persistent application settings are stored.
|
|
1307
|
+
|
|
1298
1308
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-applicationsettings.html#cfn-workspaces-workspacespool-applicationsettings-settingsgroup
|
|
1299
1309
|
'''
|
|
1300
1310
|
result = self._values.get("settings_group")
|
|
@@ -1318,8 +1328,9 @@ class CfnWorkspacesPool(
|
|
|
1318
1328
|
)
|
|
1319
1329
|
class CapacityProperty:
|
|
1320
1330
|
def __init__(self, *, desired_user_sessions: jsii.Number) -> None:
|
|
1321
|
-
'''
|
|
1322
|
-
|
|
1331
|
+
'''Describes the user capacity for the pool.
|
|
1332
|
+
|
|
1333
|
+
:param desired_user_sessions: The desired number of user sessions for the WorkSpaces in the pool.
|
|
1323
1334
|
|
|
1324
1335
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-capacity.html
|
|
1325
1336
|
:exampleMetadata: fixture=_generated
|
|
@@ -1343,7 +1354,8 @@ class CfnWorkspacesPool(
|
|
|
1343
1354
|
|
|
1344
1355
|
@builtins.property
|
|
1345
1356
|
def desired_user_sessions(self) -> jsii.Number:
|
|
1346
|
-
'''
|
|
1357
|
+
'''The desired number of user sessions for the WorkSpaces in the pool.
|
|
1358
|
+
|
|
1347
1359
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-capacity.html#cfn-workspaces-workspacespool-capacity-desiredusersessions
|
|
1348
1360
|
'''
|
|
1349
1361
|
result = self._values.get("desired_user_sessions")
|
|
@@ -1378,10 +1390,11 @@ class CfnWorkspacesPool(
|
|
|
1378
1390
|
idle_disconnect_timeout_in_seconds: typing.Optional[jsii.Number] = None,
|
|
1379
1391
|
max_user_duration_in_seconds: typing.Optional[jsii.Number] = None,
|
|
1380
1392
|
) -> None:
|
|
1381
|
-
'''
|
|
1382
|
-
|
|
1383
|
-
:param
|
|
1384
|
-
:param
|
|
1393
|
+
'''Describes the timeout settings for the pool.
|
|
1394
|
+
|
|
1395
|
+
:param disconnect_timeout_in_seconds: Specifies the amount of time, in seconds, that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within the time set, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance.
|
|
1396
|
+
:param idle_disconnect_timeout_in_seconds: The amount of time in seconds a connection will stay active while idle.
|
|
1397
|
+
:param max_user_duration_in_seconds: Specifies the maximum amount of time, in seconds, that a streaming session can remain active. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.
|
|
1385
1398
|
|
|
1386
1399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-timeoutsettings.html
|
|
1387
1400
|
:exampleMetadata: fixture=_generated
|
|
@@ -1413,7 +1426,10 @@ class CfnWorkspacesPool(
|
|
|
1413
1426
|
|
|
1414
1427
|
@builtins.property
|
|
1415
1428
|
def disconnect_timeout_in_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1416
|
-
'''
|
|
1429
|
+
'''Specifies the amount of time, in seconds, that a streaming session remains active after users disconnect.
|
|
1430
|
+
|
|
1431
|
+
If users try to reconnect to the streaming session after a disconnection or network interruption within the time set, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance.
|
|
1432
|
+
|
|
1417
1433
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-timeoutsettings.html#cfn-workspaces-workspacespool-timeoutsettings-disconnecttimeoutinseconds
|
|
1418
1434
|
'''
|
|
1419
1435
|
result = self._values.get("disconnect_timeout_in_seconds")
|
|
@@ -1421,7 +1437,8 @@ class CfnWorkspacesPool(
|
|
|
1421
1437
|
|
|
1422
1438
|
@builtins.property
|
|
1423
1439
|
def idle_disconnect_timeout_in_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1424
|
-
'''
|
|
1440
|
+
'''The amount of time in seconds a connection will stay active while idle.
|
|
1441
|
+
|
|
1425
1442
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-timeoutsettings.html#cfn-workspaces-workspacespool-timeoutsettings-idledisconnecttimeoutinseconds
|
|
1426
1443
|
'''
|
|
1427
1444
|
result = self._values.get("idle_disconnect_timeout_in_seconds")
|
|
@@ -1429,7 +1446,10 @@ class CfnWorkspacesPool(
|
|
|
1429
1446
|
|
|
1430
1447
|
@builtins.property
|
|
1431
1448
|
def max_user_duration_in_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1432
|
-
'''
|
|
1449
|
+
'''Specifies the maximum amount of time, in seconds, that a streaming session can remain active.
|
|
1450
|
+
|
|
1451
|
+
If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.
|
|
1452
|
+
|
|
1433
1453
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspacespool-timeoutsettings.html#cfn-workspaces-workspacespool-timeoutsettings-maxuserdurationinseconds
|
|
1434
1454
|
'''
|
|
1435
1455
|
result = self._values.get("max_user_duration_in_seconds")
|
|
@@ -1476,14 +1496,14 @@ class CfnWorkspacesPoolProps:
|
|
|
1476
1496
|
) -> None:
|
|
1477
1497
|
'''Properties for defining a ``CfnWorkspacesPool``.
|
|
1478
1498
|
|
|
1479
|
-
:param bundle_id:
|
|
1480
|
-
:param capacity:
|
|
1481
|
-
:param directory_id:
|
|
1482
|
-
:param pool_name:
|
|
1483
|
-
:param application_settings:
|
|
1484
|
-
:param description:
|
|
1485
|
-
:param tags:
|
|
1486
|
-
:param timeout_settings:
|
|
1499
|
+
:param bundle_id: The identifier of the bundle used by the pool.
|
|
1500
|
+
:param capacity: Describes the user capacity for the pool.
|
|
1501
|
+
:param directory_id: The identifier of the directory used by the pool.
|
|
1502
|
+
:param pool_name: The name of the pool.
|
|
1503
|
+
:param application_settings: The persistent application settings for users of the pool.
|
|
1504
|
+
:param description: The description of the pool.
|
|
1505
|
+
:param tags: The tags for the pool.
|
|
1506
|
+
:param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
|
|
1487
1507
|
|
|
1488
1508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html
|
|
1489
1509
|
:exampleMetadata: fixture=_generated
|
|
@@ -1548,7 +1568,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1548
1568
|
|
|
1549
1569
|
@builtins.property
|
|
1550
1570
|
def bundle_id(self) -> builtins.str:
|
|
1551
|
-
'''
|
|
1571
|
+
'''The identifier of the bundle used by the pool.
|
|
1572
|
+
|
|
1552
1573
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-bundleid
|
|
1553
1574
|
'''
|
|
1554
1575
|
result = self._values.get("bundle_id")
|
|
@@ -1559,7 +1580,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1559
1580
|
def capacity(
|
|
1560
1581
|
self,
|
|
1561
1582
|
) -> typing.Union[_IResolvable_da3f097b, CfnWorkspacesPool.CapacityProperty]:
|
|
1562
|
-
'''
|
|
1583
|
+
'''Describes the user capacity for the pool.
|
|
1584
|
+
|
|
1563
1585
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-capacity
|
|
1564
1586
|
'''
|
|
1565
1587
|
result = self._values.get("capacity")
|
|
@@ -1568,7 +1590,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1568
1590
|
|
|
1569
1591
|
@builtins.property
|
|
1570
1592
|
def directory_id(self) -> builtins.str:
|
|
1571
|
-
'''
|
|
1593
|
+
'''The identifier of the directory used by the pool.
|
|
1594
|
+
|
|
1572
1595
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-directoryid
|
|
1573
1596
|
'''
|
|
1574
1597
|
result = self._values.get("directory_id")
|
|
@@ -1577,7 +1600,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1577
1600
|
|
|
1578
1601
|
@builtins.property
|
|
1579
1602
|
def pool_name(self) -> builtins.str:
|
|
1580
|
-
'''
|
|
1603
|
+
'''The name of the pool.
|
|
1604
|
+
|
|
1581
1605
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-poolname
|
|
1582
1606
|
'''
|
|
1583
1607
|
result = self._values.get("pool_name")
|
|
@@ -1588,7 +1612,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1588
1612
|
def application_settings(
|
|
1589
1613
|
self,
|
|
1590
1614
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkspacesPool.ApplicationSettingsProperty]]:
|
|
1591
|
-
'''
|
|
1615
|
+
'''The persistent application settings for users of the pool.
|
|
1616
|
+
|
|
1592
1617
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-applicationsettings
|
|
1593
1618
|
'''
|
|
1594
1619
|
result = self._values.get("application_settings")
|
|
@@ -1596,7 +1621,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1596
1621
|
|
|
1597
1622
|
@builtins.property
|
|
1598
1623
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1599
|
-
'''
|
|
1624
|
+
'''The description of the pool.
|
|
1625
|
+
|
|
1600
1626
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-description
|
|
1601
1627
|
'''
|
|
1602
1628
|
result = self._values.get("description")
|
|
@@ -1604,7 +1630,8 @@ class CfnWorkspacesPoolProps:
|
|
|
1604
1630
|
|
|
1605
1631
|
@builtins.property
|
|
1606
1632
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1607
|
-
'''
|
|
1633
|
+
'''The tags for the pool.
|
|
1634
|
+
|
|
1608
1635
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-tags
|
|
1609
1636
|
'''
|
|
1610
1637
|
result = self._values.get("tags")
|
|
@@ -1614,7 +1641,10 @@ class CfnWorkspacesPoolProps:
|
|
|
1614
1641
|
def timeout_settings(
|
|
1615
1642
|
self,
|
|
1616
1643
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkspacesPool.TimeoutSettingsProperty]]:
|
|
1617
|
-
'''
|
|
1644
|
+
'''The amount of time that a pool session remains active after users disconnect.
|
|
1645
|
+
|
|
1646
|
+
If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
|
|
1647
|
+
|
|
1618
1648
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-timeoutsettings
|
|
1619
1649
|
'''
|
|
1620
1650
|
result = self._values.get("timeout_settings")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=Bo1uJkCWMq55Eg9RPUSyKtLJa2HaQ_aoUhpReoaLfSE,1789672
|
|
2
2
|
aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/_jsii/__init__.py,sha256=
|
|
4
|
-
aws_cdk/_jsii/aws-cdk-lib@2.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=kdrZRjs641JZUhZ41eE8TDcbLz14QA7SASxvZhMUOZU,571
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.149.0.jsii.tgz,sha256=afKH3WzawXbTvJUVG2ZcaT_sVmE9wB2eCLxCsUIA3Uw,22320975
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=4u8TRmf7j4H85ymybJxa2UsRHfunE4LECRC-hyIQCkI,35288
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=z4U_lPeruWtzub3uBcbDuKLEZYxV0HLxlCtXbBm4EmQ,91338
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=JtcKL_oOxvJGIjINHShMAcdRV69Cyy6NMXOojJmHULI,41882
|
|
@@ -16,7 +16,7 @@ aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=K9YMDNeNnG-8nUZiBiGVQ9t
|
|
|
16
16
|
aws_cdk/aws_appconfig/__init__.py,sha256=VNSjqo2jUgUkHhIomQqZxYTMQ7ps-baNIKVC1xxHeso,706006
|
|
17
17
|
aws_cdk/aws_appflow/__init__.py,sha256=6eUVzxB3DNDDnBsWwNolGsLD0JX_cqRtTHd0VP58jjE,783123
|
|
18
18
|
aws_cdk/aws_appintegrations/__init__.py,sha256=VsAx53QIMNY_I61WBSw1e5oEN7SPL0ZyBYESrauVjsQ,86342
|
|
19
|
-
aws_cdk/aws_applicationautoscaling/__init__.py,sha256=
|
|
19
|
+
aws_cdk/aws_applicationautoscaling/__init__.py,sha256=NZPcDZIscb6SIucp1J205-A7IC-bp9yLJWU0DYZj5bk,402974
|
|
20
20
|
aws_cdk/aws_applicationinsights/__init__.py,sha256=8KIjv3A1ZMI7G4ivbJO_kKb0V_aI7_kVzP9OglqjAZM,174132
|
|
21
21
|
aws_cdk/aws_applicationsignals/__init__.py,sha256=acAbMFd164eDUlj6lGJfmmYXRZAmbefF4ydWQrBB1YQ,104369
|
|
22
22
|
aws_cdk/aws_appmesh/__init__.py,sha256=p2obHTgWsDeM_QimXzuwwWVkhlv5AzDJ6bhEz4vVLGA,1605106
|
|
@@ -37,7 +37,7 @@ aws_cdk/aws_backup/__init__.py,sha256=9x2yerp0f0qeNJjqwN0Vz-E8TMAzGFEnMgSoQGJrAy
|
|
|
37
37
|
aws_cdk/aws_backupgateway/__init__.py,sha256=gZiOiZ5d_qF0Kxl6E90xnBE01ASnyquIjnY6udI3JGA,23337
|
|
38
38
|
aws_cdk/aws_batch/__init__.py,sha256=dji6DLxsdfQDkhOj4CJKifTXHsbaaTSFYRLB8r89wL8,1411462
|
|
39
39
|
aws_cdk/aws_bcmdataexports/__init__.py,sha256=CcqgYZ9rD3YqWlwqoQhnG9EpmDW165Ca6sX-9uNmISA,54583
|
|
40
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
40
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=_sjgN7lRLnE_LQKY9amGCosNQQxcdnSNU9c0Pye65Ig,454245
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=ld_rPVAFcFevpSkPeNlVgHKQ8HHynFOcSj3cz1tdmf0,141034
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=5Pr-3xLsj-eBix5th4H4AAczUtjZnDcszYmrl_RQR4U,161622
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=Mt2poWoX2BFZR4NZUHKlBBTb66KatcS1cc4MSvNPGeQ,145736
|
|
@@ -55,17 +55,17 @@ aws_cdk/aws_cloudtrail/__init__.py,sha256=SsEfIpkdCPkZQQn2Swe8Ii3MoHI3GINYiDednY
|
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=VWEb4eQ-xU60MDyRB4yG1OKzPREXQRC1hG_pSKKomTk,801427
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=YS4vVIqy1q30xxtj4t4n_sTjLfDOgBpMJF9HqVuXub0,21402
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=S-oT7CEbMsmutKMM3Rz65xPHvXC6_o7Kr8x-LCnVqDU,86345
|
|
58
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
59
|
-
aws_cdk/aws_codecommit/__init__.py,sha256=
|
|
58
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=WsRd2ufCodP36HUZCD3AsJUBJ4sfdFFr7T5XbpEoITA,1003090
|
|
59
|
+
aws_cdk/aws_codecommit/__init__.py,sha256=t1M-G56uT4KklfbDv_S37hXJzwbffM6mniavUcSdvZg,236468
|
|
60
60
|
aws_cdk/aws_codeconnections/__init__.py,sha256=m7QX54Mkymq0C2GNRnqFpECtdJIhoOBKZG-9ghNhvJQ,18844
|
|
61
|
-
aws_cdk/aws_codedeploy/__init__.py,sha256=
|
|
61
|
+
aws_cdk/aws_codedeploy/__init__.py,sha256=FH9j53Xcvo8hIyGXi9XjA8UgdhqxN4OIiUB-xtZG7os,604535
|
|
62
62
|
aws_cdk/aws_codeguruprofiler/__init__.py,sha256=T9IyvssgW8u3XifSBXLpKaS-ud7tn1fCiLr0j6vJ4EI,47150
|
|
63
63
|
aws_cdk/aws_codegurureviewer/__init__.py,sha256=iNhLDwdOavEnFYoL2crFQbSIGpu3o5Y4tqdos5P-Rfg,26085
|
|
64
|
-
aws_cdk/aws_codepipeline/__init__.py,sha256=
|
|
64
|
+
aws_cdk/aws_codepipeline/__init__.py,sha256=GVJ8MaY3rHjxsNCXvFMIiN80qMjtvcqksKi5ikUSJFo,539159
|
|
65
65
|
aws_cdk/aws_codepipeline_actions/__init__.py,sha256=hcSIDzeUGnCFfxEnV6KSYhjN9ex1O95FNkELOihcUKU,635539
|
|
66
66
|
aws_cdk/aws_codestar/__init__.py,sha256=GrmUtOufcICiyFKY-CIK5ZNpGkRlbEnUk7xIp-hMag8,37511
|
|
67
67
|
aws_cdk/aws_codestarconnections/__init__.py,sha256=09KwWxGtN8T-n6n9s0mNYtxEIDLH8WVtKh4q9PSlgxU,61100
|
|
68
|
-
aws_cdk/aws_codestarnotifications/__init__.py,sha256=
|
|
68
|
+
aws_cdk/aws_codestarnotifications/__init__.py,sha256=JKGBVIiQu8PHiVy6l_3SVvMQ6QRks84aqjSwMqWz6bU,75996
|
|
69
69
|
aws_cdk/aws_cognito/__init__.py,sha256=a6iqO8kUt9uZB8KeZA8pMRbL1L_jeyP0IVTVrrGR9C0,1251549
|
|
70
70
|
aws_cdk/aws_comprehend/__init__.py,sha256=MF1H8IVcZNqXf8Lffae9YxfrRoobIOoStBiYMOXPad0,154979
|
|
71
71
|
aws_cdk/aws_config/__init__.py,sha256=5r0OfVj3ywqWOsX8agJbzZ5cLtMyvFC4PHU-2o3fSmI,862348
|
|
@@ -79,17 +79,17 @@ aws_cdk/aws_datapipeline/__init__.py,sha256=9hpk4s_dr6A2pWSYrc9UjN6N8Bgj4xD4HRfe
|
|
|
79
79
|
aws_cdk/aws_datasync/__init__.py,sha256=Zcv0qn4LMKlKuNTD3M3KM1p7UM5OENhlLXPqNPPoj1A,574641
|
|
80
80
|
aws_cdk/aws_datazone/__init__.py,sha256=07nyHR30ETdzm1l9coKt0QHjH1lYT1HURmcaW2QiPhQ,325162
|
|
81
81
|
aws_cdk/aws_dax/__init__.py,sha256=GjLKnPzBX0wmFZBA75lxbHsdwaddEgErZaP0BalmUWM,74391
|
|
82
|
-
aws_cdk/aws_deadline/__init__.py,sha256=
|
|
82
|
+
aws_cdk/aws_deadline/__init__.py,sha256=4MJochrNaiW3TuBR05Q5rusWpgOB0oOVTDfIEu9ldfg,278537
|
|
83
83
|
aws_cdk/aws_detective/__init__.py,sha256=bYUPKZxyvFFfkLi67JMYPHS2c1pBvUJEAv6_7U5zwMQ,40203
|
|
84
84
|
aws_cdk/aws_devicefarm/__init__.py,sha256=U6hiT0d193utyJiP39Wv4DeXeoQsBpLdG1Jz57CI7u8,151144
|
|
85
85
|
aws_cdk/aws_devopsguru/__init__.py,sha256=yU4EzteNiNd7d-3pEh5nAeNDBsqet38MuQUM3O8E1aM,65294
|
|
86
86
|
aws_cdk/aws_directoryservice/__init__.py,sha256=vCp_vJmJJnYSa2KVt7FCUDGuD8lq7ie6qQgtRnEkZLs,65126
|
|
87
87
|
aws_cdk/aws_dlm/__init__.py,sha256=VxPMM0IfRhPqYohZsKEs1IG4ckfhgV2xR8Qv3WBcxiw,243613
|
|
88
|
-
aws_cdk/aws_dms/__init__.py,sha256=
|
|
88
|
+
aws_cdk/aws_dms/__init__.py,sha256=SCCt8MkfZm9alAebzx4UHWqyodFWDzxX4LBMLGggqxE,890069
|
|
89
89
|
aws_cdk/aws_docdb/__init__.py,sha256=n1_no8OMjgMW7OcFvWcv8vV9xY-ID1BQhYT7Sz-MYxw,312938
|
|
90
90
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=A0MArKjuLOldz9tv6zmhRNCJVlJeIyltcsYO7rZFTnM,45246
|
|
91
91
|
aws_cdk/aws_dynamodb/__init__.py,sha256=8bJX2WMKg0PkrDFB_ZZbf6FVCnqYhNe8nlTmlXBEuVE,916487
|
|
92
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
92
|
+
aws_cdk/aws_ec2/__init__.py,sha256=0wQxhXZLHXBY_cE-7h4Vgrdo8V2iHGvA8TDMlxoN1wE,5541931
|
|
93
93
|
aws_cdk/aws_ecr/__init__.py,sha256=Bnr2op3EO8OzeiMACigvumKsEdNyNojGOWqXAJKMFFc,294352
|
|
94
94
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=anMttai7JydwJ16oIjnYdUXTsCPdeul8Fz69bFkYDyE,83475
|
|
95
95
|
aws_cdk/aws_ecs/__init__.py,sha256=cCY53SGUix17fguGN9dzG6ViqoUP7SXrOW0I1ZN25_w,2581935
|
|
@@ -103,11 +103,11 @@ aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=SXJ1py21Ap6_8cBD-g_euoVOGl
|
|
|
103
103
|
aws_cdk/aws_elasticloadbalancingv2_actions/__init__.py,sha256=ZAlJQtJZOgsNiraDo4cxo4aiRZa0Ntfy6Nm6LiVR5Q8,22485
|
|
104
104
|
aws_cdk/aws_elasticloadbalancingv2_targets/__init__.py,sha256=4aWdFoAHj88U2IY7Va9GNiZS6ZCSPyjjdaCw8cJIq8w,20088
|
|
105
105
|
aws_cdk/aws_elasticsearch/__init__.py,sha256=j3UuDPagnnzWrMWdTqO9H4V2MlCTZQq7WvG_gOFWzYA,463993
|
|
106
|
-
aws_cdk/aws_emr/__init__.py,sha256=
|
|
106
|
+
aws_cdk/aws_emr/__init__.py,sha256=BN-S2O_5Eiz3Yqvl9vPl1eQsQ4MxR7s6Esp6XSFT1pY,736370
|
|
107
107
|
aws_cdk/aws_emrcontainers/__init__.py,sha256=zj0Z9zgnfK4G_7Jq4U9WGY1j8iyPTG215mb347FqfVQ,28434
|
|
108
108
|
aws_cdk/aws_emrserverless/__init__.py,sha256=CDcN9CXMXgOZV7qojrHGnTsNZBcsennHRakQKzUVs-U,131478
|
|
109
109
|
aws_cdk/aws_entityresolution/__init__.py,sha256=K5l26KAywUxHV86wacY8qSiz_fwTdbwNNxzv5EYLB24,220698
|
|
110
|
-
aws_cdk/aws_events/__init__.py,sha256=
|
|
110
|
+
aws_cdk/aws_events/__init__.py,sha256=GuE7EDYvRkxcXLtFEHxuyDvBGSwj9IzO49OnKzNAkYU,652618
|
|
111
111
|
aws_cdk/aws_events_targets/__init__.py,sha256=1GYk7JYVy40VraICWgMOeZfShzJcy06cvWs92RcI_k0,257160
|
|
112
112
|
aws_cdk/aws_eventschemas/__init__.py,sha256=gTTjAZQaS-lWPf04N0NJmestO38b3WOOORiZXJ8XV6Y,71360
|
|
113
113
|
aws_cdk/aws_evidently/__init__.py,sha256=qJun3AqT9OQUyEP8eketrpTKlFAvYIWY88XFyCzUfvg,246282
|
|
@@ -151,8 +151,8 @@ aws_cdk/aws_kafkaconnect/__init__.py,sha256=tqonc0_ENBmj4MZv1jX6BLoM4xOKksFFdTd4
|
|
|
151
151
|
aws_cdk/aws_kendra/__init__.py,sha256=pOBMW7is2xXpDcV-AF8BAT0qDPTg916FDDuSU80eMhg,680937
|
|
152
152
|
aws_cdk/aws_kendraranking/__init__.py,sha256=6DM_38vUxbs_9OO7lJmYIjPtXTA3GHabfqgbLy7qODw,24084
|
|
153
153
|
aws_cdk/aws_kinesis/__init__.py,sha256=TmXGv15NjOufOrFLJGKFgTX5eOXx_S7Rv5zXMqCwA18,281313
|
|
154
|
-
aws_cdk/aws_kinesisanalytics/__init__.py,sha256=
|
|
155
|
-
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=
|
|
154
|
+
aws_cdk/aws_kinesisanalytics/__init__.py,sha256=v1Cwuex2Celyi7ih1rCoD2QeTLZhd_FyVmrgmi4_lBY,585598
|
|
155
|
+
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=t5ObltjNIUN3e40EqK4t8P9UHy05qggFmxpkmtlLPeM,386425
|
|
156
156
|
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=-11Dhhg7xZ9ewcxNrx-WmDBiNKqg0gH4sEWRo2FwfaY,529240
|
|
157
157
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=MI0n1D9zgy38fQveoZbc4WEUYLKVxysEgxxXqVxIaas,37397
|
|
158
158
|
aws_cdk/aws_kms/__init__.py,sha256=ospO14_hVC2G5vi2FGBqoyns7AsImI6eVXVhbrf5VMo,232756
|
|
@@ -208,7 +208,7 @@ aws_cdk/aws_qbusiness/__init__.py,sha256=apWql7K8pCL5Qv_lL2qPzDOiq15enRbHaF8lztl
|
|
|
208
208
|
aws_cdk/aws_qldb/__init__.py,sha256=kqcRw8bFCgefUfFWxZXA_LxQZaKFa3_WYikv4QQnBmg,62401
|
|
209
209
|
aws_cdk/aws_quicksight/__init__.py,sha256=XRONytu6MxS6vCT-Qij5U2SmZqLJp_mAnBVGYE3S0gA,14059948
|
|
210
210
|
aws_cdk/aws_ram/__init__.py,sha256=O8KVC1Hlh6czPARsEtMxMEAWZTpciagTzcN4Koxc5Mk,50224
|
|
211
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
211
|
+
aws_cdk/aws_rds/__init__.py,sha256=dIttV3I0ZYYIQsq4n0DBwVfteHeB2HjZXsKrDOeSykU,2713382
|
|
212
212
|
aws_cdk/aws_redshift/__init__.py,sha256=5qXEZlP7eDq2p9XMPJYZB8Mi-aN6bKSYWpbqeQn3vsA,373297
|
|
213
213
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=zOfpgJ_wWMq835WfU01mJELzf5kERUxFKBzHeFBvPbw,159481
|
|
214
214
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=vnqNzjs3jfG4_PMTSKCP1qzZ-1tsGJzqAfvm94MY7ig,121464
|
|
@@ -217,16 +217,16 @@ aws_cdk/aws_resiliencehub/__init__.py,sha256=HZ1SHoL0UvxTsUL87A2ERNMkuy4cXFdpJto
|
|
|
217
217
|
aws_cdk/aws_resourceexplorer2/__init__.py,sha256=bq9imk4T991F_TGMW6yXgDXEpEJ4mI6UfUYljBSPN80,56226
|
|
218
218
|
aws_cdk/aws_resourcegroups/__init__.py,sha256=XgluihPaDH3kOhrUlt5xBnsVCthOdSC77tCXTQrXNxI,60509
|
|
219
219
|
aws_cdk/aws_robomaker/__init__.py,sha256=oIAd5-VhI0MfguqA2QQnqu9c0YcX54reGiiOT1JIXM8,126324
|
|
220
|
-
aws_cdk/aws_rolesanywhere/__init__.py,sha256=
|
|
220
|
+
aws_cdk/aws_rolesanywhere/__init__.py,sha256=mSvlhFw5xyjy5d1QIDKvhif1qXM8hx3teOXnO-kT5Hw,90647
|
|
221
221
|
aws_cdk/aws_route53/__init__.py,sha256=1nM511j_7MVDLzqGhIMIKL92vAClyJfYprIpcv9LORg,941525
|
|
222
222
|
aws_cdk/aws_route53_patterns/__init__.py,sha256=reTm4Q-zYkgBtgTtVn0BuyYiFUGHtcpkyY4i8njnW_Q,12574
|
|
223
223
|
aws_cdk/aws_route53_targets/__init__.py,sha256=whX-sNMtiEz1-MvO-uKtyqR4UdK-tq0OAoRfJo6ZjC4,38342
|
|
224
|
-
aws_cdk/aws_route53profiles/__init__.py,sha256=
|
|
224
|
+
aws_cdk/aws_route53profiles/__init__.py,sha256=KkXSspUiKNQtj3sGcZsOEmCiDoiky2NTH2i_lj7iI-g,43585
|
|
225
225
|
aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=RTbr1hkzfJuOc0_srEtWUs8D8zLrXuUo0ppZSWy-8eM,91015
|
|
226
226
|
aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=jIagDWXXZqn5bPIDbhxqV3muirzN_QxY7w36IBIg4I8,93751
|
|
227
227
|
aws_cdk/aws_route53resolver/__init__.py,sha256=ogvR217OzOjGhlg6QHVraoJvt1GRFCG_4kvIEL6eBzY,234730
|
|
228
228
|
aws_cdk/aws_rum/__init__.py,sha256=MfVoHhD2zHkxaRWNyxC4DQqRn019fGo-ysHxWm2ZW-E,73175
|
|
229
|
-
aws_cdk/aws_s3/__init__.py,sha256=
|
|
229
|
+
aws_cdk/aws_s3/__init__.py,sha256=DbFM2ZxKzEm_hnjdcoDzoc6lrESIN_loLCnhOYVEHcw,1189195
|
|
230
230
|
aws_cdk/aws_s3_assets/__init__.py,sha256=8HpzmqvyZA4_5Oz09-GAW8D9PlLiv1nFK6a1FF6W9O4,45860
|
|
231
231
|
aws_cdk/aws_s3_deployment/__init__.py,sha256=Sn1luaVEL1OGQpFzD8c37LT7NWLdH7dndSB4wBjG4jg,117219
|
|
232
232
|
aws_cdk/aws_s3_notifications/__init__.py,sha256=54kzyAeDUu9I1jWfYQHX4BIzOArWHFyMWZ1_uRpb4qI,9084
|
|
@@ -243,7 +243,7 @@ aws_cdk/aws_securitylake/__init__.py,sha256=5bEaqmvWA8s4uXACsaetsmLIo0WC-NpXzqmp
|
|
|
243
243
|
aws_cdk/aws_servicecatalog/__init__.py,sha256=IKfnQiyJ9y5dTsD1jmJ45xw7hR423ILP1LanVDp68NM,537787
|
|
244
244
|
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=vdQ5_4hGAW7ty7T-3bTLP21MnIdsXWfssHQN8w7SVoo,55759
|
|
245
245
|
aws_cdk/aws_servicediscovery/__init__.py,sha256=nz_z0pPbcBDNO4yv5434QBYJDFXyLnOhGsYoiw7I7HM,363071
|
|
246
|
-
aws_cdk/aws_ses/__init__.py,sha256=
|
|
246
|
+
aws_cdk/aws_ses/__init__.py,sha256=3gOKV6lCpsQTc8cuvCC6SdbIITm5qWVDOzy5Uo-kd7A,584135
|
|
247
247
|
aws_cdk/aws_ses_actions/__init__.py,sha256=Gc3yshcOyvpUDrVuk00FzZODuRrZY5OPWYXBIznrtFQ,50696
|
|
248
248
|
aws_cdk/aws_shield/__init__.py,sha256=C9zq5rsMbKwyiCm-FDKo1K7kmbyA2EFybh9aO4ifjNk,103881
|
|
249
249
|
aws_cdk/aws_signer/__init__.py,sha256=9bQa8KW0C-New6SjdqQisPoZkkq0Te9Yt1cSu9I0Zm0,58101
|
|
@@ -256,20 +256,20 @@ aws_cdk/aws_ssmcontacts/__init__.py,sha256=63nKDFCVG7AymvqFwaHq00019w0I9Gz6llMbU
|
|
|
256
256
|
aws_cdk/aws_ssmincidents/__init__.py,sha256=GypmYmTJqembqzvGqDvId21Hk9DokT8bo7GULBcP8HE,112135
|
|
257
257
|
aws_cdk/aws_sso/__init__.py,sha256=DwoKdf8nAWo37NLjRXaLVZS5mrcmZQEIQTJRDMjYdSk,154178
|
|
258
258
|
aws_cdk/aws_stepfunctions/__init__.py,sha256=kr_VsXj-gVyOBVa7c5w5bswgxAcBOFWJHf9-OFuqLCA,877846
|
|
259
|
-
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=
|
|
259
|
+
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=d6isFmIgfHY7Z4qcd_c84MNk97bxClCeLp2pRmvd4Z4,1948840
|
|
260
260
|
aws_cdk/aws_supportapp/__init__.py,sha256=7C5OsYS756TyDomuqZl2J4d0tw2srY2WnYRde3yM7oI,48023
|
|
261
261
|
aws_cdk/aws_synthetics/__init__.py,sha256=OMAKgHBC-fGNbPU5aTO2iJprIUlMhDI9dm_5m2sjOJo,237399
|
|
262
262
|
aws_cdk/aws_systemsmanagersap/__init__.py,sha256=3RFiX6y75BIwdYSIps7orm-3ZTaExrN5lRJQBaiB2GA,29488
|
|
263
263
|
aws_cdk/aws_timestream/__init__.py,sha256=1TM1a4aW-nZVt3Bgahvl2wHKAf8aFZc0wULzg3t06e8,240113
|
|
264
264
|
aws_cdk/aws_transfer/__init__.py,sha256=aqhb81GShP32G9IKWcFjS8AMKJEZ8eorTcKzajooLZI,398375
|
|
265
|
-
aws_cdk/aws_verifiedpermissions/__init__.py,sha256=
|
|
265
|
+
aws_cdk/aws_verifiedpermissions/__init__.py,sha256=vnrCr82ZK-0gO7ni7ujZ76SpK7XozcqiLE2gD75X0vY,153458
|
|
266
266
|
aws_cdk/aws_voiceid/__init__.py,sha256=xxMFpYdueMU7CCwjk_6QUc2_9Jg1QRVUw84dtaJavi8,21367
|
|
267
267
|
aws_cdk/aws_vpclattice/__init__.py,sha256=GSkz32gTWwFqpIFe7UTV-A2Zr4st3GIdccgWjchnLdc,287722
|
|
268
268
|
aws_cdk/aws_waf/__init__.py,sha256=YMQ2YOsh1HH4YohLHpzWPq8gFonrxXjEt_xcBf1aPkQ,209925
|
|
269
269
|
aws_cdk/aws_wafregional/__init__.py,sha256=z4RVxtefOmh0mFyWtcKQXhDoWUumGaXY1XCVaMClbbA,274023
|
|
270
|
-
aws_cdk/aws_wafv2/__init__.py,sha256=
|
|
270
|
+
aws_cdk/aws_wafv2/__init__.py,sha256=ctAj0e1iO17dcnFTBbIm96B7lvlF-d9_xhDC-_qtdCw,1394009
|
|
271
271
|
aws_cdk/aws_wisdom/__init__.py,sha256=UWw63bfghI3io7aLhxgcLQvOweEdFteUFGLBu3rU7TQ,95365
|
|
272
|
-
aws_cdk/aws_workspaces/__init__.py,sha256=
|
|
272
|
+
aws_cdk/aws_workspaces/__init__.py,sha256=5gD0_IYad-lwdn9Qf1XbmXz0vLYqqHV_jTkZS7m2VLU,97455
|
|
273
273
|
aws_cdk/aws_workspacesthinclient/__init__.py,sha256=gLv0cKf2hEp1yZOwVlFM9idsms0WDSKnVjBRn1EOxjE,44365
|
|
274
274
|
aws_cdk/aws_workspacesweb/__init__.py,sha256=F6sIvuoQtyMzJ5YUwhHHJK7q_4T8DJDBopRKuKec5Lg,198213
|
|
275
275
|
aws_cdk/aws_xray/__init__.py,sha256=_hMWCwWkghwOwte7imRbFQAPAg0fgLKtWq07w5nZR7E,97143
|
|
@@ -283,9 +283,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=t7G83ZQzGlrH_CVhMxtbzMG
|
|
|
283
283
|
aws_cdk/pipelines/__init__.py,sha256=KDjW65R0g99lCfTOHmPW-mzV-0Zve9w7r1pWflyx1fM,398812
|
|
284
284
|
aws_cdk/region_info/__init__.py,sha256=yP62E_zc3OdVbcUqZbZrk3bBlO22zc2qKP9ll1jKf8Y,38146
|
|
285
285
|
aws_cdk/triggers/__init__.py,sha256=-SwGCN6X-NdH4EMIxij7gisbtSrVYTcpSux1GnkmT3M,118585
|
|
286
|
-
aws_cdk_lib-2.
|
|
287
|
-
aws_cdk_lib-2.
|
|
288
|
-
aws_cdk_lib-2.
|
|
289
|
-
aws_cdk_lib-2.
|
|
290
|
-
aws_cdk_lib-2.
|
|
291
|
-
aws_cdk_lib-2.
|
|
286
|
+
aws_cdk_lib-2.149.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
287
|
+
aws_cdk_lib-2.149.0.dist-info/METADATA,sha256=9AV5O5NQJRatstg1uqUpMjQa3b4KkAwfHlZCuBjBhGw,59897
|
|
288
|
+
aws_cdk_lib-2.149.0.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
|
|
289
|
+
aws_cdk_lib-2.149.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
290
|
+
aws_cdk_lib-2.149.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
291
|
+
aws_cdk_lib-2.149.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|