must-cdk 0.0.3__tar.gz → 0.0.5__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: must-cdk
3
- Version: 0.0.3
3
+ Version: 0.0.5
4
4
  Summary: must-cdk
5
5
  Home-page: https://github.com/globalmsq/must-cdk.git
6
6
  Author: Must Admin<admin-mufin@users.noreply.github.com>
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "must-cdk",
8
- "version": "0.0.3",
8
+ "version": "0.0.5",
9
9
  "description": "must-cdk",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/globalmsq/must-cdk.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "must_cdk._jsii": [
29
- "must-cdk@0.0.3.jsii.tgz"
29
+ "must-cdk@0.0.5.jsii.tgz"
30
30
  ],
31
31
  "must_cdk": [
32
32
  "py.typed"
@@ -34,6 +34,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
34
34
  from ._jsii import *
35
35
 
36
36
  import aws_cdk.aws_apigateway as _aws_cdk_aws_apigateway_ceddda9d
37
+ import aws_cdk.aws_certificatemanager as _aws_cdk_aws_certificatemanager_ceddda9d
37
38
  import aws_cdk.aws_iam as _aws_cdk_aws_iam_ceddda9d
38
39
  import aws_cdk.aws_lambda as _aws_cdk_aws_lambda_ceddda9d
39
40
  import aws_cdk.aws_logs as _aws_cdk_aws_logs_ceddda9d
@@ -68,7 +69,7 @@ class ApiGatewayToLambda(
68
69
  :param id: - this is a a scope-unique id.
69
70
  :param api_gateway_props: Optional user-provided props to override the default props for the API.
70
71
  :param create_usage_plan: Whether to create a Usage Plan attached to the API. Must be true if apiGatewayProps.defaultMethodOptions.apiKeyRequired is true
71
- :param custom_domain_name: Optional custom domain configuration for API Gateway. Default: - no custom domain
72
+ :param custom_domain_name: Optional custom domain name for API Gateway, an ACM cert will also created. Default: - no custom domain
72
73
  :param existing_lambda_obj: Existing instance of Lambda Function object, providing both this and ``lambdaFunctionProps`` will cause an error. Default: - None
73
74
  :param hosted_zone: Optional Route53 hosted zone to create alias record for the custom domain. Default: - no Route53 alias record created
74
75
  :param lambda_function_props: User provided props to override the default props for the Lambda function.
@@ -117,6 +118,18 @@ class ApiGatewayToLambda(
117
118
  def a_record(self) -> typing.Optional[_aws_cdk_aws_route53_ceddda9d.ARecord]:
118
119
  return typing.cast(typing.Optional[_aws_cdk_aws_route53_ceddda9d.ARecord], jsii.get(self, "aRecord"))
119
120
 
121
+ @builtins.property
122
+ @jsii.member(jsii_name="certificate")
123
+ def certificate(
124
+ self,
125
+ ) -> typing.Optional[_aws_cdk_aws_certificatemanager_ceddda9d.Certificate]:
126
+ return typing.cast(typing.Optional[_aws_cdk_aws_certificatemanager_ceddda9d.Certificate], jsii.get(self, "certificate"))
127
+
128
+ @builtins.property
129
+ @jsii.member(jsii_name="domain")
130
+ def domain(self) -> typing.Optional[_aws_cdk_aws_apigateway_ceddda9d.DomainName]:
131
+ return typing.cast(typing.Optional[_aws_cdk_aws_apigateway_ceddda9d.DomainName], jsii.get(self, "domain"))
132
+
120
133
 
121
134
  @jsii.data_type(
122
135
  jsii_type="must-cdk.ApiGatewayToLambdaProps",
@@ -146,7 +159,7 @@ class ApiGatewayToLambdaProps:
146
159
  '''
147
160
  :param api_gateway_props: Optional user-provided props to override the default props for the API.
148
161
  :param create_usage_plan: Whether to create a Usage Plan attached to the API. Must be true if apiGatewayProps.defaultMethodOptions.apiKeyRequired is true
149
- :param custom_domain_name: Optional custom domain configuration for API Gateway. Default: - no custom domain
162
+ :param custom_domain_name: Optional custom domain name for API Gateway, an ACM cert will also created. Default: - no custom domain
150
163
  :param existing_lambda_obj: Existing instance of Lambda Function object, providing both this and ``lambdaFunctionProps`` will cause an error. Default: - None
151
164
  :param hosted_zone: Optional Route53 hosted zone to create alias record for the custom domain. Default: - no Route53 alias record created
152
165
  :param lambda_function_props: User provided props to override the default props for the Lambda function.
@@ -199,7 +212,7 @@ class ApiGatewayToLambdaProps:
199
212
 
200
213
  @builtins.property
201
214
  def custom_domain_name(self) -> typing.Optional[builtins.str]:
202
- '''Optional custom domain configuration for API Gateway.
215
+ '''Optional custom domain name for API Gateway, an ACM cert will also created.
203
216
 
204
217
  :default: - no custom domain
205
218
  '''
@@ -32,7 +32,7 @@ import aws_cdk._jsii
32
32
  import constructs._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "must-cdk", "0.0.3", __name__[0:-6], "must-cdk@0.0.3.jsii.tgz"
35
+ "must-cdk", "0.0.5", __name__[0:-6], "must-cdk@0.0.5.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: must-cdk
3
- Version: 0.0.3
3
+ Version: 0.0.5
4
4
  Summary: must-cdk
5
5
  Home-page: https://github.com/globalmsq/must-cdk.git
6
6
  Author: Must Admin<admin-mufin@users.noreply.github.com>
@@ -11,4 +11,4 @@ src/must_cdk.egg-info/dependency_links.txt
11
11
  src/must_cdk.egg-info/requires.txt
12
12
  src/must_cdk.egg-info/top_level.txt
13
13
  src/must_cdk/_jsii/__init__.py
14
- src/must_cdk/_jsii/must-cdk@0.0.3.jsii.tgz
14
+ src/must_cdk/_jsii/must-cdk@0.0.5.jsii.tgz
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes