aws-solutions-constructs.aws-lambda-kinesisfirehose 2.42.0__tar.gz → 2.45.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.aws-lambda-kinesisfirehose-2.42.0/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/PKG-INFO +2 -2
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/README.md +1 -1
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/pyproject.toml +1 -1
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/setup.py +6 -6
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs/aws_lambda_kinesisfirehose/__init__.py +1 -1
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/__init__.py +2 -2
- aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0/src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.45.0.jsii.tgz +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info}/PKG-INFO +2 -2
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/SOURCES.txt +1 -1
- aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/requires.txt +7 -0
- aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0/src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.42.0.jsii.tgz +0 -0
- aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/requires.txt +0 -7
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/LICENSE +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/MANIFEST.in +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/setup.cfg +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs/aws_lambda_kinesisfirehose/py.typed +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/dependency_links.txt +0 -0
- {aws-solutions-constructs.aws-lambda-kinesisfirehose-2.42.0 → aws-solutions-constructs.aws-lambda-kinesisfirehose-2.45.0}/src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-kinesisfirehose
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.45.0
|
4
4
|
Summary: CDK constructs for defining an interaction between an AWS Lambda function and an existing Amazon Kinesis Firehose Delivery Stream.
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
6
6
|
Author: Amazon Web Services
|
@@ -127,7 +127,7 @@ new LambdaToKinesisFirehose(this, "LambdaToFirehosePattern", new LambdaToKinesis
|
|
127
127
|
|lambdaFunctionProps?|[`lambda.FunctionProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.FunctionProps.html)|Optional user provided props to override the default props for the Lambda function.|
|
128
128
|
|existingKinesisFirehose|[kinesisfirehose.CfnDeliveryStream](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.html)|An existing Kinesis Firehose Delivery Stream to which the Lambda function can put data. Note - the delivery stream construct must have already been created and have the deliveryStreamName set. This construct will *not* create a new Delivery Stream.|
|
129
129
|
|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 Amazon Kinesis Data Firehose. 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.|
|
130
|
-
|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
|
130
|
+
|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.|
|
131
131
|
|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`.|
|
132
132
|
|firehoseEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the delivery stream. Default: FIREHOSE_DELIVERYSTREAM_NAME |
|
133
133
|
|
@@ -104,7 +104,7 @@ new LambdaToKinesisFirehose(this, "LambdaToFirehosePattern", new LambdaToKinesis
|
|
104
104
|
|lambdaFunctionProps?|[`lambda.FunctionProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.FunctionProps.html)|Optional user provided props to override the default props for the Lambda function.|
|
105
105
|
|existingKinesisFirehose|[kinesisfirehose.CfnDeliveryStream](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.html)|An existing Kinesis Firehose Delivery Stream to which the Lambda function can put data. Note - the delivery stream construct must have already been created and have the deliveryStreamName set. This construct will *not* create a new Delivery Stream.|
|
106
106
|
|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 Amazon Kinesis Data Firehose. 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.|
|
107
|
-
|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
|
107
|
+
|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.|
|
108
108
|
|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`.|
|
109
109
|
|firehoseEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the delivery stream. Default: FIREHOSE_DELIVERYSTREAM_NAME |
|
110
110
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "aws-solutions-constructs.aws-lambda-kinesisfirehose",
|
8
|
-
"version": "2.
|
8
|
+
"version": "2.45.0",
|
9
9
|
"description": "CDK constructs for defining an interaction between an AWS Lambda function and an existing Amazon Kinesis Firehose Delivery Stream.",
|
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.aws_lambda_kinesisfirehose._jsii": [
|
29
|
-
"aws-lambda-kinesisfirehose@2.
|
29
|
+
"aws-lambda-kinesisfirehose@2.45.0.jsii.tgz"
|
30
30
|
],
|
31
31
|
"aws_solutions_constructs.aws_lambda_kinesisfirehose": [
|
32
32
|
"py.typed"
|
@@ -34,11 +34,11 @@ kwargs = json.loads(
|
|
34
34
|
},
|
35
35
|
"python_requires": "~=3.7",
|
36
36
|
"install_requires": [
|
37
|
-
"aws-cdk-lib>=2.
|
38
|
-
"aws-solutions-constructs.aws-kinesis-firehose-s3==2.
|
39
|
-
"aws-solutions-constructs.core==2.
|
37
|
+
"aws-cdk-lib>=2.99.1, <3.0.0",
|
38
|
+
"aws-solutions-constructs.aws-kinesis-firehose-s3==2.45.0",
|
39
|
+
"aws-solutions-constructs.core==2.45.0",
|
40
40
|
"constructs>=10.0.0, <11.0.0",
|
41
|
-
"jsii>=1.
|
41
|
+
"jsii>=1.90.0, <2.0.0",
|
42
42
|
"publication>=0.0.3",
|
43
43
|
"typeguard~=2.13.3"
|
44
44
|
],
|
@@ -105,7 +105,7 @@ new LambdaToKinesisFirehose(this, "LambdaToFirehosePattern", new LambdaToKinesis
|
|
105
105
|
|lambdaFunctionProps?|[`lambda.FunctionProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.FunctionProps.html)|Optional user provided props to override the default props for the Lambda function.|
|
106
106
|
|existingKinesisFirehose|[kinesisfirehose.CfnDeliveryStream](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.html)|An existing Kinesis Firehose Delivery Stream to which the Lambda function can put data. Note - the delivery stream construct must have already been created and have the deliveryStreamName set. This construct will *not* create a new Delivery Stream.|
|
107
107
|
|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 Amazon Kinesis Data Firehose. 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.|
|
108
|
-
|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
|
108
|
+
|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.|
|
109
109
|
|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`.|
|
110
110
|
|firehoseEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the delivery stream. Default: FIREHOSE_DELIVERYSTREAM_NAME |
|
111
111
|
|
@@ -17,9 +17,9 @@ import constructs._jsii
|
|
17
17
|
|
18
18
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
19
19
|
"@aws-solutions-constructs/aws-lambda-kinesisfirehose",
|
20
|
-
"2.
|
20
|
+
"2.45.0",
|
21
21
|
__name__[0:-6],
|
22
|
-
"aws-lambda-kinesisfirehose@2.
|
22
|
+
"aws-lambda-kinesisfirehose@2.45.0.jsii.tgz",
|
23
23
|
)
|
24
24
|
|
25
25
|
__all__ = [
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-kinesisfirehose
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.45.0
|
4
4
|
Summary: CDK constructs for defining an interaction between an AWS Lambda function and an existing Amazon Kinesis Firehose Delivery Stream.
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
6
6
|
Author: Amazon Web Services
|
@@ -127,7 +127,7 @@ new LambdaToKinesisFirehose(this, "LambdaToFirehosePattern", new LambdaToKinesis
|
|
127
127
|
|lambdaFunctionProps?|[`lambda.FunctionProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.FunctionProps.html)|Optional user provided props to override the default props for the Lambda function.|
|
128
128
|
|existingKinesisFirehose|[kinesisfirehose.CfnDeliveryStream](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.html)|An existing Kinesis Firehose Delivery Stream to which the Lambda function can put data. Note - the delivery stream construct must have already been created and have the deliveryStreamName set. This construct will *not* create a new Delivery Stream.|
|
129
129
|
|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 Amazon Kinesis Data Firehose. 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.|
|
130
|
-
|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
|
130
|
+
|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.|
|
131
131
|
|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`.|
|
132
132
|
|firehoseEnvironmentVariableName?|`string`|Optional Name for the Lambda function environment variable set to the name of the delivery stream. Default: FIREHOSE_DELIVERYSTREAM_NAME |
|
133
133
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_lambda_kinesisfirehose.egg-info/top_level.txt
|
|
11
11
|
src/aws_solutions_constructs/aws_lambda_kinesisfirehose/__init__.py
|
12
12
|
src/aws_solutions_constructs/aws_lambda_kinesisfirehose/py.typed
|
13
13
|
src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/__init__.py
|
14
|
-
src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.
|
14
|
+
src/aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.45.0.jsii.tgz
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|