aws-solutions-constructs.core 2.69.0__tar.gz → 2.70.0__tar.gz
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.
- {aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.70.0}/PKG-INFO +1 -1
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/setup.py +2 -2
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs/core/__init__.py +205 -1
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
- aws_solutions_constructs_core-2.70.0/src/aws_solutions_constructs/core/_jsii/core@2.70.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +1 -1
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
- aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs/core/_jsii/core@2.69.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/LICENSE +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/MANIFEST.in +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/README.md +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/pyproject.toml +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/setup.cfg +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs/core/py.typed +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs.core.egg-info/requires.txt +0 -0
- {aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/src/aws_solutions_constructs.core.egg-info/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.core",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.70.0",
|
|
9
9
|
"description": "Core CDK Construct for patterns library",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_solutions_constructs.core._jsii": [
|
|
29
|
-
"core@2.
|
|
29
|
+
"core@2.70.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.core": [
|
|
32
32
|
"py.typed"
|
|
@@ -119,6 +119,7 @@ import aws_cdk as _aws_cdk_ceddda9d
|
|
|
119
119
|
import aws_cdk.aws_apigateway as _aws_cdk_aws_apigateway_ceddda9d
|
|
120
120
|
import aws_cdk.aws_apigatewayv2 as _aws_cdk_aws_apigatewayv2_ceddda9d
|
|
121
121
|
import aws_cdk.aws_cloudfront as _aws_cdk_aws_cloudfront_ceddda9d
|
|
122
|
+
import aws_cdk.aws_cloudwatch as _aws_cdk_aws_cloudwatch_ceddda9d
|
|
122
123
|
import aws_cdk.aws_cognito as _aws_cdk_aws_cognito_ceddda9d
|
|
123
124
|
import aws_cdk.aws_dynamodb as _aws_cdk_aws_dynamodb_ceddda9d
|
|
124
125
|
import aws_cdk.aws_ec2 as _aws_cdk_aws_ec2_ceddda9d
|
|
@@ -2269,7 +2270,11 @@ class BuildSagemakerNotebookResponse:
|
|
|
2269
2270
|
@jsii.data_type(
|
|
2270
2271
|
jsii_type="@aws-solutions-constructs/core.BuildStateMachineResponse",
|
|
2271
2272
|
jsii_struct_bases=[],
|
|
2272
|
-
name_mapping={
|
|
2273
|
+
name_mapping={
|
|
2274
|
+
"log_group": "logGroup",
|
|
2275
|
+
"state_machine": "stateMachine",
|
|
2276
|
+
"cloud_watch_alarms": "cloudWatchAlarms",
|
|
2277
|
+
},
|
|
2273
2278
|
)
|
|
2274
2279
|
class BuildStateMachineResponse:
|
|
2275
2280
|
def __init__(
|
|
@@ -2277,19 +2282,24 @@ class BuildStateMachineResponse:
|
|
|
2277
2282
|
*,
|
|
2278
2283
|
log_group: _aws_cdk_aws_logs_ceddda9d.ILogGroup,
|
|
2279
2284
|
state_machine: _aws_cdk_aws_stepfunctions_ceddda9d.StateMachine,
|
|
2285
|
+
cloud_watch_alarms: typing.Optional[typing.Sequence[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]] = None,
|
|
2280
2286
|
) -> None:
|
|
2281
2287
|
'''
|
|
2282
2288
|
:param log_group: -
|
|
2283
2289
|
:param state_machine: -
|
|
2290
|
+
:param cloud_watch_alarms: -
|
|
2284
2291
|
'''
|
|
2285
2292
|
if __debug__:
|
|
2286
2293
|
type_hints = typing.get_type_hints(_typecheckingstub__59bc37dbb01994ff547e71caebd074472187780f69d4ea13ee1b5dcb608c782b)
|
|
2287
2294
|
check_type(argname="argument log_group", value=log_group, expected_type=type_hints["log_group"])
|
|
2288
2295
|
check_type(argname="argument state_machine", value=state_machine, expected_type=type_hints["state_machine"])
|
|
2296
|
+
check_type(argname="argument cloud_watch_alarms", value=cloud_watch_alarms, expected_type=type_hints["cloud_watch_alarms"])
|
|
2289
2297
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2290
2298
|
"log_group": log_group,
|
|
2291
2299
|
"state_machine": state_machine,
|
|
2292
2300
|
}
|
|
2301
|
+
if cloud_watch_alarms is not None:
|
|
2302
|
+
self._values["cloud_watch_alarms"] = cloud_watch_alarms
|
|
2293
2303
|
|
|
2294
2304
|
@builtins.property
|
|
2295
2305
|
def log_group(self) -> _aws_cdk_aws_logs_ceddda9d.ILogGroup:
|
|
@@ -2303,6 +2313,13 @@ class BuildStateMachineResponse:
|
|
|
2303
2313
|
assert result is not None, "Required property 'state_machine' is missing"
|
|
2304
2314
|
return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine, result)
|
|
2305
2315
|
|
|
2316
|
+
@builtins.property
|
|
2317
|
+
def cloud_watch_alarms(
|
|
2318
|
+
self,
|
|
2319
|
+
) -> typing.Optional[typing.List[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]]:
|
|
2320
|
+
result = self._values.get("cloud_watch_alarms")
|
|
2321
|
+
return typing.cast(typing.Optional[typing.List[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]], result)
|
|
2322
|
+
|
|
2306
2323
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2307
2324
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2308
2325
|
|
|
@@ -2315,6 +2332,88 @@ class BuildStateMachineResponse:
|
|
|
2315
2332
|
)
|
|
2316
2333
|
|
|
2317
2334
|
|
|
2335
|
+
@jsii.data_type(
|
|
2336
|
+
jsii_type="@aws-solutions-constructs/core.BuildStateMacineProps",
|
|
2337
|
+
jsii_struct_bases=[],
|
|
2338
|
+
name_mapping={
|
|
2339
|
+
"state_machine_props": "stateMachineProps",
|
|
2340
|
+
"cloud_watch_alarms_prefix": "cloudWatchAlarmsPrefix",
|
|
2341
|
+
"create_cloud_watch_alarms": "createCloudWatchAlarms",
|
|
2342
|
+
"log_group_props": "logGroupProps",
|
|
2343
|
+
},
|
|
2344
|
+
)
|
|
2345
|
+
class BuildStateMacineProps:
|
|
2346
|
+
def __init__(
|
|
2347
|
+
self,
|
|
2348
|
+
*,
|
|
2349
|
+
state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
|
|
2350
|
+
cloud_watch_alarms_prefix: typing.Optional[builtins.str] = None,
|
|
2351
|
+
create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
|
|
2352
|
+
log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2353
|
+
) -> None:
|
|
2354
|
+
'''
|
|
2355
|
+
:param state_machine_props: -
|
|
2356
|
+
:param cloud_watch_alarms_prefix: -
|
|
2357
|
+
:param create_cloud_watch_alarms: -
|
|
2358
|
+
:param log_group_props: -
|
|
2359
|
+
'''
|
|
2360
|
+
if isinstance(state_machine_props, dict):
|
|
2361
|
+
state_machine_props = _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps(**state_machine_props)
|
|
2362
|
+
if isinstance(log_group_props, dict):
|
|
2363
|
+
log_group_props = _aws_cdk_aws_logs_ceddda9d.LogGroupProps(**log_group_props)
|
|
2364
|
+
if __debug__:
|
|
2365
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6e78bd1545f469b1567fb005116ef638ef143767a1d14a5b9953fef0ade4bc44)
|
|
2366
|
+
check_type(argname="argument state_machine_props", value=state_machine_props, expected_type=type_hints["state_machine_props"])
|
|
2367
|
+
check_type(argname="argument cloud_watch_alarms_prefix", value=cloud_watch_alarms_prefix, expected_type=type_hints["cloud_watch_alarms_prefix"])
|
|
2368
|
+
check_type(argname="argument create_cloud_watch_alarms", value=create_cloud_watch_alarms, expected_type=type_hints["create_cloud_watch_alarms"])
|
|
2369
|
+
check_type(argname="argument log_group_props", value=log_group_props, expected_type=type_hints["log_group_props"])
|
|
2370
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2371
|
+
"state_machine_props": state_machine_props,
|
|
2372
|
+
}
|
|
2373
|
+
if cloud_watch_alarms_prefix is not None:
|
|
2374
|
+
self._values["cloud_watch_alarms_prefix"] = cloud_watch_alarms_prefix
|
|
2375
|
+
if create_cloud_watch_alarms is not None:
|
|
2376
|
+
self._values["create_cloud_watch_alarms"] = create_cloud_watch_alarms
|
|
2377
|
+
if log_group_props is not None:
|
|
2378
|
+
self._values["log_group_props"] = log_group_props
|
|
2379
|
+
|
|
2380
|
+
@builtins.property
|
|
2381
|
+
def state_machine_props(
|
|
2382
|
+
self,
|
|
2383
|
+
) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps:
|
|
2384
|
+
result = self._values.get("state_machine_props")
|
|
2385
|
+
assert result is not None, "Required property 'state_machine_props' is missing"
|
|
2386
|
+
return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, result)
|
|
2387
|
+
|
|
2388
|
+
@builtins.property
|
|
2389
|
+
def cloud_watch_alarms_prefix(self) -> typing.Optional[builtins.str]:
|
|
2390
|
+
result = self._values.get("cloud_watch_alarms_prefix")
|
|
2391
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2392
|
+
|
|
2393
|
+
@builtins.property
|
|
2394
|
+
def create_cloud_watch_alarms(self) -> typing.Optional[builtins.bool]:
|
|
2395
|
+
result = self._values.get("create_cloud_watch_alarms")
|
|
2396
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
2397
|
+
|
|
2398
|
+
@builtins.property
|
|
2399
|
+
def log_group_props(
|
|
2400
|
+
self,
|
|
2401
|
+
) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps]:
|
|
2402
|
+
result = self._values.get("log_group_props")
|
|
2403
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps], result)
|
|
2404
|
+
|
|
2405
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2406
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2407
|
+
|
|
2408
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2409
|
+
return not (rhs == self)
|
|
2410
|
+
|
|
2411
|
+
def __repr__(self) -> str:
|
|
2412
|
+
return "BuildStateMacineProps(%s)" % ", ".join(
|
|
2413
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2414
|
+
)
|
|
2415
|
+
|
|
2416
|
+
|
|
2318
2417
|
@jsii.data_type(
|
|
2319
2418
|
jsii_type="@aws-solutions-constructs/core.BuildTopicProps",
|
|
2320
2419
|
jsii_struct_bases=[],
|
|
@@ -5675,6 +5774,88 @@ class SqsProps:
|
|
|
5675
5774
|
)
|
|
5676
5775
|
|
|
5677
5776
|
|
|
5777
|
+
@jsii.data_type(
|
|
5778
|
+
jsii_type="@aws-solutions-constructs/core.StateMachineProps",
|
|
5779
|
+
jsii_struct_bases=[],
|
|
5780
|
+
name_mapping={
|
|
5781
|
+
"state_machine_props": "stateMachineProps",
|
|
5782
|
+
"cloud_watch_alarms_prefix": "cloudWatchAlarmsPrefix",
|
|
5783
|
+
"create_cloud_watch_alarms": "createCloudWatchAlarms",
|
|
5784
|
+
"log_group_props": "logGroupProps",
|
|
5785
|
+
},
|
|
5786
|
+
)
|
|
5787
|
+
class StateMachineProps:
|
|
5788
|
+
def __init__(
|
|
5789
|
+
self,
|
|
5790
|
+
*,
|
|
5791
|
+
state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
|
|
5792
|
+
cloud_watch_alarms_prefix: typing.Optional[builtins.str] = None,
|
|
5793
|
+
create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
|
|
5794
|
+
log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
5795
|
+
) -> None:
|
|
5796
|
+
'''
|
|
5797
|
+
:param state_machine_props: -
|
|
5798
|
+
:param cloud_watch_alarms_prefix: -
|
|
5799
|
+
:param create_cloud_watch_alarms: -
|
|
5800
|
+
:param log_group_props: -
|
|
5801
|
+
'''
|
|
5802
|
+
if isinstance(state_machine_props, dict):
|
|
5803
|
+
state_machine_props = _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps(**state_machine_props)
|
|
5804
|
+
if isinstance(log_group_props, dict):
|
|
5805
|
+
log_group_props = _aws_cdk_aws_logs_ceddda9d.LogGroupProps(**log_group_props)
|
|
5806
|
+
if __debug__:
|
|
5807
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f08646452b145e569da8f0e193b37ccb2f89096eac1b603e02a301d09490fcf9)
|
|
5808
|
+
check_type(argname="argument state_machine_props", value=state_machine_props, expected_type=type_hints["state_machine_props"])
|
|
5809
|
+
check_type(argname="argument cloud_watch_alarms_prefix", value=cloud_watch_alarms_prefix, expected_type=type_hints["cloud_watch_alarms_prefix"])
|
|
5810
|
+
check_type(argname="argument create_cloud_watch_alarms", value=create_cloud_watch_alarms, expected_type=type_hints["create_cloud_watch_alarms"])
|
|
5811
|
+
check_type(argname="argument log_group_props", value=log_group_props, expected_type=type_hints["log_group_props"])
|
|
5812
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5813
|
+
"state_machine_props": state_machine_props,
|
|
5814
|
+
}
|
|
5815
|
+
if cloud_watch_alarms_prefix is not None:
|
|
5816
|
+
self._values["cloud_watch_alarms_prefix"] = cloud_watch_alarms_prefix
|
|
5817
|
+
if create_cloud_watch_alarms is not None:
|
|
5818
|
+
self._values["create_cloud_watch_alarms"] = create_cloud_watch_alarms
|
|
5819
|
+
if log_group_props is not None:
|
|
5820
|
+
self._values["log_group_props"] = log_group_props
|
|
5821
|
+
|
|
5822
|
+
@builtins.property
|
|
5823
|
+
def state_machine_props(
|
|
5824
|
+
self,
|
|
5825
|
+
) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps:
|
|
5826
|
+
result = self._values.get("state_machine_props")
|
|
5827
|
+
assert result is not None, "Required property 'state_machine_props' is missing"
|
|
5828
|
+
return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, result)
|
|
5829
|
+
|
|
5830
|
+
@builtins.property
|
|
5831
|
+
def cloud_watch_alarms_prefix(self) -> typing.Optional[builtins.str]:
|
|
5832
|
+
result = self._values.get("cloud_watch_alarms_prefix")
|
|
5833
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5834
|
+
|
|
5835
|
+
@builtins.property
|
|
5836
|
+
def create_cloud_watch_alarms(self) -> typing.Optional[builtins.bool]:
|
|
5837
|
+
result = self._values.get("create_cloud_watch_alarms")
|
|
5838
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
5839
|
+
|
|
5840
|
+
@builtins.property
|
|
5841
|
+
def log_group_props(
|
|
5842
|
+
self,
|
|
5843
|
+
) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps]:
|
|
5844
|
+
result = self._values.get("log_group_props")
|
|
5845
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps], result)
|
|
5846
|
+
|
|
5847
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5848
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5849
|
+
|
|
5850
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5851
|
+
return not (rhs == self)
|
|
5852
|
+
|
|
5853
|
+
def __repr__(self) -> str:
|
|
5854
|
+
return "StateMachineProps(%s)" % ", ".join(
|
|
5855
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5856
|
+
)
|
|
5857
|
+
|
|
5858
|
+
|
|
5678
5859
|
@jsii.data_type(
|
|
5679
5860
|
jsii_type="@aws-solutions-constructs/core.VpcPropsSet",
|
|
5680
5861
|
jsii_struct_bases=[],
|
|
@@ -5820,6 +6001,7 @@ __all__ = [
|
|
|
5820
6001
|
"BuildSagemakerNotebookProps",
|
|
5821
6002
|
"BuildSagemakerNotebookResponse",
|
|
5822
6003
|
"BuildStateMachineResponse",
|
|
6004
|
+
"BuildStateMacineProps",
|
|
5823
6005
|
"BuildTopicProps",
|
|
5824
6006
|
"BuildTopicResponse",
|
|
5825
6007
|
"BuildVpcProps",
|
|
@@ -5866,6 +6048,7 @@ __all__ = [
|
|
|
5866
6048
|
"SinkStoreType",
|
|
5867
6049
|
"SnsProps",
|
|
5868
6050
|
"SqsProps",
|
|
6051
|
+
"StateMachineProps",
|
|
5869
6052
|
"VpcPropsSet",
|
|
5870
6053
|
"WafWebAclProps",
|
|
5871
6054
|
]
|
|
@@ -6126,6 +6309,17 @@ def _typecheckingstub__59bc37dbb01994ff547e71caebd074472187780f69d4ea13ee1b5dcb6
|
|
|
6126
6309
|
*,
|
|
6127
6310
|
log_group: _aws_cdk_aws_logs_ceddda9d.ILogGroup,
|
|
6128
6311
|
state_machine: _aws_cdk_aws_stepfunctions_ceddda9d.StateMachine,
|
|
6312
|
+
cloud_watch_alarms: typing.Optional[typing.Sequence[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]] = None,
|
|
6313
|
+
) -> None:
|
|
6314
|
+
"""Type checking stubs"""
|
|
6315
|
+
pass
|
|
6316
|
+
|
|
6317
|
+
def _typecheckingstub__6e78bd1545f469b1567fb005116ef638ef143767a1d14a5b9953fef0ade4bc44(
|
|
6318
|
+
*,
|
|
6319
|
+
state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
|
|
6320
|
+
cloud_watch_alarms_prefix: typing.Optional[builtins.str] = None,
|
|
6321
|
+
create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
|
|
6322
|
+
log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6129
6323
|
) -> None:
|
|
6130
6324
|
"""Type checking stubs"""
|
|
6131
6325
|
pass
|
|
@@ -6569,6 +6763,16 @@ def _typecheckingstub__3536696b3fd1fdb7ce43c98c85cb8881b09b6c0b3f129c94eba978621
|
|
|
6569
6763
|
"""Type checking stubs"""
|
|
6570
6764
|
pass
|
|
6571
6765
|
|
|
6766
|
+
def _typecheckingstub__f08646452b145e569da8f0e193b37ccb2f89096eac1b603e02a301d09490fcf9(
|
|
6767
|
+
*,
|
|
6768
|
+
state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
|
|
6769
|
+
cloud_watch_alarms_prefix: typing.Optional[builtins.str] = None,
|
|
6770
|
+
create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
|
|
6771
|
+
log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6772
|
+
) -> None:
|
|
6773
|
+
"""Type checking stubs"""
|
|
6774
|
+
pass
|
|
6775
|
+
|
|
6572
6776
|
def _typecheckingstub__61e2cfb976c78d7138f30cbe00e80016d7751fe28f01cfc46671c7ac62704821(
|
|
6573
6777
|
*,
|
|
6574
6778
|
deploy_vpc: typing.Optional[builtins.bool] = None,
|
|
@@ -33,7 +33,7 @@ import aws_cdk.integ_tests_alpha._jsii
|
|
|
33
33
|
import constructs._jsii
|
|
34
34
|
|
|
35
35
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
36
|
-
"@aws-solutions-constructs/core", "2.
|
|
36
|
+
"@aws-solutions-constructs/core", "2.70.0", __name__[0:-6], "core@2.70.0.jsii.tgz"
|
|
37
37
|
)
|
|
38
38
|
|
|
39
39
|
__all__ = [
|
aws_solutions_constructs_core-2.70.0/src/aws_solutions_constructs/core/_jsii/core@2.70.0.jsii.tgz
ADDED
|
Binary file
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.core.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/core/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/core/py.typed
|
|
13
13
|
src/aws_solutions_constructs/core/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/core/_jsii/core@2.
|
|
14
|
+
src/aws_solutions_constructs/core/_jsii/core@2.70.0.jsii.tgz
|
aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs/core/_jsii/core@2.69.0.jsii.tgz
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_solutions_constructs_core-2.69.0 → aws_solutions_constructs_core-2.70.0}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|