aws-solutions-constructs.aws-lambda-ssmstringparameter 2.42.0__py3-none-any.whl → 2.47.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.
@@ -108,7 +108,7 @@ new LambdaToSsmstringparameter(this, "test-lambda-ssmstringparameter-stack",
108
108
  |stringParameterProps?|[`ssm.StringParameterProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.StringParameterProps.html)|Optional user provided props to override the default props for SSM String parameter. If existingStringParameterObj is not set stringParameterProps is required. The only supported [`ssm.StringParameterProps.type`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.StringParameterProps.html#type) is [`STRING`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.ParameterType.html#string) if a different value is provided it will be overridden.|
109
109
  |stringParameterEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the parameter. Default: SSM_STRING_PARAMETER_NAME |
110
110
  |existingVpc?|[`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html)|An optional, existing VPC into which this pattern should be deployed. When deployed in a VPC, the Lambda function will use ENIs in the VPC to access network resources and an Interface Endpoint will be created in the VPC for AWS Systems Manager Parameter. If an existing VPC is provided, the `deployVpc` property cannot be `true`. This uses `ec2.IVpc` to allow clients to supply VPCs that exist outside the stack using the [`ec2.Vpc.fromLookup()`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.Vpc.html#static-fromwbrlookupscope-id-options) method.|
111
- |vpcProps?|[`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html)|Optional user-provided properties to override the default properties for the new VPC. `enableDnsHostnames`, `enableDnsSupport`, `natGateways` and `subnetConfiguration` are set by the pattern, so any values for those properties supplied here will be overrriden. If `deployVpc` is not `true` then this property will be ignored.|
111
+ |vpcProps?|[`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html)|Optional user-provided properties to override the default properties for the new VPC. `enableDnsHostnames`, `enableDnsSupport`, `natGateways` and `subnetConfiguration` are set by the pattern, so any values for those properties supplied here will be overridden. If `deployVpc` is not `true` then this property will be ignored.|
112
112
  |deployVpc?|`boolean`|Whether to create a new VPC based on `vpcProps` into which to deploy this pattern. Setting this to true will deploy the minimal, most private VPC to run the pattern:<ul><li> One isolated subnet in each Availability Zone used by the CDK program</li><li>`enableDnsHostnames` and `enableDnsSupport` will both be set to true</li></ul>If this property is `true` then `existingVpc` cannot be specified. Defaults to `false`.|
113
113
  |stringParameterPermissions|`string`|Optional SSM String parameter permissions to grant to the Lambda function. One of the following may be specified: "Read", "ReadWrite".
114
114
 
@@ -16,9 +16,9 @@ import constructs._jsii
16
16
 
17
17
  __jsii_assembly__ = jsii.JSIIAssembly.load(
18
18
  "@aws-solutions-constructs/aws-lambda-ssmstringparameter",
19
- "2.42.0",
19
+ "2.47.0",
20
20
  __name__[0:-6],
21
- "aws-lambda-ssmstringparameter@2.42.0.jsii.tgz",
21
+ "aws-lambda-ssmstringparameter@2.47.0.jsii.tgz",
22
22
  )
23
23
 
24
24
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.aws-lambda-ssmstringparameter
3
- Version: 2.42.0
3
+ Version: 2.47.0
4
4
  Summary: CDK constructs for defining an interaction between an AWS Lambda function and AWS Systems Manager Parameter Store String parameter
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -10,20 +10,19 @@ Classifier: Intended Audience :: Developers
10
10
  Classifier: Operating System :: OS Independent
11
11
  Classifier: Programming Language :: JavaScript
12
12
  Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.7
14
13
  Classifier: Programming Language :: Python :: 3.8
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Typing :: Typed
19
18
  Classifier: License :: OSI Approved
20
- Requires-Python: ~=3.7
19
+ Requires-Python: ~=3.8
21
20
  Description-Content-Type: text/markdown
22
21
  License-File: LICENSE
23
- Requires-Dist: aws-cdk-lib <3.0.0,>=2.82.0
24
- Requires-Dist: aws-solutions-constructs.core ==2.42.0
22
+ Requires-Dist: aws-cdk-lib <3.0.0,>=2.111.0
23
+ Requires-Dist: aws-solutions-constructs.core ==2.47.0
25
24
  Requires-Dist: constructs <11.0.0,>=10.0.0
26
- Requires-Dist: jsii <2.0.0,>=1.87.0
25
+ Requires-Dist: jsii <2.0.0,>=1.92.0
27
26
  Requires-Dist: publication >=0.0.3
28
27
  Requires-Dist: typeguard ~=2.13.3
29
28
 
@@ -136,7 +135,7 @@ new LambdaToSsmstringparameter(this, "test-lambda-ssmstringparameter-stack",
136
135
  |stringParameterProps?|[`ssm.StringParameterProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.StringParameterProps.html)|Optional user provided props to override the default props for SSM String parameter. If existingStringParameterObj is not set stringParameterProps is required. The only supported [`ssm.StringParameterProps.type`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.StringParameterProps.html#type) is [`STRING`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm.ParameterType.html#string) if a different value is provided it will be overridden.|
137
136
  |stringParameterEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the parameter. Default: SSM_STRING_PARAMETER_NAME |
138
137
  |existingVpc?|[`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html)|An optional, existing VPC into which this pattern should be deployed. When deployed in a VPC, the Lambda function will use ENIs in the VPC to access network resources and an Interface Endpoint will be created in the VPC for AWS Systems Manager Parameter. If an existing VPC is provided, the `deployVpc` property cannot be `true`. This uses `ec2.IVpc` to allow clients to supply VPCs that exist outside the stack using the [`ec2.Vpc.fromLookup()`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.Vpc.html#static-fromwbrlookupscope-id-options) method.|
139
- |vpcProps?|[`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html)|Optional user-provided properties to override the default properties for the new VPC. `enableDnsHostnames`, `enableDnsSupport`, `natGateways` and `subnetConfiguration` are set by the pattern, so any values for those properties supplied here will be overrriden. If `deployVpc` is not `true` then this property will be ignored.|
138
+ |vpcProps?|[`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html)|Optional user-provided properties to override the default properties for the new VPC. `enableDnsHostnames`, `enableDnsSupport`, `natGateways` and `subnetConfiguration` are set by the pattern, so any values for those properties supplied here will be overridden. If `deployVpc` is not `true` then this property will be ignored.|
140
139
  |deployVpc?|`boolean`|Whether to create a new VPC based on `vpcProps` into which to deploy this pattern. Setting this to true will deploy the minimal, most private VPC to run the pattern:<ul><li> One isolated subnet in each Availability Zone used by the CDK program</li><li>`enableDnsHostnames` and `enableDnsSupport` will both be set to true</li></ul>If this property is `true` then `existingVpc` cannot be specified. Defaults to `false`.|
141
140
  |stringParameterPermissions|`string`|Optional SSM String parameter permissions to grant to the Lambda function. One of the following may be specified: "Read", "ReadWrite".
142
141
 
@@ -0,0 +1,9 @@
1
+ aws_solutions_constructs/aws_lambda_ssmstringparameter/__init__.py,sha256=5HnFBE6RReDWGuJTws_MS0PvwPiqALCQda5NWfZLt_8,26815
2
+ aws_solutions_constructs/aws_lambda_ssmstringparameter/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_solutions_constructs/aws_lambda_ssmstringparameter/_jsii/__init__.py,sha256=MeEQkCJIHnUsmbP4X15TAE7JK54ase6V3PrKT-2_URY,509
4
+ aws_solutions_constructs/aws_lambda_ssmstringparameter/_jsii/aws-lambda-ssmstringparameter@2.47.0.jsii.tgz,sha256=V8Lp9lUR1noNAEpv74TDwwJYK8X9Oq9831X0ap0I2RU,95986
5
+ aws_solutions_constructs.aws_lambda_ssmstringparameter-2.47.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
+ aws_solutions_constructs.aws_lambda_ssmstringparameter-2.47.0.dist-info/METADATA,sha256=SF5F6n-lAN9KvnmCREOFpw5LP7A8Fp0zdzXFzy0W2SE,9871
7
+ aws_solutions_constructs.aws_lambda_ssmstringparameter-2.47.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
8
+ aws_solutions_constructs.aws_lambda_ssmstringparameter-2.47.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
+ aws_solutions_constructs.aws_lambda_ssmstringparameter-2.47.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.1)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,9 +0,0 @@
1
- aws_solutions_constructs/aws_lambda_ssmstringparameter/__init__.py,sha256=KRFwX0Za0pGGbqK7wKFuA7b1YmMjAnAy1EV2zPUDepY,26815
2
- aws_solutions_constructs/aws_lambda_ssmstringparameter/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_solutions_constructs/aws_lambda_ssmstringparameter/_jsii/__init__.py,sha256=kRLgn53_ROnGTFhUbLFXg08wbs8meNvLRoWjoSfAt4g,509
4
- aws_solutions_constructs/aws_lambda_ssmstringparameter/_jsii/aws-lambda-ssmstringparameter@2.42.0.jsii.tgz,sha256=OJTZpvRaHRKz1wTjSgZP9W1jK_WoVit9qrw5rm3WHPU,95635
5
- aws_solutions_constructs.aws_lambda_ssmstringparameter-2.42.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
- aws_solutions_constructs.aws_lambda_ssmstringparameter-2.42.0.dist-info/METADATA,sha256=mt-DnFlOO_VkSn-n29GF4gluF0yFk8mYL7ubk_XYDyM,9920
7
- aws_solutions_constructs.aws_lambda_ssmstringparameter-2.42.0.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
8
- aws_solutions_constructs.aws_lambda_ssmstringparameter-2.42.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
- aws_solutions_constructs.aws_lambda_ssmstringparameter-2.42.0.dist-info/RECORD,,