cloudstructs 0.12.10__tar.gz → 0.13.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.12.10
3
+ Version: 0.13.0
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -19,9 +19,9 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.232.0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.248.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.5.1
24
- Requires-Dist: jsii<2.0.0,>=1.127.0
24
+ Requires-Dist: jsii<2.0.0,>=1.128.0
25
25
  Requires-Dist: publication>=0.0.3
26
26
  Requires-Dist: typeguard==2.13.3
27
27
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cloudstructs",
8
- "version": "0.12.10",
8
+ "version": "0.13.0",
9
9
  "description": "High-level constructs for AWS CDK",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/jogold/cloudstructs.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cloudstructs._jsii": [
29
- "cloudstructs@0.12.10.jsii.tgz"
29
+ "cloudstructs@0.13.0.jsii.tgz"
30
30
  ],
31
31
  "cloudstructs": [
32
32
  "py.typed"
@@ -34,9 +34,9 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.9",
36
36
  "install_requires": [
37
- "aws-cdk-lib>=2.232.0, <3.0.0",
37
+ "aws-cdk-lib>=2.248.0, <3.0.0",
38
38
  "constructs>=10.5.1, <11.0.0",
39
- "jsii>=1.127.0, <2.0.0",
39
+ "jsii>=1.128.0, <2.0.0",
40
40
  "publication>=0.0.3",
41
41
  "typeguard==2.13.3"
42
42
  ],
@@ -916,116 +916,6 @@ class _IStateMachineProxy:
916
916
  typing.cast(typing.Any, IStateMachine).__jsii_proxy_class__ = lambda : _IStateMachineProxy
917
917
 
918
918
 
919
- class MjmlTemplate(
920
- _constructs_77d1e7e8.Construct,
921
- metaclass=jsii.JSIIMeta,
922
- jsii_type="cloudstructs.MjmlTemplate",
923
- ):
924
- '''SES email template from `MJML <https://mjml.io/>`_.'''
925
-
926
- def __init__(
927
- self,
928
- scope: "_constructs_77d1e7e8.Construct",
929
- id: builtins.str,
930
- *,
931
- mjml: builtins.str,
932
- subject: builtins.str,
933
- template_name: typing.Optional[builtins.str] = None,
934
- ) -> None:
935
- '''
936
- :param scope: -
937
- :param id: -
938
- :param mjml: The MJML for the email.
939
- :param subject: The subject line of the email.
940
- :param template_name: The name of the template. Default: - a CloudFormation generated name
941
- '''
942
- if __debug__:
943
- type_hints = typing.get_type_hints(_typecheckingstub__7c14fd1220e2b1a369a0a4b700ec2fd623089a00de406d691f1ebd18fbe576b9)
944
- check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
945
- check_type(argname="argument id", value=id, expected_type=type_hints["id"])
946
- props = MjmlTemplateProps(
947
- mjml=mjml, subject=subject, template_name=template_name
948
- )
949
-
950
- jsii.create(self.__class__, self, [scope, id, props])
951
-
952
- @builtins.property
953
- @jsii.member(jsii_name="templateName")
954
- def template_name(self) -> builtins.str:
955
- '''The name of the template.'''
956
- return typing.cast(builtins.str, jsii.get(self, "templateName"))
957
-
958
-
959
- @jsii.data_type(
960
- jsii_type="cloudstructs.MjmlTemplateProps",
961
- jsii_struct_bases=[],
962
- name_mapping={
963
- "mjml": "mjml",
964
- "subject": "subject",
965
- "template_name": "templateName",
966
- },
967
- )
968
- class MjmlTemplateProps:
969
- def __init__(
970
- self,
971
- *,
972
- mjml: builtins.str,
973
- subject: builtins.str,
974
- template_name: typing.Optional[builtins.str] = None,
975
- ) -> None:
976
- '''Properties for a MjmlTemplate.
977
-
978
- :param mjml: The MJML for the email.
979
- :param subject: The subject line of the email.
980
- :param template_name: The name of the template. Default: - a CloudFormation generated name
981
- '''
982
- if __debug__:
983
- type_hints = typing.get_type_hints(_typecheckingstub__702b570f1be82d9279663f13742ac81b522b758421dbf6217639f90302a51319)
984
- check_type(argname="argument mjml", value=mjml, expected_type=type_hints["mjml"])
985
- check_type(argname="argument subject", value=subject, expected_type=type_hints["subject"])
986
- check_type(argname="argument template_name", value=template_name, expected_type=type_hints["template_name"])
987
- self._values: typing.Dict[builtins.str, typing.Any] = {
988
- "mjml": mjml,
989
- "subject": subject,
990
- }
991
- if template_name is not None:
992
- self._values["template_name"] = template_name
993
-
994
- @builtins.property
995
- def mjml(self) -> builtins.str:
996
- '''The MJML for the email.'''
997
- result = self._values.get("mjml")
998
- assert result is not None, "Required property 'mjml' is missing"
999
- return typing.cast(builtins.str, result)
1000
-
1001
- @builtins.property
1002
- def subject(self) -> builtins.str:
1003
- '''The subject line of the email.'''
1004
- result = self._values.get("subject")
1005
- assert result is not None, "Required property 'subject' is missing"
1006
- return typing.cast(builtins.str, result)
1007
-
1008
- @builtins.property
1009
- def template_name(self) -> typing.Optional[builtins.str]:
1010
- '''The name of the template.
1011
-
1012
- :default: - a CloudFormation generated name
1013
- '''
1014
- result = self._values.get("template_name")
1015
- return typing.cast(typing.Optional[builtins.str], result)
1016
-
1017
- def __eq__(self, rhs: typing.Any) -> builtins.bool:
1018
- return isinstance(rhs, self.__class__) and rhs._values == self._values
1019
-
1020
- def __ne__(self, rhs: typing.Any) -> builtins.bool:
1021
- return not (rhs == self)
1022
-
1023
- def __repr__(self) -> str:
1024
- return "MjmlTemplateProps(%s)" % ", ".join(
1025
- k + "=" + repr(v) for k, v in self._values.items()
1026
- )
1027
-
1028
-
1029
919
  class RollTrigger(
1030
920
  metaclass=jsii.JSIIAbstractClass,
1031
921
  jsii_type="cloudstructs.RollTrigger",
@@ -3845,8 +3735,6 @@ __all__ = [
3845
3735
  "EmailReceiver",
3846
3736
  "EmailReceiverProps",
3847
3737
  "IStateMachine",
3848
- "MjmlTemplate",
3849
- "MjmlTemplateProps",
3850
3738
  "RollTrigger",
3851
3739
  "SamlFederatedPrincipal",
3852
3740
  "SamlIdentityProvider",
@@ -4003,26 +3891,6 @@ def _typecheckingstub__8500959d1e20d8ab966122bf508b686ba123767348a2c264cc34f3ce6
4003
3891
  """Type checking stubs"""
4004
3892
  pass
4005
3893
 
4006
- def _typecheckingstub__7c14fd1220e2b1a369a0a4b700ec2fd623089a00de406d691f1ebd18fbe576b9(
4007
- scope: _constructs_77d1e7e8.Construct,
4008
- id: builtins.str,
4009
- *,
4010
- mjml: builtins.str,
4011
- subject: builtins.str,
4012
- template_name: typing.Optional[builtins.str] = None,
4013
- ) -> None:
4014
- """Type checking stubs"""
4015
- pass
4016
-
4017
- def _typecheckingstub__702b570f1be82d9279663f13742ac81b522b758421dbf6217639f90302a51319(
4018
- *,
4019
- mjml: builtins.str,
4020
- subject: builtins.str,
4021
- template_name: typing.Optional[builtins.str] = None,
4022
- ) -> None:
4023
- """Type checking stubs"""
4024
- pass
4025
-
4026
3894
  def _typecheckingstub__04afa5cfc7c8bd76ded88022a29c6aea3d843c1b85acbd7eee9cf5e3d5f838a6(
4027
3895
  rule: _aws_cdk_aws_events_ceddda9d.Rule,
4028
3896
  ) -> None:
@@ -32,7 +32,7 @@ import aws_cdk._jsii
32
32
  import constructs._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "cloudstructs", "0.12.10", __name__[0:-6], "cloudstructs@0.12.10.jsii.tgz"
35
+ "cloudstructs", "0.13.0", __name__[0:-6], "cloudstructs@0.13.0.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.12.10
3
+ Version: 0.13.0
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -19,9 +19,9 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.232.0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.248.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.5.1
24
- Requires-Dist: jsii<2.0.0,>=1.127.0
24
+ Requires-Dist: jsii<2.0.0,>=1.128.0
25
25
  Requires-Dist: publication>=0.0.3
26
26
  Requires-Dist: typeguard==2.13.3
27
27
 
@@ -11,4 +11,4 @@ src/cloudstructs.egg-info/dependency_links.txt
11
11
  src/cloudstructs.egg-info/requires.txt
12
12
  src/cloudstructs.egg-info/top_level.txt
13
13
  src/cloudstructs/_jsii/__init__.py
14
- src/cloudstructs/_jsii/cloudstructs@0.12.10.jsii.tgz
14
+ src/cloudstructs/_jsii/cloudstructs@0.13.0.jsii.tgz
@@ -1,5 +1,5 @@
1
- aws-cdk-lib<3.0.0,>=2.232.0
1
+ aws-cdk-lib<3.0.0,>=2.248.0
2
2
  constructs<11.0.0,>=10.5.1
3
- jsii<2.0.0,>=1.127.0
3
+ jsii<2.0.0,>=1.128.0
4
4
  publication>=0.0.3
5
5
  typeguard==2.13.3
File without changes
File without changes
File without changes