@aws-solutions-constructs/aws-fargate-kinesisstreams 2.30.0
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.
- package/.eslintignore +4 -0
- package/.jsii +3760 -0
- package/README.md +119 -0
- package/architecture.png +0 -0
- package/lib/index.d.ts +129 -0
- package/lib/index.js +62 -0
- package/package.json +93 -0
- package/test/fargate-kinesisstreams.test.d.ts +13 -0
- package/test/fargate-kinesisstreams.test.js +518 -0
- package/test/integ.existingFargateService.d.ts +13 -0
- package/test/integ.existingFargateService.expected.json +1248 -0
- package/test/integ.existingFargateService.js +32 -0
- package/test/integ.existingStream.d.ts +13 -0
- package/test/integ.existingStream.expected.json +1247 -0
- package/test/integ.existingStream.js +35 -0
- package/test/integ.existingVpc.d.ts +13 -0
- package/test/integ.existingVpc.expected.json +1248 -0
- package/test/integ.existingVpc.js +33 -0
- package/test/integ.fargateServiceFromProps.d.ts +13 -0
- package/test/integ.fargateServiceFromProps.expected.json +1249 -0
- package/test/integ.fargateServiceFromProps.js +33 -0
- package/test/integ.noArguments.d.ts +13 -0
- package/test/integ.noArguments.expected.json +1248 -0
- package/test/integ.noArguments.js +29 -0
- package/test/integ.streamFromProps.d.ts +13 -0
- package/test/integ.streamFromProps.expected.json +1247 -0
- package/test/integ.streamFromProps.js +34 -0
- package/test/integ.vpcFromProps.d.ts +13 -0
- package/test/integ.vpcFromProps.expected.json +1248 -0
- package/test/integ.vpcFromProps.js +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# aws-fargate-kinesisstreams module
|
|
2
|
+
<!--BEGIN STABILITY BANNER-->
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
<!--END STABILITY BANNER-->
|
|
10
|
+
|
|
11
|
+
| **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
|
|
12
|
+
|:-------------|:-------------|
|
|
13
|
+
<div style="height:8px"></div>
|
|
14
|
+
|
|
15
|
+
| **Language** | **Package** |
|
|
16
|
+
|:-------------|-----------------|
|
|
17
|
+
| Python|`aws_solutions_constructs.aws_fargate_kinesisstreams`|
|
|
18
|
+
| Typescript|`@aws-solutions-constructs/aws-fargate-kinesisstreams`|
|
|
19
|
+
| Java|`software.amazon.awsconstructs.services.fargatekinesisstreams`|
|
|
20
|
+
|
|
21
|
+
## Overview
|
|
22
|
+
This AWS Solutions Construct deploys an AWS Fargate Service that can put records on an Amazon Kinesis Data Stream.
|
|
23
|
+
|
|
24
|
+
Here is a minimal deployable pattern definition:
|
|
25
|
+
|
|
26
|
+
Typescript
|
|
27
|
+
``` typescript
|
|
28
|
+
import { Construct } from 'constructs';
|
|
29
|
+
import { Stack, StackProps } from 'aws-cdk-lib';
|
|
30
|
+
import { FargateToKinesisStreamsProps } from '@aws-solutions-constructs/aws-fargate-kinesisstreams';
|
|
31
|
+
import * as fargate from 'aws-cdk-lib/aws-fargate';
|
|
32
|
+
|
|
33
|
+
new FargateToKinesisStreams(this, 'FargateToKinesisStreams', {
|
|
34
|
+
publicApi: true,
|
|
35
|
+
ecrRepositoryArn: "arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
|
|
36
|
+
});
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Python
|
|
40
|
+
``` python
|
|
41
|
+
from aws_solutions_constructs.aws_fargate_kinesisstreams import FargateToKinesisStreams
|
|
42
|
+
from aws_cdk import (
|
|
43
|
+
aws_fargate as _fargate,
|
|
44
|
+
Stack
|
|
45
|
+
)
|
|
46
|
+
from constructs import Construct
|
|
47
|
+
|
|
48
|
+
FargateToKinesisStreams(self, 'FargateToKinesisStreams',
|
|
49
|
+
public_api=True,
|
|
50
|
+
ecr_repository_arn="arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo"
|
|
51
|
+
)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Java
|
|
55
|
+
``` java
|
|
56
|
+
import software.constructs.Construct;
|
|
57
|
+
|
|
58
|
+
import software.amazon.awscdk.Stack;
|
|
59
|
+
import software.amazon.awscdk.StackProps;
|
|
60
|
+
import software.amazon.awscdk.services.fargate.*;
|
|
61
|
+
import software.amazon.awscdk.services.fargate.eventsources.*;
|
|
62
|
+
import software.amazon.awscdk.services.fargate.Runtime;
|
|
63
|
+
import software.amazon.awsconstructs.services.fargatekinesisstreams.*;
|
|
64
|
+
|
|
65
|
+
new FargateToKinesisStreams(this, "FargateToKinesisStreams", new FargateToKinesisStreamsProps.Builder()
|
|
66
|
+
.publicApi(true)
|
|
67
|
+
.ecrRepositoryArn("arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo")
|
|
68
|
+
.build());
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Pattern Construct Props
|
|
72
|
+
|
|
73
|
+
| **Name** | **Type** | **Description** |
|
|
74
|
+
|:-------------|:----------------|-----------------|
|
|
75
|
+
| publicApi | `boolean` | True if the VPC provisioned by this construct should contain Public/Private Subnets, otherwise False for the VPC to contain Isolated Subnets only. Note this property is ignored if an existing VPC is specified in the `existingVpc` property. |
|
|
76
|
+
| vpcProps? | [`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html) | Optional custom properties for a new VPC the construct will create. Providing both this and `existingVpc` is an error. An Amazon Kinesis Streams Interface Endpoint will be added to this VPC. |
|
|
77
|
+
| existingVpc? | [`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html) | An existing VPC in which to deploy the Fargate Service. Providing both this and `vpcProps` is an error. If the client provides an existing Fargate Service in the `existingFargateServiceObject` property, this value must be the VPC where the service is running. An Amazon Kinesis Streams Interface Endpoint will be added to this VPC. |
|
|
78
|
+
| clusterProps? | [`ecs.ClusterProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.ClusterProps.html) | Optional properties to create a new ECS cluster. To provide an existing cluster, use the cluster attribute of fargateServiceProps. |
|
|
79
|
+
| ecrRepositoryArn? | `string` | The arn of an ECR Repository containing the image to use to generate the containers. Either this or the image property of containerDefinitionProps must be provided. format: arn:aws:ecr:*region*:*account number*:repository/*Repository Name* |
|
|
80
|
+
| ecrImageVersion? | `string` | The version of the image to use from the repository. Defaults to 'Latest' |
|
|
81
|
+
| containerDefinitionProps? | [`ecs.ContainerDefinitionProps \| any`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.ContainerDefinitionProps.html) | Optional props to define the container created for the Fargate Service. (defaults found in fargate-defaults.ts) |
|
|
82
|
+
| fargateTaskDefinitionProps? | [`ecs.FargateTaskDefinitionProps \| any`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.FargateTaskDefinitionProps.html) | Optional props to define the Fargate Task Definition for this construct. (defaults found in fargate-defaults.ts) |
|
|
83
|
+
| fargateServiceProps? | [`ecs.FargateServiceProps \| any`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.FargateServiceProps.html) | Optional values to override default Fargate Task definition properties (fargate-defaults.ts). The construct will default to launching the service is the most isolated subnets available (precedence: Isolated, Private and Public). Override those and other defaults here. |
|
|
84
|
+
| existingFargateServiceObject? | [`ecs.FargateService`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.FargateService.html) | A Fargate Service already instantiated (probably by another Solutions Construct). If this is specified, then no props defining a new service can be provided, including: ecrImageVersion, containerDefinitionProps, fargateTaskDefinitionProps, ecrRepositoryArn, fargateServiceProps, clusterProps |
|
|
85
|
+
| existingContainerDefinitionObject? | [`ecs.ContainerDefinition`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.ContainerDefinition.html) | A container definition already instantiated as part of a Fargate service. This must be the container in the `existingFargateServiceObject`. |
|
|
86
|
+
|existingStreamObj?|[`kinesis.Stream`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesis.Stream.html) | Existing instance of a Kinesis Data Stream. Providing both this and `kinesisStreamProps` will cause an error. |
|
|
87
|
+
|kinesisStreamProps?|[`kinesis.StreamProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesis.StreamProps.html) | Optional user-provided props to override the default props for the Kinesis Data Stream. Providing both this and `existingStreamObj` will cause an error. |
|
|
88
|
+
| createCloudWatchAlarms |`boolean` | Whether to create recommended CloudWatch Alarms for the Kinesis Stream (defaults to true). |
|
|
89
|
+
| streamEnvironmentVariableName? | `string` | Optional Name to override the Fargate Service default environment variable name that holds the Kinesis Data Stream name value. Default: KINESIS_DATASTREAM_NAME |
|
|
90
|
+
|
|
91
|
+
## Pattern Properties
|
|
92
|
+
|
|
93
|
+
| **Name** | **Type** | **Description** |
|
|
94
|
+
|:-------------|:----------------|-----------------|
|
|
95
|
+
| vpc | [`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html) | The new or existing VPC used by the construct. |
|
|
96
|
+
| service | [`ecs.FargateService`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.FargateService.html) | The new or existing AWS Fargate service used by this construct. |
|
|
97
|
+
| container | [`ecs.ContainerDefinition`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.ContainerDefinition.html) | The container associated with the AWS Fargate service in the service property. |
|
|
98
|
+
| kinesisStream | [`kinesis.Stream`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesis.Stream.html) | The new or existing Kinesis Data Stream used by this construct. |
|
|
99
|
+
| cloudwatchAlarms? | [`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html) | Returns the CloudWatch Alarms created to monitor the Kinesis Data Stream.|
|
|
100
|
+
|
|
101
|
+
## Default settings
|
|
102
|
+
|
|
103
|
+
Out of the box implementation of the Construct without any overrides will set the following defaults:
|
|
104
|
+
|
|
105
|
+
### AWS Fargate Service
|
|
106
|
+
* An AWS Fargate Service running in the isolated subnets of a new VPC
|
|
107
|
+
* Minimally-permissive IAM role for the Fargate Service to put records on the Kinesis Data Stream
|
|
108
|
+
* Sets an Environment Variable named KINESIS_DATASTREAM_NAME that holds the Kinesis Data Stream Name, which is a required property of the Kinesis Data Streams SDK when making calls to it
|
|
109
|
+
|
|
110
|
+
### Amazon Kinesis Stream
|
|
111
|
+
* Enable server-side encryption for the Kinesis Data Stream using an AWS Managed CMK
|
|
112
|
+
* Deploy best practices CloudWatch Alarms for the Kinesis Data Stream
|
|
113
|
+
* An Interface Endpoint on the VPC for private communication between the Fargate Service and the Kinesis Data Stream
|
|
114
|
+
|
|
115
|
+
## Architecture
|
|
116
|
+

|
|
117
|
+
|
|
118
|
+
***
|
|
119
|
+
© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
package/architecture.png
ADDED
|
Binary file
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
|
|
5
|
+
* with the License. A copy of the License is located at
|
|
6
|
+
*
|
|
7
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
|
|
10
|
+
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
|
|
11
|
+
* and limitations under the License.
|
|
12
|
+
*/
|
|
13
|
+
import * as cloudwatch from 'aws-cdk-lib/aws-cloudwatch';
|
|
14
|
+
import * as ec2 from "aws-cdk-lib/aws-ec2";
|
|
15
|
+
import * as ecs from "aws-cdk-lib/aws-ecs";
|
|
16
|
+
import * as kinesis from 'aws-cdk-lib/aws-kinesis';
|
|
17
|
+
import { Construct } from 'constructs';
|
|
18
|
+
/**
|
|
19
|
+
* The properties for the FargateToKinesisStreams class.
|
|
20
|
+
*/
|
|
21
|
+
export interface FargateToKinesisStreamsProps {
|
|
22
|
+
/**
|
|
23
|
+
* True if the VPC provisioned by this construct should contain Public/Private Subnets,
|
|
24
|
+
* otherwise False for the VPC to contain Isolated Subnets only.
|
|
25
|
+
*
|
|
26
|
+
* Note this property is ignored if an existing VPC is specified in the `existingVpc` property.
|
|
27
|
+
*/
|
|
28
|
+
readonly publicApi: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Optional custom properties for a new VPC the construct will create. Providing both this and `existingVpc` is an error.
|
|
31
|
+
*
|
|
32
|
+
* An Amazon Kinesis Streams Interface Endpoint will be added to this VPC.
|
|
33
|
+
*
|
|
34
|
+
* @default - None
|
|
35
|
+
*/
|
|
36
|
+
readonly vpcProps?: ec2.VpcProps;
|
|
37
|
+
/**
|
|
38
|
+
* An existing VPC in which to deploy the Fargate Service. Providing both this and `vpcProps` is an error.
|
|
39
|
+
* If the client provides an existing Fargate Service in the `existingFargateServiceObject` property,
|
|
40
|
+
* this value must be the VPC where the service is running.
|
|
41
|
+
*
|
|
42
|
+
* An Amazon Kinesis Streams Interface Endpoint will be added to this VPC.
|
|
43
|
+
*
|
|
44
|
+
* @default - None
|
|
45
|
+
*/
|
|
46
|
+
readonly existingVpc?: ec2.IVpc;
|
|
47
|
+
/**
|
|
48
|
+
* Optional properties to create a new ECS cluster. To provide an existing cluster, use the cluster attribute of the `fargateServiceProps` property.
|
|
49
|
+
*/
|
|
50
|
+
readonly clusterProps?: ecs.ClusterProps;
|
|
51
|
+
/**
|
|
52
|
+
* The arn of an ECR Repository containing the image to use to generate the containers.
|
|
53
|
+
*
|
|
54
|
+
* Either this or the image property of the `containerDefinitionProps` property must be provided.
|
|
55
|
+
*
|
|
56
|
+
* format:
|
|
57
|
+
* arn:aws:ecr:[region]:[account number]:repository/[Repository Name]
|
|
58
|
+
*/
|
|
59
|
+
readonly ecrRepositoryArn?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The version of the image to use from the repository.
|
|
62
|
+
*
|
|
63
|
+
* @default - 'latest'
|
|
64
|
+
*/
|
|
65
|
+
readonly ecrImageVersion?: string;
|
|
66
|
+
readonly containerDefinitionProps?: ecs.ContainerDefinitionProps | any;
|
|
67
|
+
readonly fargateTaskDefinitionProps?: ecs.FargateTaskDefinitionProps | any;
|
|
68
|
+
/**
|
|
69
|
+
* Optional values to override default Fargate Task definition properties (fargate-defaults.ts).
|
|
70
|
+
* The construct will default to launching the service is the most isolated subnets available (precedence: Isolated, Private and Public).
|
|
71
|
+
* Override those and other defaults here.
|
|
72
|
+
*
|
|
73
|
+
* defaults - fargate-defaults.ts
|
|
74
|
+
*/
|
|
75
|
+
readonly fargateServiceProps?: ecs.FargateServiceProps | any;
|
|
76
|
+
/**
|
|
77
|
+
* A Fargate Service already instantiated. If this is specified, then no props defining a new service can be provided, including:
|
|
78
|
+
* ecrImageVersion, containerDefinitionProps, fargateTaskDefinitionProps, ecrRepositoryArn, fargateServiceProps, clusterProps.
|
|
79
|
+
*
|
|
80
|
+
* Note - If this property is set, then the `existingContainerDefinitionObject` property must be set as well.
|
|
81
|
+
*
|
|
82
|
+
* @default - None
|
|
83
|
+
*/
|
|
84
|
+
readonly existingFargateServiceObject?: ecs.FargateService;
|
|
85
|
+
readonly existingContainerDefinitionObject?: ecs.ContainerDefinition;
|
|
86
|
+
/**
|
|
87
|
+
* Existing instance of Kinesis Stream, providing both this and `kinesisStreamProps` will cause an error.
|
|
88
|
+
*
|
|
89
|
+
* @default - None
|
|
90
|
+
*/
|
|
91
|
+
readonly existingStreamObj?: kinesis.Stream;
|
|
92
|
+
/**
|
|
93
|
+
* Optional user-provided props to override the default props for the Kinesis stream.
|
|
94
|
+
*
|
|
95
|
+
* @default - Default props are used.
|
|
96
|
+
*/
|
|
97
|
+
readonly kinesisStreamProps?: kinesis.StreamProps;
|
|
98
|
+
/**
|
|
99
|
+
* Whether to create recommended CloudWatch alarms for the Kinesis Stream.
|
|
100
|
+
*
|
|
101
|
+
* @default - Alarms are created
|
|
102
|
+
*/
|
|
103
|
+
readonly createCloudWatchAlarms?: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Optional Name to override the Fargate Service default environment variable name that holds the Kinesis Data Stream name value.
|
|
106
|
+
*
|
|
107
|
+
* @default - KINESIS_DATASTREAM_NAME
|
|
108
|
+
*/
|
|
109
|
+
readonly streamEnvironmentVariableName?: string;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* @summary The FargateToKinesisStream class.
|
|
113
|
+
*/
|
|
114
|
+
export declare class FargateToKinesisStreams extends Construct {
|
|
115
|
+
readonly vpc?: ec2.IVpc;
|
|
116
|
+
readonly service: ecs.FargateService;
|
|
117
|
+
readonly container: ecs.ContainerDefinition;
|
|
118
|
+
readonly kinesisStream: kinesis.Stream;
|
|
119
|
+
readonly cloudwatchAlarms?: cloudwatch.Alarm[];
|
|
120
|
+
/**
|
|
121
|
+
* @summary Constructs a new instance of the KinesisStreamsToFargate class.
|
|
122
|
+
* @param {cdk.App} scope - represents the scope for all the resources.
|
|
123
|
+
* @param {string} id - this is a a scope-unique id.
|
|
124
|
+
* @param {FargateToKinesisStreamsProps} props - user provided props for the construct
|
|
125
|
+
* @since 0.8.0
|
|
126
|
+
* @access public
|
|
127
|
+
*/
|
|
128
|
+
constructor(scope: Construct, id: string, props: FargateToKinesisStreamsProps);
|
|
129
|
+
}
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var _a;
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.FargateToKinesisStreams = void 0;
|
|
5
|
+
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
|
+
const defaults = require("@aws-solutions-constructs/core");
|
|
7
|
+
// Note: To ensure CDKv2 compatibility, keep the import statement for Construct separate
|
|
8
|
+
const constructs_1 = require("constructs");
|
|
9
|
+
/**
|
|
10
|
+
* @summary The FargateToKinesisStream class.
|
|
11
|
+
*/
|
|
12
|
+
class FargateToKinesisStreams extends constructs_1.Construct {
|
|
13
|
+
/**
|
|
14
|
+
* @summary Constructs a new instance of the KinesisStreamsToFargate class.
|
|
15
|
+
* @param {cdk.App} scope - represents the scope for all the resources.
|
|
16
|
+
* @param {string} id - this is a a scope-unique id.
|
|
17
|
+
* @param {FargateToKinesisStreamsProps} props - user provided props for the construct
|
|
18
|
+
* @since 0.8.0
|
|
19
|
+
* @access public
|
|
20
|
+
*/
|
|
21
|
+
constructor(scope, id, props) {
|
|
22
|
+
super(scope, id);
|
|
23
|
+
defaults.CheckProps(props);
|
|
24
|
+
defaults.CheckFargateProps(props);
|
|
25
|
+
// Setup the VPC
|
|
26
|
+
this.vpc = defaults.buildVpc(scope, {
|
|
27
|
+
existingVpc: props.existingVpc,
|
|
28
|
+
defaultVpcProps: props.publicApi ? defaults.DefaultPublicPrivateVpcProps() : defaults.DefaultIsolatedVpcProps(),
|
|
29
|
+
userVpcProps: props.vpcProps,
|
|
30
|
+
constructVpcProps: { enableDnsHostnames: true, enableDnsSupport: true }
|
|
31
|
+
});
|
|
32
|
+
// Add the interface endpoint to the VPC for Kinesis Streams
|
|
33
|
+
defaults.AddAwsServiceEndpoint(scope, this.vpc, defaults.ServiceEndpointTypes.KINESIS_STREAMS);
|
|
34
|
+
// Setup the Fargate Service
|
|
35
|
+
if (props.existingFargateServiceObject) {
|
|
36
|
+
this.service = props.existingFargateServiceObject;
|
|
37
|
+
// CheckFargateProps confirms that the container is provided
|
|
38
|
+
this.container = props.existingContainerDefinitionObject;
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
[this.service, this.container] = defaults.CreateFargateService(scope, id, this.vpc, props.clusterProps, props.ecrRepositoryArn, props.ecrImageVersion, props.fargateTaskDefinitionProps, props.containerDefinitionProps, props.fargateServiceProps);
|
|
42
|
+
}
|
|
43
|
+
// Setup the Kinesis Stream
|
|
44
|
+
this.kinesisStream = defaults.buildKinesisStream(this, {
|
|
45
|
+
existingStreamObj: props.existingStreamObj,
|
|
46
|
+
kinesisStreamProps: props.kinesisStreamProps
|
|
47
|
+
});
|
|
48
|
+
// Configure container environment variables
|
|
49
|
+
const streamNameEnvironmentVariableName = props.streamEnvironmentVariableName || 'KINESIS_DATASTREAM_NAME';
|
|
50
|
+
this.container.addEnvironment(streamNameEnvironmentVariableName, this.kinesisStream.streamName);
|
|
51
|
+
// Grant the Fargate Service permission to write to the Kinesis Stream
|
|
52
|
+
this.kinesisStream.grantWrite(this.service.taskDefinition.taskRole);
|
|
53
|
+
// By default, deploy CloudWatch Alarms to monitor the Kinesis Stream
|
|
54
|
+
if (props.createCloudWatchAlarms === undefined || props.createCloudWatchAlarms) {
|
|
55
|
+
this.cloudwatchAlarms = defaults.buildKinesisStreamCWAlarms(this);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.FargateToKinesisStreams = FargateToKinesisStreams;
|
|
60
|
+
_a = JSII_RTTI_SYMBOL_1;
|
|
61
|
+
FargateToKinesisStreams[_a] = { fqn: "@aws-solutions-constructs/aws-fargate-kinesisstreams.FargateToKinesisStreams", version: "2.30.0" };
|
|
62
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQWtCQSwyREFBMkQ7QUFDM0Qsd0ZBQXdGO0FBQ3hGLDJDQUF1QztBQWdIdkM7O0dBRUc7QUFDSCxNQUFhLHVCQUF3QixTQUFRLHNCQUFTO0lBT2xEOzs7Ozs7O09BT0c7SUFDSCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQW1DO1FBQzNFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDakIsUUFBUSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMzQixRQUFRLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFbEMsZ0JBQWdCO1FBQ2hCLElBQUksQ0FBQyxHQUFHLEdBQUcsUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUU7WUFDbEMsV0FBVyxFQUFFLEtBQUssQ0FBQyxXQUFXO1lBQzlCLGVBQWUsRUFBRSxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsNEJBQTRCLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLHVCQUF1QixFQUFFO1lBQy9HLFlBQVksRUFBRSxLQUFLLENBQUMsUUFBUTtZQUM1QixpQkFBaUIsRUFBRSxFQUFFLGtCQUFrQixFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRSxJQUFJLEVBQUU7U0FDeEUsQ0FBQyxDQUFDO1FBRUgsNERBQTREO1FBQzVELFFBQVEsQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLEdBQUcsRUFBRSxRQUFRLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLENBQUM7UUFFL0YsNEJBQTRCO1FBQzVCLElBQUksS0FBSyxDQUFDLDRCQUE0QixFQUFFO1lBQ3RDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDLDRCQUE0QixDQUFDO1lBQ2xELDREQUE0RDtZQUM1RCxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxpQ0FBa0MsQ0FBQztTQUMzRDthQUFNO1lBQ0wsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxRQUFRLENBQUMsb0JBQW9CLENBQzVELEtBQUssRUFDTCxFQUFFLEVBQ0YsSUFBSSxDQUFDLEdBQUcsRUFDUixLQUFLLENBQUMsWUFBWSxFQUNsQixLQUFLLENBQUMsZ0JBQWdCLEVBQ3RCLEtBQUssQ0FBQyxlQUFlLEVBQ3JCLEtBQUssQ0FBQywwQkFBMEIsRUFDaEMsS0FBSyxDQUFDLHdCQUF3QixFQUM5QixLQUFLLENBQUMsbUJBQW1CLENBQzFCLENBQUM7U0FDSDtRQUVELDJCQUEyQjtRQUMzQixJQUFJLENBQUMsYUFBYSxHQUFHLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLEVBQUU7WUFDckQsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLGlCQUFpQjtZQUMxQyxrQkFBa0IsRUFBRSxLQUFLLENBQUMsa0JBQWtCO1NBQzdDLENBQUMsQ0FBQztRQUVILDRDQUE0QztRQUM1QyxNQUFNLGlDQUFpQyxHQUFHLEtBQUssQ0FBQyw2QkFBNkIsSUFBSSx5QkFBeUIsQ0FBQztRQUMzRyxJQUFJLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxpQ0FBaUMsRUFBRSxJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBRWhHLHNFQUFzRTtRQUN0RSxJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUVwRSxxRUFBcUU7UUFDckUsSUFBSSxLQUFLLENBQUMsc0JBQXNCLEtBQUssU0FBUyxJQUFJLEtBQUssQ0FBQyxzQkFBc0IsRUFBRTtZQUM5RSxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsUUFBUSxDQUFDLDBCQUEwQixDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ25FO0lBQ0gsQ0FBQzs7QUFuRUwsMERBb0VDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiAgQ29weXJpZ2h0IEFtYXpvbi5jb20sIEluYy4gb3IgaXRzIGFmZmlsaWF0ZXMuIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogIExpY2Vuc2VkIHVuZGVyIHRoZSBBcGFjaGUgTGljZW5zZSwgVmVyc2lvbiAyLjAgKHRoZSBcIkxpY2Vuc2VcIikuIFlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2VcbiAqICB3aXRoIHRoZSBMaWNlbnNlLiBBIGNvcHkgb2YgdGhlIExpY2Vuc2UgaXMgbG9jYXRlZCBhdFxuICpcbiAqICAgICAgaHR0cDovL3d3dy5hcGFjaGUub3JnL2xpY2Vuc2VzL0xJQ0VOU0UtMi4wXG4gKlxuICogIG9yIGluIHRoZSAnbGljZW5zZScgZmlsZSBhY2NvbXBhbnlpbmcgdGhpcyBmaWxlLiBUaGlzIGZpbGUgaXMgZGlzdHJpYnV0ZWQgb24gYW4gJ0FTIElTJyBCQVNJUywgV0lUSE9VVCBXQVJSQU5USUVTXG4gKiAgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZXhwcmVzcyBvciBpbXBsaWVkLiBTZWUgdGhlIExpY2Vuc2UgZm9yIHRoZSBzcGVjaWZpYyBsYW5ndWFnZSBnb3Zlcm5pbmcgcGVybWlzc2lvbnNcbiAqICBhbmQgbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuLy8gSW1wb3J0c1xuaW1wb3J0ICogYXMgY2xvdWR3YXRjaCBmcm9tICdhd3MtY2RrLWxpYi9hd3MtY2xvdWR3YXRjaCc7XG5pbXBvcnQgKiBhcyBlYzIgZnJvbSBcImF3cy1jZGstbGliL2F3cy1lYzJcIjtcbmltcG9ydCAqIGFzIGVjcyBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuaW1wb3J0ICogYXMga2luZXNpcyBmcm9tICdhd3MtY2RrLWxpYi9hd3Mta2luZXNpcyc7XG5pbXBvcnQgKiBhcyBkZWZhdWx0cyBmcm9tICdAYXdzLXNvbHV0aW9ucy1jb25zdHJ1Y3RzL2NvcmUnO1xuLy8gTm90ZTogVG8gZW5zdXJlIENES3YyIGNvbXBhdGliaWxpdHksIGtlZXAgdGhlIGltcG9ydCBzdGF0ZW1lbnQgZm9yIENvbnN0cnVjdCBzZXBhcmF0ZVxuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5cbi8qKlxuICogVGhlIHByb3BlcnRpZXMgZm9yIHRoZSBGYXJnYXRlVG9LaW5lc2lzU3RyZWFtcyBjbGFzcy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBGYXJnYXRlVG9LaW5lc2lzU3RyZWFtc1Byb3BzIHtcbiAgLyoqXG4gICAqIFRydWUgaWYgdGhlIFZQQyBwcm92aXNpb25lZCBieSB0aGlzIGNvbnN0cnVjdCBzaG91bGQgY29udGFpbiBQdWJsaWMvUHJpdmF0ZSBTdWJuZXRzLFxuICAgKiBvdGhlcndpc2UgRmFsc2UgZm9yIHRoZSBWUEMgdG8gY29udGFpbiBJc29sYXRlZCBTdWJuZXRzIG9ubHkuXG4gICAqXG4gICAqIE5vdGUgdGhpcyBwcm9wZXJ0eSBpcyBpZ25vcmVkIGlmIGFuIGV4aXN0aW5nIFZQQyBpcyBzcGVjaWZpZWQgaW4gdGhlIGBleGlzdGluZ1ZwY2AgcHJvcGVydHkuXG4gICAqL1xuICByZWFkb25seSBwdWJsaWNBcGk6IGJvb2xlYW47XG4gIC8qKlxuICAgKiBPcHRpb25hbCBjdXN0b20gcHJvcGVydGllcyBmb3IgYSBuZXcgVlBDIHRoZSBjb25zdHJ1Y3Qgd2lsbCBjcmVhdGUuIFByb3ZpZGluZyBib3RoIHRoaXMgYW5kIGBleGlzdGluZ1ZwY2AgaXMgYW4gZXJyb3IuXG4gICAqXG4gICAqIEFuIEFtYXpvbiBLaW5lc2lzIFN0cmVhbXMgSW50ZXJmYWNlIEVuZHBvaW50IHdpbGwgYmUgYWRkZWQgdG8gdGhpcyBWUEMuXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gTm9uZVxuICAgKi9cbiAgcmVhZG9ubHkgdnBjUHJvcHM/OiBlYzIuVnBjUHJvcHM7XG4gIC8qKlxuICAgKiBBbiBleGlzdGluZyBWUEMgaW4gd2hpY2ggdG8gZGVwbG95IHRoZSBGYXJnYXRlIFNlcnZpY2UuIFByb3ZpZGluZyBib3RoIHRoaXMgYW5kIGB2cGNQcm9wc2AgaXMgYW4gZXJyb3IuXG4gICAqIElmIHRoZSBjbGllbnQgcHJvdmlkZXMgYW4gZXhpc3RpbmcgRmFyZ2F0ZSBTZXJ2aWNlIGluIHRoZSBgZXhpc3RpbmdGYXJnYXRlU2VydmljZU9iamVjdGAgcHJvcGVydHksXG4gICAqIHRoaXMgdmFsdWUgbXVzdCBiZSB0aGUgVlBDIHdoZXJlIHRoZSBzZXJ2aWNlIGlzIHJ1bm5pbmcuXG4gICAqXG4gICAqIEFuIEFtYXpvbiBLaW5lc2lzIFN0cmVhbXMgSW50ZXJmYWNlIEVuZHBvaW50IHdpbGwgYmUgYWRkZWQgdG8gdGhpcyBWUEMuXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gTm9uZVxuICAgKi9cbiAgcmVhZG9ubHkgZXhpc3RpbmdWcGM/OiBlYzIuSVZwYztcbiAgLyoqXG4gICAqIE9wdGlvbmFsIHByb3BlcnRpZXMgdG8gY3JlYXRlIGEgbmV3IEVDUyBjbHVzdGVyLiBUbyBwcm92aWRlIGFuIGV4aXN0aW5nIGNsdXN0ZXIsIHVzZSB0aGUgY2x1c3RlciBhdHRyaWJ1dGUgb2YgdGhlIGBmYXJnYXRlU2VydmljZVByb3BzYCBwcm9wZXJ0eS5cbiAgICovXG4gIHJlYWRvbmx5IGNsdXN0ZXJQcm9wcz86IGVjcy5DbHVzdGVyUHJvcHM7XG4gIC8qKlxuICAgKiBUaGUgYXJuIG9mIGFuIEVDUiBSZXBvc2l0b3J5IGNvbnRhaW5pbmcgdGhlIGltYWdlIHRvIHVzZSB0byBnZW5lcmF0ZSB0aGUgY29udGFpbmVycy5cbiAgICpcbiAgICogRWl0aGVyIHRoaXMgb3IgdGhlIGltYWdlIHByb3BlcnR5IG9mIHRoZSBgY29udGFpbmVyRGVmaW5pdGlvblByb3BzYCBwcm9wZXJ0eSBtdXN0IGJlIHByb3ZpZGVkLlxuICAgKlxuICAgKiBmb3JtYXQ6XG4gICAqICAgYXJuOmF3czplY3I6W3JlZ2lvbl06W2FjY291bnQgbnVtYmVyXTpyZXBvc2l0b3J5L1tSZXBvc2l0b3J5IE5hbWVdXG4gICAqL1xuICByZWFkb25seSBlY3JSZXBvc2l0b3J5QXJuPzogc3RyaW5nO1xuICAvKipcbiAgICogVGhlIHZlcnNpb24gb2YgdGhlIGltYWdlIHRvIHVzZSBmcm9tIHRoZSByZXBvc2l0b3J5LlxuICAgKlxuICAgKiBAZGVmYXVsdCAtICdsYXRlc3QnXG4gICAqL1xuICByZWFkb25seSBlY3JJbWFnZVZlcnNpb24/OiBzdHJpbmc7XG4gIC8qXG4gICAqIE9wdGlvbmFsIHByb3BzIHRvIGRlZmluZSB0aGUgY29udGFpbmVyIGNyZWF0ZWQgZm9yIHRoZSBGYXJnYXRlIFNlcnZpY2VcbiAgICpcbiAgICogZGVmYXVsdHMgLSBmYXJnYXRlLWRlZmF1bHRzLnRzXG4gICAqL1xuICByZWFkb25seSBjb250YWluZXJEZWZpbml0aW9uUHJvcHM/OiBlY3MuQ29udGFpbmVyRGVmaW5pdGlvblByb3BzIHwgYW55O1xuICAvKlxuICAgKiBPcHRpb25hbCBwcm9wcyB0byBkZWZpbmUgdGhlIEZhcmdhdGUgVGFzayBEZWZpbml0aW9uIGZvciB0aGlzIGNvbnN0cnVjdFxuICAgKlxuICAgKiBkZWZhdWx0cyAtIGZhcmdhdGUtZGVmYXVsdHMudHNcbiAgICovXG4gIHJlYWRvbmx5IGZhcmdhdGVUYXNrRGVmaW5pdGlvblByb3BzPzogZWNzLkZhcmdhdGVUYXNrRGVmaW5pdGlvblByb3BzIHwgYW55O1xuICAvKipcbiAgICogT3B0aW9uYWwgdmFsdWVzIHRvIG92ZXJyaWRlIGRlZmF1bHQgRmFyZ2F0ZSBUYXNrIGRlZmluaXRpb24gcHJvcGVydGllcyAoZmFyZ2F0ZS1kZWZhdWx0cy50cykuXG4gICAqIFRoZSBjb25zdHJ1Y3Qgd2lsbCBkZWZhdWx0IHRvIGxhdW5jaGluZyB0aGUgc2VydmljZSBpcyB0aGUgbW9zdCBpc29sYXRlZCBzdWJuZXRzIGF2YWlsYWJsZSAocHJlY2VkZW5jZTogSXNvbGF0ZWQsIFByaXZhdGUgYW5kIFB1YmxpYykuXG4gICAqIE92ZXJyaWRlIHRob3NlIGFuZCBvdGhlciBkZWZhdWx0cyBoZXJlLlxuICAgKlxuICAgKiBkZWZhdWx0cyAtIGZhcmdhdGUtZGVmYXVsdHMudHNcbiAgICovXG4gIHJlYWRvbmx5IGZhcmdhdGVTZXJ2aWNlUHJvcHM/OiBlY3MuRmFyZ2F0ZVNlcnZpY2VQcm9wcyB8IGFueTtcbiAgLyoqXG4gICAqIEEgRmFyZ2F0ZSBTZXJ2aWNlIGFscmVhZHkgaW5zdGFudGlhdGVkLiBJZiB0aGlzIGlzIHNwZWNpZmllZCwgdGhlbiBubyBwcm9wcyBkZWZpbmluZyBhIG5ldyBzZXJ2aWNlIGNhbiBiZSBwcm92aWRlZCwgaW5jbHVkaW5nOlxuICAgKiAgZWNySW1hZ2VWZXJzaW9uLCBjb250YWluZXJEZWZpbml0aW9uUHJvcHMsIGZhcmdhdGVUYXNrRGVmaW5pdGlvblByb3BzLCBlY3JSZXBvc2l0b3J5QXJuLCBmYXJnYXRlU2VydmljZVByb3BzLCBjbHVzdGVyUHJvcHMuXG4gICAqXG4gICAqIE5vdGUgLSBJZiB0aGlzIHByb3BlcnR5IGlzIHNldCwgdGhlbiB0aGUgYGV4aXN0aW5nQ29udGFpbmVyRGVmaW5pdGlvbk9iamVjdGAgcHJvcGVydHkgbXVzdCBiZSBzZXQgYXMgd2VsbC5cbiAgICpcbiAgICogQGRlZmF1bHQgLSBOb25lXG4gICAqL1xuICByZWFkb25seSBleGlzdGluZ0ZhcmdhdGVTZXJ2aWNlT2JqZWN0PzogZWNzLkZhcmdhdGVTZXJ2aWNlO1xuICAvKlxuICAgKiBBIGNvbnRhaW5lciBkZWZpbml0aW9uIGFscmVhZHkgaW5zdGFudGlhdGVkIGFzIHBhcnQgb2YgYSBGYXJnYXRlIHNlcnZpY2UuXG4gICAqIFRoaXMgbXVzdCBiZSB0aGUgY29udGFpbmVyIHVzZWQgaW4gdGhlIGBleGlzdGluZ0ZhcmdhdGVTZXJ2aWNlT2JqZWN0YCBwcm9wZXJ0eS5cbiAgICpcbiAgICogQGRlZmF1bHQgLSBOb25lXG4gICAqL1xuICAgIHJlYWRvbmx5IGV4aXN0aW5nQ29udGFpbmVyRGVmaW5pdGlvbk9iamVjdD86IGVjcy5Db250YWluZXJEZWZpbml0aW9uO1xuICAvKipcbiAgICogRXhpc3RpbmcgaW5zdGFuY2Ugb2YgS2luZXNpcyBTdHJlYW0sIHByb3ZpZGluZyBib3RoIHRoaXMgYW5kIGBraW5lc2lzU3RyZWFtUHJvcHNgIHdpbGwgY2F1c2UgYW4gZXJyb3IuXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gTm9uZVxuICAgKi9cbiAgcmVhZG9ubHkgZXhpc3RpbmdTdHJlYW1PYmo/OiBraW5lc2lzLlN0cmVhbTtcbiAgLyoqXG4gICAqIE9wdGlvbmFsIHVzZXItcHJvdmlkZWQgcHJvcHMgdG8gb3ZlcnJpZGUgdGhlIGRlZmF1bHQgcHJvcHMgZm9yIHRoZSBLaW5lc2lzIHN0cmVhbS5cbiAgICpcbiAgICogQGRlZmF1bHQgLSBEZWZhdWx0IHByb3BzIGFyZSB1c2VkLlxuICAgKi9cbiAgcmVhZG9ubHkga2luZXNpc1N0cmVhbVByb3BzPzoga2luZXNpcy5TdHJlYW1Qcm9wcztcbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gY3JlYXRlIHJlY29tbWVuZGVkIENsb3VkV2F0Y2ggYWxhcm1zIGZvciB0aGUgS2luZXNpcyBTdHJlYW0uXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gQWxhcm1zIGFyZSBjcmVhdGVkXG4gICAqL1xuICByZWFkb25seSBjcmVhdGVDbG91ZFdhdGNoQWxhcm1zPzogYm9vbGVhbjtcbiAgLyoqXG4gICAqIE9wdGlvbmFsIE5hbWUgdG8gb3ZlcnJpZGUgdGhlIEZhcmdhdGUgU2VydmljZSBkZWZhdWx0IGVudmlyb25tZW50IHZhcmlhYmxlIG5hbWUgdGhhdCBob2xkcyB0aGUgS2luZXNpcyBEYXRhIFN0cmVhbSBuYW1lIHZhbHVlLlxuICAgKlxuICAgKiBAZGVmYXVsdCAtIEtJTkVTSVNfREFUQVNUUkVBTV9OQU1FXG4gICAqL1xuICByZWFkb25seSBzdHJlYW1FbnZpcm9ubWVudFZhcmlhYmxlTmFtZT86IHN0cmluZztcbn1cblxuLyoqXG4gKiBAc3VtbWFyeSBUaGUgRmFyZ2F0ZVRvS2luZXNpc1N0cmVhbSBjbGFzcy5cbiAqL1xuZXhwb3J0IGNsYXNzIEZhcmdhdGVUb0tpbmVzaXNTdHJlYW1zIGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgICBwdWJsaWMgcmVhZG9ubHkgdnBjPzogZWMyLklWcGM7XG4gICAgcHVibGljIHJlYWRvbmx5IHNlcnZpY2U6IGVjcy5GYXJnYXRlU2VydmljZTtcbiAgICBwdWJsaWMgcmVhZG9ubHkgY29udGFpbmVyOiBlY3MuQ29udGFpbmVyRGVmaW5pdGlvbjtcbiAgICBwdWJsaWMgcmVhZG9ubHkga2luZXNpc1N0cmVhbToga2luZXNpcy5TdHJlYW07XG4gICAgcHVibGljIHJlYWRvbmx5IGNsb3Vkd2F0Y2hBbGFybXM/OiBjbG91ZHdhdGNoLkFsYXJtW107XG5cbiAgICAvKipcbiAgICAgKiBAc3VtbWFyeSBDb25zdHJ1Y3RzIGEgbmV3IGluc3RhbmNlIG9mIHRoZSBLaW5lc2lzU3RyZWFtc1RvRmFyZ2F0ZSBjbGFzcy5cbiAgICAgKiBAcGFyYW0ge2Nkay5BcHB9IHNjb3BlIC0gcmVwcmVzZW50cyB0aGUgc2NvcGUgZm9yIGFsbCB0aGUgcmVzb3VyY2VzLlxuICAgICAqIEBwYXJhbSB7c3RyaW5nfSBpZCAtIHRoaXMgaXMgYSBhIHNjb3BlLXVuaXF1ZSBpZC5cbiAgICAgKiBAcGFyYW0ge0ZhcmdhdGVUb0tpbmVzaXNTdHJlYW1zUHJvcHN9IHByb3BzIC0gdXNlciBwcm92aWRlZCBwcm9wcyBmb3IgdGhlIGNvbnN0cnVjdFxuICAgICAqIEBzaW5jZSAwLjguMFxuICAgICAqIEBhY2Nlc3MgcHVibGljXG4gICAgICovXG4gICAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IEZhcmdhdGVUb0tpbmVzaXNTdHJlYW1zUHJvcHMpIHtcbiAgICAgIHN1cGVyKHNjb3BlLCBpZCk7XG4gICAgICBkZWZhdWx0cy5DaGVja1Byb3BzKHByb3BzKTtcbiAgICAgIGRlZmF1bHRzLkNoZWNrRmFyZ2F0ZVByb3BzKHByb3BzKTtcblxuICAgICAgLy8gU2V0dXAgdGhlIFZQQ1xuICAgICAgdGhpcy52cGMgPSBkZWZhdWx0cy5idWlsZFZwYyhzY29wZSwge1xuICAgICAgICBleGlzdGluZ1ZwYzogcHJvcHMuZXhpc3RpbmdWcGMsXG4gICAgICAgIGRlZmF1bHRWcGNQcm9wczogcHJvcHMucHVibGljQXBpID8gZGVmYXVsdHMuRGVmYXVsdFB1YmxpY1ByaXZhdGVWcGNQcm9wcygpIDogZGVmYXVsdHMuRGVmYXVsdElzb2xhdGVkVnBjUHJvcHMoKSxcbiAgICAgICAgdXNlclZwY1Byb3BzOiBwcm9wcy52cGNQcm9wcyxcbiAgICAgICAgY29uc3RydWN0VnBjUHJvcHM6IHsgZW5hYmxlRG5zSG9zdG5hbWVzOiB0cnVlLCBlbmFibGVEbnNTdXBwb3J0OiB0cnVlIH1cbiAgICAgIH0pO1xuXG4gICAgICAvLyBBZGQgdGhlIGludGVyZmFjZSBlbmRwb2ludCB0byB0aGUgVlBDIGZvciBLaW5lc2lzIFN0cmVhbXNcbiAgICAgIGRlZmF1bHRzLkFkZEF3c1NlcnZpY2VFbmRwb2ludChzY29wZSwgdGhpcy52cGMsIGRlZmF1bHRzLlNlcnZpY2VFbmRwb2ludFR5cGVzLktJTkVTSVNfU1RSRUFNUyk7XG5cbiAgICAgIC8vIFNldHVwIHRoZSBGYXJnYXRlIFNlcnZpY2VcbiAgICAgIGlmIChwcm9wcy5leGlzdGluZ0ZhcmdhdGVTZXJ2aWNlT2JqZWN0KSB7XG4gICAgICAgIHRoaXMuc2VydmljZSA9IHByb3BzLmV4aXN0aW5nRmFyZ2F0ZVNlcnZpY2VPYmplY3Q7XG4gICAgICAgIC8vIENoZWNrRmFyZ2F0ZVByb3BzIGNvbmZpcm1zIHRoYXQgdGhlIGNvbnRhaW5lciBpcyBwcm92aWRlZFxuICAgICAgICB0aGlzLmNvbnRhaW5lciA9IHByb3BzLmV4aXN0aW5nQ29udGFpbmVyRGVmaW5pdGlvbk9iamVjdCE7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBbdGhpcy5zZXJ2aWNlLCB0aGlzLmNvbnRhaW5lcl0gPSBkZWZhdWx0cy5DcmVhdGVGYXJnYXRlU2VydmljZShcbiAgICAgICAgICBzY29wZSxcbiAgICAgICAgICBpZCxcbiAgICAgICAgICB0aGlzLnZwYyxcbiAgICAgICAgICBwcm9wcy5jbHVzdGVyUHJvcHMsXG4gICAgICAgICAgcHJvcHMuZWNyUmVwb3NpdG9yeUFybixcbiAgICAgICAgICBwcm9wcy5lY3JJbWFnZVZlcnNpb24sXG4gICAgICAgICAgcHJvcHMuZmFyZ2F0ZVRhc2tEZWZpbml0aW9uUHJvcHMsXG4gICAgICAgICAgcHJvcHMuY29udGFpbmVyRGVmaW5pdGlvblByb3BzLFxuICAgICAgICAgIHByb3BzLmZhcmdhdGVTZXJ2aWNlUHJvcHNcbiAgICAgICAgKTtcbiAgICAgIH1cblxuICAgICAgLy8gU2V0dXAgdGhlIEtpbmVzaXMgU3RyZWFtXG4gICAgICB0aGlzLmtpbmVzaXNTdHJlYW0gPSBkZWZhdWx0cy5idWlsZEtpbmVzaXNTdHJlYW0odGhpcywge1xuICAgICAgICBleGlzdGluZ1N0cmVhbU9iajogcHJvcHMuZXhpc3RpbmdTdHJlYW1PYmosXG4gICAgICAgIGtpbmVzaXNTdHJlYW1Qcm9wczogcHJvcHMua2luZXNpc1N0cmVhbVByb3BzXG4gICAgICB9KTtcblxuICAgICAgLy8gQ29uZmlndXJlIGNvbnRhaW5lciBlbnZpcm9ubWVudCB2YXJpYWJsZXNcbiAgICAgIGNvbnN0IHN0cmVhbU5hbWVFbnZpcm9ubWVudFZhcmlhYmxlTmFtZSA9IHByb3BzLnN0cmVhbUVudmlyb25tZW50VmFyaWFibGVOYW1lIHx8ICdLSU5FU0lTX0RBVEFTVFJFQU1fTkFNRSc7XG4gICAgICB0aGlzLmNvbnRhaW5lci5hZGRFbnZpcm9ubWVudChzdHJlYW1OYW1lRW52aXJvbm1lbnRWYXJpYWJsZU5hbWUsIHRoaXMua2luZXNpc1N0cmVhbS5zdHJlYW1OYW1lKTtcblxuICAgICAgLy8gR3JhbnQgdGhlIEZhcmdhdGUgU2VydmljZSBwZXJtaXNzaW9uIHRvIHdyaXRlIHRvIHRoZSBLaW5lc2lzIFN0cmVhbVxuICAgICAgdGhpcy5raW5lc2lzU3RyZWFtLmdyYW50V3JpdGUodGhpcy5zZXJ2aWNlLnRhc2tEZWZpbml0aW9uLnRhc2tSb2xlKTtcblxuICAgICAgLy8gQnkgZGVmYXVsdCwgZGVwbG95IENsb3VkV2F0Y2ggQWxhcm1zIHRvIG1vbml0b3IgdGhlIEtpbmVzaXMgU3RyZWFtXG4gICAgICBpZiAocHJvcHMuY3JlYXRlQ2xvdWRXYXRjaEFsYXJtcyA9PT0gdW5kZWZpbmVkIHx8IHByb3BzLmNyZWF0ZUNsb3VkV2F0Y2hBbGFybXMpIHtcbiAgICAgICAgdGhpcy5jbG91ZHdhdGNoQWxhcm1zID0gZGVmYXVsdHMuYnVpbGRLaW5lc2lzU3RyZWFtQ1dBbGFybXModGhpcyk7XG4gICAgICB9XG4gICAgfVxufSJdfQ==
|
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-solutions-constructs/aws-fargate-kinesisstreams",
|
|
3
|
+
"version": "2.30.0",
|
|
4
|
+
"description": "CDK Constructs for AWS Fargate to an Amazon Kinesis Data Stream ",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
10
|
+
"directory": "source/patterns/@aws-solutions-constructs/aws-fargate-kinesisstreams"
|
|
11
|
+
},
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Amazon Web Services",
|
|
14
|
+
"url": "https://aws.amazon.com",
|
|
15
|
+
"organization": true
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -b .",
|
|
20
|
+
"lint": "eslint -c ../eslintrc.yml --ext=.js,.ts . && tslint --project .",
|
|
21
|
+
"lint-fix": "eslint -c ../eslintrc.yml --ext=.js,.ts --fix .",
|
|
22
|
+
"test": "jest --coverage",
|
|
23
|
+
"clean": "tsc -b --clean",
|
|
24
|
+
"watch": "tsc -b -w",
|
|
25
|
+
"integ": "cdk-integ",
|
|
26
|
+
"integ-no-clean": "cdk-integ --no-clean",
|
|
27
|
+
"integ-assert": "cdk-integ-assert-v2",
|
|
28
|
+
"jsii": "jsii",
|
|
29
|
+
"jsii-pacmak": "jsii-pacmak",
|
|
30
|
+
"build+lint+test": "npm run jsii && npm run lint && npm test && npm run integ-assert",
|
|
31
|
+
"snapshot-update": "npm run jsii && npm test -- -u && npm run integ-assert"
|
|
32
|
+
},
|
|
33
|
+
"jsii": {
|
|
34
|
+
"outdir": "dist",
|
|
35
|
+
"targets": {
|
|
36
|
+
"java": {
|
|
37
|
+
"package": "software.amazon.awsconstructs.services.fargatekinesisstreams",
|
|
38
|
+
"maven": {
|
|
39
|
+
"groupId": "software.amazon.awsconstructs",
|
|
40
|
+
"artifactId": "fargatekinesisstreams"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"dotnet": {
|
|
44
|
+
"namespace": "Amazon.SolutionsConstructs.AWS.fargatekinesisstreams",
|
|
45
|
+
"packageId": "Amazon.SolutionsConstructs.AWS.FargateKinesisStreams",
|
|
46
|
+
"signAssembly": true,
|
|
47
|
+
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/master/logo/default-256-dark.png"
|
|
48
|
+
},
|
|
49
|
+
"python": {
|
|
50
|
+
"distName": "aws-solutions-constructs.aws-fargate-kinesisstreams",
|
|
51
|
+
"module": "aws_solutions_constructs.aws_fargate_kinesisstreams"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@aws-solutions-constructs/core": "2.30.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@aws-cdk/assert": "2.57.0",
|
|
60
|
+
"@types/jest": "^26.0.22",
|
|
61
|
+
"@aws-solutions-constructs/core": "2.30.0",
|
|
62
|
+
"@types/node": "^10.3.0",
|
|
63
|
+
"aws-cdk-lib": "2.57.0",
|
|
64
|
+
"constructs": "^10.0.0"
|
|
65
|
+
},
|
|
66
|
+
"jest": {
|
|
67
|
+
"moduleFileExtensions": [
|
|
68
|
+
"js"
|
|
69
|
+
],
|
|
70
|
+
"coverageReporters": [
|
|
71
|
+
"text",
|
|
72
|
+
[
|
|
73
|
+
"lcov",
|
|
74
|
+
{
|
|
75
|
+
"projectRoot": "../../../../"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"peerDependencies": {
|
|
81
|
+
"@aws-solutions-constructs/core": "2.30.0",
|
|
82
|
+
"aws-cdk-lib": "^2.57.0",
|
|
83
|
+
"constructs": "^10.0.0"
|
|
84
|
+
},
|
|
85
|
+
"keywords": [
|
|
86
|
+
"aws",
|
|
87
|
+
"cdk",
|
|
88
|
+
"awscdk",
|
|
89
|
+
"AWS Solutions Constructs",
|
|
90
|
+
"AWS Fargate",
|
|
91
|
+
"Amazon Kinesis"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
|
|
5
|
+
* with the License. A copy of the License is located at
|
|
6
|
+
*
|
|
7
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
|
|
10
|
+
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
|
|
11
|
+
* and limitations under the License.
|
|
12
|
+
*/
|
|
13
|
+
import '@aws-cdk/assert/jest';
|