aws-cdk-lib 2.162.0__py3-none-any.whl → 2.163.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 +5 -7
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.162.0.jsii.tgz → aws-cdk-lib@2.163.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +7 -7
- aws_cdk/aws_appflow/__init__.py +30 -16
- aws_cdk/aws_appsync/__init__.py +11 -21
- aws_cdk/aws_autoscaling/__init__.py +123 -0
- aws_cdk/aws_b2bi/__init__.py +83 -57
- aws_cdk/aws_cloudformation/__init__.py +5 -7
- aws_cdk/aws_codebuild/__init__.py +19 -40
- aws_cdk/aws_codepipeline/__init__.py +88 -7
- aws_cdk/aws_cognito/__init__.py +282 -168
- aws_cdk/aws_dms/__init__.py +1076 -117
- aws_cdk/aws_docdb/__init__.py +19 -13
- aws_cdk/aws_dynamodb/__init__.py +43 -22
- aws_cdk/aws_ec2/__init__.py +1213 -38
- aws_cdk/aws_ecs/__init__.py +187 -18
- aws_cdk/aws_ecs_patterns/__init__.py +189 -27
- aws_cdk/aws_efs/__init__.py +56 -37
- aws_cdk/aws_eks/__init__.py +6 -2
- aws_cdk/aws_elasticache/__init__.py +118 -118
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +21 -1
- aws_cdk/aws_emr/__init__.py +124 -57
- aws_cdk/aws_events/__init__.py +40 -0
- aws_cdk/aws_fms/__init__.py +757 -8
- aws_cdk/aws_fsx/__init__.py +245 -10
- aws_cdk/aws_gamelift/__init__.py +121 -0
- aws_cdk/aws_glue/__init__.py +344 -61
- aws_cdk/aws_iam/__init__.py +44 -0
- aws_cdk/aws_identitystore/__init__.py +4 -2
- aws_cdk/aws_iot/__init__.py +40 -12
- aws_cdk/aws_kinesis/__init__.py +239 -0
- aws_cdk/aws_kms/__init__.py +92 -3
- aws_cdk/aws_lambda/__init__.py +2 -2
- aws_cdk/aws_mediapackagev2/__init__.py +26 -10
- aws_cdk/aws_memorydb/__init__.py +7 -7
- aws_cdk/aws_networkfirewall/__init__.py +89 -0
- aws_cdk/aws_qbusiness/__init__.py +51 -7
- aws_cdk/aws_quicksight/__init__.py +221 -87
- aws_cdk/aws_rds/__init__.py +376 -75
- aws_cdk/aws_redshift/__init__.py +493 -13
- aws_cdk/aws_route53profiles/__init__.py +4 -2
- aws_cdk/aws_route53resolver/__init__.py +26 -60
- aws_cdk/aws_s3/__init__.py +104 -4
- aws_cdk/aws_s3express/__init__.py +73 -13
- aws_cdk/aws_s3outposts/__init__.py +21 -12
- aws_cdk/aws_sagemaker/__init__.py +4 -44
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_stepfunctions/__init__.py +529 -156
- aws_cdk/aws_transfer/__init__.py +15 -4
- aws_cdk/aws_waf/__init__.py +11 -11
- aws_cdk/aws_wafregional/__init__.py +12 -12
- aws_cdk/aws_wisdom/__init__.py +710 -5
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/RECORD +59 -59
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.162.0.dist-info → aws_cdk_lib-2.163.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_gamelift/__init__.py
CHANGED
|
@@ -896,6 +896,8 @@ class CfnContainerGroupDefinition(
|
|
|
896
896
|
# The values are placeholders you should change.
|
|
897
897
|
from aws_cdk import aws_gamelift as gamelift
|
|
898
898
|
|
|
899
|
+
# support_container_definitions: Any
|
|
900
|
+
|
|
899
901
|
cfn_container_group_definition = gamelift.CfnContainerGroupDefinition(self, "MyCfnContainerGroupDefinition",
|
|
900
902
|
container_definitions=[gamelift.CfnContainerGroupDefinition.ContainerDefinitionProperty(
|
|
901
903
|
container_name="containerName",
|
|
@@ -944,6 +946,8 @@ class CfnContainerGroupDefinition(
|
|
|
944
946
|
|
|
945
947
|
# the properties below are optional
|
|
946
948
|
scheduling_strategy="schedulingStrategy",
|
|
949
|
+
source_version_number=123,
|
|
950
|
+
support_container_definitions=[support_container_definitions],
|
|
947
951
|
tags=[CfnTag(
|
|
948
952
|
key="key",
|
|
949
953
|
value="value"
|
|
@@ -962,6 +966,8 @@ class CfnContainerGroupDefinition(
|
|
|
962
966
|
total_cpu_limit: jsii.Number,
|
|
963
967
|
total_memory_limit: jsii.Number,
|
|
964
968
|
scheduling_strategy: typing.Optional[builtins.str] = None,
|
|
969
|
+
source_version_number: typing.Optional[jsii.Number] = None,
|
|
970
|
+
support_container_definitions: typing.Optional[typing.Union[typing.Sequence[typing.Any], _IResolvable_da3f097b]] = None,
|
|
965
971
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
966
972
|
) -> None:
|
|
967
973
|
'''
|
|
@@ -973,6 +979,8 @@ class CfnContainerGroupDefinition(
|
|
|
973
979
|
:param total_cpu_limit: The amount of CPU units on a fleet instance to allocate for the container group. All containers in the group share these resources. This property is an integer value in CPU units (1 vCPU is equal to 1024 CPU units). You can set additional limits for each ``ContainerDefinition`` in the group. If individual containers have limits, this value must be equal to or greater than the sum of all container-specific CPU limits in the group. For more details on memory allocation, see the `Container fleet design guide <https://docs.aws.amazon.com/gamelift/latest/developerguide/containers-design-fleet>`_ .
|
|
974
980
|
:param total_memory_limit: The amount of memory (in MiB) on a fleet instance to allocate for the container group. All containers in the group share these resources. You can set additional limits for each ``ContainerDefinition`` in the group. If individual containers have limits, this value must meet the following requirements: - Equal to or greater than the sum of all container-specific soft memory limits in the group. - Equal to or greater than any container-specific hard limits in the group. For more details on memory allocation, see the `Container fleet design guide <https://docs.aws.amazon.com/gamelift/latest/developerguide/containers-design-fleet>`_ .
|
|
975
981
|
:param scheduling_strategy: The method for deploying the container group across fleet instances. A replica container group might have multiple copies on each fleet instance. A daemon container group maintains only one copy per fleet instance.
|
|
982
|
+
:param source_version_number: A specific ContainerGroupDefinition version to be updated.
|
|
983
|
+
:param support_container_definitions: A collection of support container definitions that define the containers in this group.
|
|
976
984
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
977
985
|
'''
|
|
978
986
|
if __debug__:
|
|
@@ -986,6 +994,8 @@ class CfnContainerGroupDefinition(
|
|
|
986
994
|
total_cpu_limit=total_cpu_limit,
|
|
987
995
|
total_memory_limit=total_memory_limit,
|
|
988
996
|
scheduling_strategy=scheduling_strategy,
|
|
997
|
+
source_version_number=source_version_number,
|
|
998
|
+
support_container_definitions=support_container_definitions,
|
|
989
999
|
tags=tags,
|
|
990
1000
|
)
|
|
991
1001
|
|
|
@@ -1041,6 +1051,34 @@ class CfnContainerGroupDefinition(
|
|
|
1041
1051
|
'''
|
|
1042
1052
|
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
1043
1053
|
|
|
1054
|
+
@builtins.property
|
|
1055
|
+
@jsii.member(jsii_name="attrStatus")
|
|
1056
|
+
def attr_status(self) -> builtins.str:
|
|
1057
|
+
'''Current status of the container group definition resource. Values include:.
|
|
1058
|
+
|
|
1059
|
+
- ``COPYING`` -- Amazon GameLift is in the process of making copies of all container images that are defined in the group. While in this state, the resource can't be used to create a container fleet.
|
|
1060
|
+
- ``READY`` -- Amazon GameLift has copied the registry images for all containers that are defined in the group. You can use a container group definition in this status to create a container fleet.
|
|
1061
|
+
- ``FAILED`` -- Amazon GameLift failed to create a valid container group definition resource. For more details on the cause of the failure, see ``StatusReason`` . A container group definition resource in failed status will be deleted within a few minutes.
|
|
1062
|
+
|
|
1063
|
+
:cloudformationAttribute: Status
|
|
1064
|
+
'''
|
|
1065
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
1066
|
+
|
|
1067
|
+
@builtins.property
|
|
1068
|
+
@jsii.member(jsii_name="attrStatusReason")
|
|
1069
|
+
def attr_status_reason(self) -> builtins.str:
|
|
1070
|
+
'''Additional information about a container group definition that's in ``FAILED`` status. Possible reasons include:.
|
|
1071
|
+
|
|
1072
|
+
- An internal issue prevented Amazon GameLift from creating the container group definition resource. Delete the failed resource and call ``CreateContainerGroupDefinition`` again.
|
|
1073
|
+
- An access-denied message means that you don't have permissions to access the container image on ECR. See `IAM permission examples <https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-iam-policy-examples.html>`_ for help setting up required IAM permissions for Amazon GameLift.
|
|
1074
|
+
- The ``ImageUri`` value for at least one of the containers in the container group definition was invalid or not found in the current AWS account.
|
|
1075
|
+
- At least one of the container images referenced in the container group definition exceeds the allowed size. For size limits, see `Amazon GameLift endpoints and quotas <https://docs.aws.amazon.com/general/latest/gr/gamelift.html>`_ .
|
|
1076
|
+
- At least one of the container images referenced in the container group definition uses a different operating system than the one defined for the container group.
|
|
1077
|
+
|
|
1078
|
+
:cloudformationAttribute: StatusReason
|
|
1079
|
+
'''
|
|
1080
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStatusReason"))
|
|
1081
|
+
|
|
1044
1082
|
@builtins.property
|
|
1045
1083
|
@jsii.member(jsii_name="cdkTagManager")
|
|
1046
1084
|
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
@@ -1135,6 +1173,37 @@ class CfnContainerGroupDefinition(
|
|
|
1135
1173
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1136
1174
|
jsii.set(self, "schedulingStrategy", value) # pyright: ignore[reportArgumentType]
|
|
1137
1175
|
|
|
1176
|
+
@builtins.property
|
|
1177
|
+
@jsii.member(jsii_name="sourceVersionNumber")
|
|
1178
|
+
def source_version_number(self) -> typing.Optional[jsii.Number]:
|
|
1179
|
+
'''A specific ContainerGroupDefinition version to be updated.'''
|
|
1180
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "sourceVersionNumber"))
|
|
1181
|
+
|
|
1182
|
+
@source_version_number.setter
|
|
1183
|
+
def source_version_number(self, value: typing.Optional[jsii.Number]) -> None:
|
|
1184
|
+
if __debug__:
|
|
1185
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5672891cfbdf9eecf6dc0835cad6505adf6ecd0957851f286608ea9077312f19)
|
|
1186
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1187
|
+
jsii.set(self, "sourceVersionNumber", value) # pyright: ignore[reportArgumentType]
|
|
1188
|
+
|
|
1189
|
+
@builtins.property
|
|
1190
|
+
@jsii.member(jsii_name="supportContainerDefinitions")
|
|
1191
|
+
def support_container_definitions(
|
|
1192
|
+
self,
|
|
1193
|
+
) -> typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]]:
|
|
1194
|
+
'''A collection of support container definitions that define the containers in this group.'''
|
|
1195
|
+
return typing.cast(typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]], jsii.get(self, "supportContainerDefinitions"))
|
|
1196
|
+
|
|
1197
|
+
@support_container_definitions.setter
|
|
1198
|
+
def support_container_definitions(
|
|
1199
|
+
self,
|
|
1200
|
+
value: typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]],
|
|
1201
|
+
) -> None:
|
|
1202
|
+
if __debug__:
|
|
1203
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8eefcc08a08c4e2d5876a924350a3f3122337dadd842f4c45350099127878a77)
|
|
1204
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1205
|
+
jsii.set(self, "supportContainerDefinitions", value) # pyright: ignore[reportArgumentType]
|
|
1206
|
+
|
|
1138
1207
|
@builtins.property
|
|
1139
1208
|
@jsii.member(jsii_name="tags")
|
|
1140
1209
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -1996,6 +2065,8 @@ class CfnContainerGroupDefinition(
|
|
|
1996
2065
|
"total_cpu_limit": "totalCpuLimit",
|
|
1997
2066
|
"total_memory_limit": "totalMemoryLimit",
|
|
1998
2067
|
"scheduling_strategy": "schedulingStrategy",
|
|
2068
|
+
"source_version_number": "sourceVersionNumber",
|
|
2069
|
+
"support_container_definitions": "supportContainerDefinitions",
|
|
1999
2070
|
"tags": "tags",
|
|
2000
2071
|
},
|
|
2001
2072
|
)
|
|
@@ -2009,6 +2080,8 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2009
2080
|
total_cpu_limit: jsii.Number,
|
|
2010
2081
|
total_memory_limit: jsii.Number,
|
|
2011
2082
|
scheduling_strategy: typing.Optional[builtins.str] = None,
|
|
2083
|
+
source_version_number: typing.Optional[jsii.Number] = None,
|
|
2084
|
+
support_container_definitions: typing.Optional[typing.Union[typing.Sequence[typing.Any], _IResolvable_da3f097b]] = None,
|
|
2012
2085
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2013
2086
|
) -> None:
|
|
2014
2087
|
'''Properties for defining a ``CfnContainerGroupDefinition``.
|
|
@@ -2019,6 +2092,8 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2019
2092
|
:param total_cpu_limit: The amount of CPU units on a fleet instance to allocate for the container group. All containers in the group share these resources. This property is an integer value in CPU units (1 vCPU is equal to 1024 CPU units). You can set additional limits for each ``ContainerDefinition`` in the group. If individual containers have limits, this value must be equal to or greater than the sum of all container-specific CPU limits in the group. For more details on memory allocation, see the `Container fleet design guide <https://docs.aws.amazon.com/gamelift/latest/developerguide/containers-design-fleet>`_ .
|
|
2020
2093
|
:param total_memory_limit: The amount of memory (in MiB) on a fleet instance to allocate for the container group. All containers in the group share these resources. You can set additional limits for each ``ContainerDefinition`` in the group. If individual containers have limits, this value must meet the following requirements: - Equal to or greater than the sum of all container-specific soft memory limits in the group. - Equal to or greater than any container-specific hard limits in the group. For more details on memory allocation, see the `Container fleet design guide <https://docs.aws.amazon.com/gamelift/latest/developerguide/containers-design-fleet>`_ .
|
|
2021
2094
|
:param scheduling_strategy: The method for deploying the container group across fleet instances. A replica container group might have multiple copies on each fleet instance. A daemon container group maintains only one copy per fleet instance.
|
|
2095
|
+
:param source_version_number: A specific ContainerGroupDefinition version to be updated.
|
|
2096
|
+
:param support_container_definitions: A collection of support container definitions that define the containers in this group.
|
|
2022
2097
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
2023
2098
|
|
|
2024
2099
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html
|
|
@@ -2030,6 +2105,8 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2030
2105
|
# The values are placeholders you should change.
|
|
2031
2106
|
from aws_cdk import aws_gamelift as gamelift
|
|
2032
2107
|
|
|
2108
|
+
# support_container_definitions: Any
|
|
2109
|
+
|
|
2033
2110
|
cfn_container_group_definition_props = gamelift.CfnContainerGroupDefinitionProps(
|
|
2034
2111
|
container_definitions=[gamelift.CfnContainerGroupDefinition.ContainerDefinitionProperty(
|
|
2035
2112
|
container_name="containerName",
|
|
@@ -2078,6 +2155,8 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2078
2155
|
|
|
2079
2156
|
# the properties below are optional
|
|
2080
2157
|
scheduling_strategy="schedulingStrategy",
|
|
2158
|
+
source_version_number=123,
|
|
2159
|
+
support_container_definitions=[support_container_definitions],
|
|
2081
2160
|
tags=[CfnTag(
|
|
2082
2161
|
key="key",
|
|
2083
2162
|
value="value"
|
|
@@ -2092,6 +2171,8 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2092
2171
|
check_type(argname="argument total_cpu_limit", value=total_cpu_limit, expected_type=type_hints["total_cpu_limit"])
|
|
2093
2172
|
check_type(argname="argument total_memory_limit", value=total_memory_limit, expected_type=type_hints["total_memory_limit"])
|
|
2094
2173
|
check_type(argname="argument scheduling_strategy", value=scheduling_strategy, expected_type=type_hints["scheduling_strategy"])
|
|
2174
|
+
check_type(argname="argument source_version_number", value=source_version_number, expected_type=type_hints["source_version_number"])
|
|
2175
|
+
check_type(argname="argument support_container_definitions", value=support_container_definitions, expected_type=type_hints["support_container_definitions"])
|
|
2095
2176
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2096
2177
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2097
2178
|
"container_definitions": container_definitions,
|
|
@@ -2102,6 +2183,10 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2102
2183
|
}
|
|
2103
2184
|
if scheduling_strategy is not None:
|
|
2104
2185
|
self._values["scheduling_strategy"] = scheduling_strategy
|
|
2186
|
+
if source_version_number is not None:
|
|
2187
|
+
self._values["source_version_number"] = source_version_number
|
|
2188
|
+
if support_container_definitions is not None:
|
|
2189
|
+
self._values["support_container_definitions"] = support_container_definitions
|
|
2105
2190
|
if tags is not None:
|
|
2106
2191
|
self._values["tags"] = tags
|
|
2107
2192
|
|
|
@@ -2189,6 +2274,26 @@ class CfnContainerGroupDefinitionProps:
|
|
|
2189
2274
|
result = self._values.get("scheduling_strategy")
|
|
2190
2275
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2191
2276
|
|
|
2277
|
+
@builtins.property
|
|
2278
|
+
def source_version_number(self) -> typing.Optional[jsii.Number]:
|
|
2279
|
+
'''A specific ContainerGroupDefinition version to be updated.
|
|
2280
|
+
|
|
2281
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html#cfn-gamelift-containergroupdefinition-sourceversionnumber
|
|
2282
|
+
'''
|
|
2283
|
+
result = self._values.get("source_version_number")
|
|
2284
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
2285
|
+
|
|
2286
|
+
@builtins.property
|
|
2287
|
+
def support_container_definitions(
|
|
2288
|
+
self,
|
|
2289
|
+
) -> typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]]:
|
|
2290
|
+
'''A collection of support container definitions that define the containers in this group.
|
|
2291
|
+
|
|
2292
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html#cfn-gamelift-containergroupdefinition-supportcontainerdefinitions
|
|
2293
|
+
'''
|
|
2294
|
+
result = self._values.get("support_container_definitions")
|
|
2295
|
+
return typing.cast(typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]], result)
|
|
2296
|
+
|
|
2192
2297
|
@builtins.property
|
|
2193
2298
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
2194
2299
|
'''An array of key-value pairs to apply to this resource.
|
|
@@ -8644,6 +8749,8 @@ def _typecheckingstub__2d0ad3aeb1243549bc05c0346bb1e8303d21326ec9f1a17ec63327d7e
|
|
|
8644
8749
|
total_cpu_limit: jsii.Number,
|
|
8645
8750
|
total_memory_limit: jsii.Number,
|
|
8646
8751
|
scheduling_strategy: typing.Optional[builtins.str] = None,
|
|
8752
|
+
source_version_number: typing.Optional[jsii.Number] = None,
|
|
8753
|
+
support_container_definitions: typing.Optional[typing.Union[typing.Sequence[typing.Any], _IResolvable_da3f097b]] = None,
|
|
8647
8754
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8648
8755
|
) -> None:
|
|
8649
8756
|
"""Type checking stubs"""
|
|
@@ -8697,6 +8804,18 @@ def _typecheckingstub__ee4192c1232484aa6cb4b7a0ff2133a07c228af7fc593005174668d67
|
|
|
8697
8804
|
"""Type checking stubs"""
|
|
8698
8805
|
pass
|
|
8699
8806
|
|
|
8807
|
+
def _typecheckingstub__5672891cfbdf9eecf6dc0835cad6505adf6ecd0957851f286608ea9077312f19(
|
|
8808
|
+
value: typing.Optional[jsii.Number],
|
|
8809
|
+
) -> None:
|
|
8810
|
+
"""Type checking stubs"""
|
|
8811
|
+
pass
|
|
8812
|
+
|
|
8813
|
+
def _typecheckingstub__8eefcc08a08c4e2d5876a924350a3f3122337dadd842f4c45350099127878a77(
|
|
8814
|
+
value: typing.Optional[typing.Union[typing.List[typing.Any], _IResolvable_da3f097b]],
|
|
8815
|
+
) -> None:
|
|
8816
|
+
"""Type checking stubs"""
|
|
8817
|
+
pass
|
|
8818
|
+
|
|
8700
8819
|
def _typecheckingstub__39d9905e11429554186c96e0a5c07109b132519014161fc8e8d7aa9f4250218d(
|
|
8701
8820
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
8702
8821
|
) -> None:
|
|
@@ -8781,6 +8900,8 @@ def _typecheckingstub__6b760a12182b9da0a53204aa5510dae28c2cda4c4fba1ef77f0245093
|
|
|
8781
8900
|
total_cpu_limit: jsii.Number,
|
|
8782
8901
|
total_memory_limit: jsii.Number,
|
|
8783
8902
|
scheduling_strategy: typing.Optional[builtins.str] = None,
|
|
8903
|
+
source_version_number: typing.Optional[jsii.Number] = None,
|
|
8904
|
+
support_container_definitions: typing.Optional[typing.Union[typing.Sequence[typing.Any], _IResolvable_da3f097b]] = None,
|
|
8784
8905
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8785
8906
|
) -> None:
|
|
8786
8907
|
"""Type checking stubs"""
|