aws-solutions-constructs.core 2.85.1__tar.gz → 2.85.3__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.85.1/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.85.3}/PKG-INFO +1 -1
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/setup.py +2 -2
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs/core/__init__.py +28 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
- aws_solutions_constructs_core-2.85.3/src/aws_solutions_constructs/core/_jsii/core@2.85.3.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +1 -1
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
- aws_solutions_constructs_core-2.85.1/src/aws_solutions_constructs/core/_jsii/core@2.85.1.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/LICENSE +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/MANIFEST.in +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/README.md +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/pyproject.toml +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/setup.cfg +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs/core/py.typed +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/src/aws_solutions_constructs.core.egg-info/requires.txt +0 -0
- {aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/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.85.
|
|
8
|
+
"version": "2.85.3",
|
|
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.85.
|
|
29
|
+
"core@2.85.3.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.core": [
|
|
32
32
|
"py.typed"
|
|
@@ -4892,6 +4892,8 @@ class DeploySagemakerEndpointResponse:
|
|
|
4892
4892
|
"dynamo_table_props": "dynamoTableProps",
|
|
4893
4893
|
"existing_table_interface": "existingTableInterface",
|
|
4894
4894
|
"existing_table_obj": "existingTableObj",
|
|
4895
|
+
"point_in_time_recovery": "pointInTimeRecovery",
|
|
4896
|
+
"point_in_time_recovery_specification": "pointInTimeRecoverySpecification",
|
|
4895
4897
|
},
|
|
4896
4898
|
)
|
|
4897
4899
|
class DynamoDBProps:
|
|
@@ -4901,19 +4903,27 @@ class DynamoDBProps:
|
|
|
4901
4903
|
dynamo_table_props: typing.Optional[typing.Union[_aws_cdk_aws_dynamodb_ceddda9d.TableProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4902
4904
|
existing_table_interface: typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.ITable] = None,
|
|
4903
4905
|
existing_table_obj: typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.Table] = None,
|
|
4906
|
+
point_in_time_recovery: typing.Optional[builtins.bool] = None,
|
|
4907
|
+
point_in_time_recovery_specification: typing.Optional[typing.Union[_aws_cdk_aws_dynamodb_ceddda9d.PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4904
4908
|
) -> None:
|
|
4905
4909
|
'''
|
|
4906
4910
|
:param dynamo_table_props: -
|
|
4907
4911
|
:param existing_table_interface: -
|
|
4908
4912
|
:param existing_table_obj: -
|
|
4913
|
+
:param point_in_time_recovery: -
|
|
4914
|
+
:param point_in_time_recovery_specification: -
|
|
4909
4915
|
'''
|
|
4910
4916
|
if isinstance(dynamo_table_props, dict):
|
|
4911
4917
|
dynamo_table_props = _aws_cdk_aws_dynamodb_ceddda9d.TableProps(**dynamo_table_props)
|
|
4918
|
+
if isinstance(point_in_time_recovery_specification, dict):
|
|
4919
|
+
point_in_time_recovery_specification = _aws_cdk_aws_dynamodb_ceddda9d.PointInTimeRecoverySpecification(**point_in_time_recovery_specification)
|
|
4912
4920
|
if __debug__:
|
|
4913
4921
|
type_hints = typing.get_type_hints(_typecheckingstub__fb247f6ada82965a3afeba568ee3ee0a3bacfe3f70c90eb7a7d261e9aba05147)
|
|
4914
4922
|
check_type(argname="argument dynamo_table_props", value=dynamo_table_props, expected_type=type_hints["dynamo_table_props"])
|
|
4915
4923
|
check_type(argname="argument existing_table_interface", value=existing_table_interface, expected_type=type_hints["existing_table_interface"])
|
|
4916
4924
|
check_type(argname="argument existing_table_obj", value=existing_table_obj, expected_type=type_hints["existing_table_obj"])
|
|
4925
|
+
check_type(argname="argument point_in_time_recovery", value=point_in_time_recovery, expected_type=type_hints["point_in_time_recovery"])
|
|
4926
|
+
check_type(argname="argument point_in_time_recovery_specification", value=point_in_time_recovery_specification, expected_type=type_hints["point_in_time_recovery_specification"])
|
|
4917
4927
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4918
4928
|
if dynamo_table_props is not None:
|
|
4919
4929
|
self._values["dynamo_table_props"] = dynamo_table_props
|
|
@@ -4921,6 +4931,10 @@ class DynamoDBProps:
|
|
|
4921
4931
|
self._values["existing_table_interface"] = existing_table_interface
|
|
4922
4932
|
if existing_table_obj is not None:
|
|
4923
4933
|
self._values["existing_table_obj"] = existing_table_obj
|
|
4934
|
+
if point_in_time_recovery is not None:
|
|
4935
|
+
self._values["point_in_time_recovery"] = point_in_time_recovery
|
|
4936
|
+
if point_in_time_recovery_specification is not None:
|
|
4937
|
+
self._values["point_in_time_recovery_specification"] = point_in_time_recovery_specification
|
|
4924
4938
|
|
|
4925
4939
|
@builtins.property
|
|
4926
4940
|
def dynamo_table_props(
|
|
@@ -4943,6 +4957,18 @@ class DynamoDBProps:
|
|
|
4943
4957
|
result = self._values.get("existing_table_obj")
|
|
4944
4958
|
return typing.cast(typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.Table], result)
|
|
4945
4959
|
|
|
4960
|
+
@builtins.property
|
|
4961
|
+
def point_in_time_recovery(self) -> typing.Optional[builtins.bool]:
|
|
4962
|
+
result = self._values.get("point_in_time_recovery")
|
|
4963
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
4964
|
+
|
|
4965
|
+
@builtins.property
|
|
4966
|
+
def point_in_time_recovery_specification(
|
|
4967
|
+
self,
|
|
4968
|
+
) -> typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.PointInTimeRecoverySpecification]:
|
|
4969
|
+
result = self._values.get("point_in_time_recovery_specification")
|
|
4970
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.PointInTimeRecoverySpecification], result)
|
|
4971
|
+
|
|
4946
4972
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4947
4973
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4948
4974
|
|
|
@@ -7680,6 +7706,8 @@ def _typecheckingstub__fb247f6ada82965a3afeba568ee3ee0a3bacfe3f70c90eb7a7d261e9a
|
|
|
7680
7706
|
dynamo_table_props: typing.Optional[typing.Union[_aws_cdk_aws_dynamodb_ceddda9d.TableProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7681
7707
|
existing_table_interface: typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.ITable] = None,
|
|
7682
7708
|
existing_table_obj: typing.Optional[_aws_cdk_aws_dynamodb_ceddda9d.Table] = None,
|
|
7709
|
+
point_in_time_recovery: typing.Optional[builtins.bool] = None,
|
|
7710
|
+
point_in_time_recovery_specification: typing.Optional[typing.Union[_aws_cdk_aws_dynamodb_ceddda9d.PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7683
7711
|
) -> None:
|
|
7684
7712
|
"""Type checking stubs"""
|
|
7685
7713
|
pass
|
|
@@ -32,7 +32,7 @@ import aws_cdk._jsii
|
|
|
32
32
|
import constructs._jsii
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
|
-
"@aws-solutions-constructs/core", "2.85.
|
|
35
|
+
"@aws-solutions-constructs/core", "2.85.3", __name__[0:-6], "core@2.85.3.jsii.tgz"
|
|
36
36
|
)
|
|
37
37
|
|
|
38
38
|
__all__ = [
|
aws_solutions_constructs_core-2.85.3/src/aws_solutions_constructs/core/_jsii/core@2.85.3.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.85.
|
|
14
|
+
src/aws_solutions_constructs/core/_jsii/core@2.85.3.jsii.tgz
|
aws_solutions_constructs_core-2.85.1/src/aws_solutions_constructs/core/_jsii/core@2.85.1.jsii.tgz
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_solutions_constructs_core-2.85.1 → aws_solutions_constructs_core-2.85.3}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|