From b8a3d124a57706034cffc875b83991140cf90e13 Mon Sep 17 00:00:00 2001 From: biffgaut <78155736+biffgaut@users.noreply.github.com> Date: Tue, 4 Jan 2022 16:39:47 -0500 Subject: [PATCH 1/3] Update DESIGN_GUIDELINES.md --- DESIGN_GUIDELINES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DESIGN_GUIDELINES.md b/DESIGN_GUIDELINES.md index dd96132d9..98307a6a5 100644 --- a/DESIGN_GUIDELINES.md +++ b/DESIGN_GUIDELINES.md @@ -265,7 +265,8 @@ Existing Inconsistencies would not be published, that’s for our internal use | Name | Type | Notes | | --- | --- | --- | -| existingBucketObj? | s3.Bucket | Either this or bucketProps must be provided | +| existingBucketObj? | s3.Bucket | Either this, existingBucketInterface or bucketProps must be provided | +| existingBucketInterface? | s3.IBucket | Either this, existingBucketObject or bucketProps must be provided | | bucketProps? | s3.BucketProps | | | s3EventTypes? | s3.EventType | Only required when construct responds to S3 events | | s3EventFilters? | s3.NotificationKeyFilter |Only required when construct responds to S3 events | From ea024fc87f40b288fc47f3a681907193c0f7ca6c Mon Sep 17 00:00:00 2001 From: surukonda <65268382+surukonda@users.noreply.github.com> Date: Thu, 6 Jan 2022 20:31:21 +0530 Subject: [PATCH 2/3] feat(aws-iot-s3): new construct implementation (#469) * aws-iot-s3 construt implementation * fix broken test * fix cfn_nag issues * update KMS Key test * fix pr comments * update test cases & address pr review comments * fix tests for cdk v2 * clean access logging buckets in integ tests * Used IBucket instead of Bucket as existing bucket prop * address pr review comments Co-authored-by: santhosh <> --- .../aws-iot-s3/.eslintignore | 4 + .../aws-iot-s3/.gitignore | 15 + .../aws-iot-s3/.npmignore | 21 + .../aws-iot-s3/README.md | 106 +++++ .../aws-iot-s3/architecture.png | Bin 0 -> 21383 bytes .../aws-iot-s3/lib/index.ts | 119 ++++++ .../aws-iot-s3/package.json | 92 +++++ .../integ.iot-s3-defaultprops.expected.json | 215 ++++++++++ .../test/integ.iot-s3-defaultprops.ts | 38 ++ ...integ.iot-s3-existing-bucket.expected.json | 215 ++++++++++ .../test/integ.iot-s3-existing-bucket.ts | 49 +++ ....iot-s3-new-encrypted-bucket.expected.json | 371 ++++++++++++++++++ .../test/integ.iot-s3-new-encrypted-bucket.ts | 50 +++ .../aws-iot-s3/test/iot-s3.test.ts | 322 +++++++++++++++ 14 files changed, 1617 insertions(+) create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/.eslintignore create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/.gitignore create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/.npmignore create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/README.md create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/architecture.png create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/package.json create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.expected.json create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.expected.json create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.expected.json create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts create mode 100644 source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/.eslintignore b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.eslintignore new file mode 100644 index 000000000..910cb0513 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.eslintignore @@ -0,0 +1,4 @@ +lib/*.js +test/*.js +*.d.ts +coverage \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/.gitignore b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.gitignore new file mode 100644 index 000000000..6773cabd2 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.gitignore @@ -0,0 +1,15 @@ +lib/*.js +test/*.js +*.js.map +*.d.ts +node_modules +*.generated.ts +dist +.jsii + +.LAST_BUILD +.nyc_output +coverage +.nycrc +.LAST_PACKAGE +*.snk \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/.npmignore b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.npmignore new file mode 100644 index 000000000..f66791629 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/.npmignore @@ -0,0 +1,21 @@ +# Exclude typescript source and config +*.ts +tsconfig.json +coverage +.nyc_output +*.tgz +*.snk +*.tsbuildinfo + +# Include javascript files and typescript declarations +!*.js +!*.d.ts + +# Exclude jsii outdir +dist + +# Include .jsii +!.jsii + +# Include .jsii +!.jsii \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/README.md b/source/patterns/@aws-solutions-constructs/aws-iot-s3/README.md new file mode 100644 index 000000000..6db3afc11 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/README.md @@ -0,0 +1,106 @@ +# aws-iot-s3 module + + +--- + +![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge) + +> All classes are under active development and subject to non-backward compatible changes or removal in any +> future version. These are not subject to the [Semantic Versioning](https://semver.org/) model. +> This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package. + +--- + + +| **Reference Documentation**:| https://docs.aws.amazon.com/solutions/latest/constructs/| +|:-------------|:-------------| +
+ +| **Language** | **Package** | +|:-------------|-----------------| +|![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_iot_s3`| +|![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-iot-s3`| +|![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.iots3`| + +This AWS Solutions Construct implements an AWS IoT MQTT topic rule and an Amazon S3 Bucket pattern. + +Here is a minimal deployable pattern definition in Typescript: + +``` typescript +const { IotToS3Props, IotToS3 } from '@aws-solutions-constructs/aws-iot-s3'; + +const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "Testing the IotToS3 Pattern", + sql: "SELECT * FROM 'solutions/constructs'", + actions: [] + } + } +}; + +new IotToS3(this, 'test-iot-s3-integration', props); +``` + +## Initializer + +``` text +new IotToS3(scope: Construct, id: string, props: IotToS3Props); +``` + +_Parameters_ + +* scope [`Construct`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_core.Construct.html) +* id `string` +* props [`IotToS3Props`](#pattern-construct-props) + +## Pattern Construct Props + +| **Name** | **Type** | **Description** | +|:-------------|:----------------|-----------------| +|existingBucketInterface?|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.IBucket.html)|Existing S3 Bucket interface. Providing this property and `bucketProps` results in an error.| +|bucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Bucket. Providing this and `existingBucketObj` reults in an error.| +|loggingBucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Logging Bucket.| +|iotTopicRuleProps?|[`iot.CfnTopicRuleProps`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-iot.CfnTopicRuleProps.html)|User provided CfnTopicRuleProps to override the defaults.| +|s3Key|`string`|User provided s3Key to override the default (`${topic()}/${timestamp()}`) object key. Used to store messages matched by the IoT Rule.| +|logS3AccessLogs?|`boolean`|Whether to turn on Access Logging for the S3 bucket. Creates an S3 bucket with associated storage costs for the logs. Enabling Access Logging is a best practice. default - true| + +## Pattern Properties + +| **Name** | **Type** | **Description** | +|:-------------|:----------------|-----------------| +|s3Bucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.Bucket.html)|Returns an instance of the S3 bucket created by the pattern. If an existingBucketInterface is provided in IotToS3Props, then this value will be undefined| +|s3BucketInterface?|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.IBucket.html)|Returns S3 Bucket interface created or used by the pattern. If an existingBucketInterface is provided in IotToS3Props, then only this value will be set and s3Bucket will be undefined. If the construct creates the bucket, then both properties will be set.| +|s3LoggingBucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3.Bucket.html)|Returns an instance of `s3.Bucket` created by the construct as the logging bucket for the primary bucket.| +|iotActionsRole|[`iam.Role`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-iam.Role.html)|Returns an instance of `iam.Role` created by the construct, which allows IoT to publish messages to the S3 bucket.| +|iotTopicRule|[`iot.CfnTopicRule`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-iot.CfnTopicRule.html)|Returns an instance of `iot.CfnTopicRule` created by the construct| + +## Default settings + +Out of the box implementation of the Construct without any override will set the following defaults: + +### Amazon IoT Rule + +* Configure an IoT Rule to send messages to the S3 Bucket + +### Amazon IAM Role + +* Configure least privilege access IAM role for Amazon IoT to be able to publish messages to the S3 Bucket + +### Amazon S3 Bucket + +* Configure Access logging for S3 Bucket +* Enable server-side encryption for S3 Bucket using AWS managed KMS Key +* Enforce encryption of data in transit +* Turn on the versioning for S3 Bucket +* Don't allow public access for S3 Bucket +* Retain the S3 Bucket when deleting the CloudFormation stack +* Applies Lifecycle rule to move noncurrent object versions to Glacier storage after 90 days + +## Architecture + +![Architecture Diagram](architecture.png) + +--- +© Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/architecture.png b/source/patterns/@aws-solutions-constructs/aws-iot-s3/architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..1f9b4489ecd93103914b973352565e51c357ffff GIT binary patch literal 21383 zcmeFZRa9Kj^XJ>R1ZgB_2=49#cb5RcHH|~#?(Po3T@xTckl^kv!5SyHyX)=z{xh@I z+_^LBKHqg8c;KwlefFtcyY{YceX1irE6bpx5}^VB0CYK7Ni_ffh6nmbhl~il^2c~p z8~`8#$VrNQ@i08`Me)$9h znE+lM14aT&&0AtF`tLe9PaWdFdy^!(fO^A9WrUyUDSttX)QO4n5XY%{#tH@$#%ycO z47Qh=>I*6xzg#`Gzb>00&4$JfHL7WDjc}le*}Rm-Q*X`1W|)1B+jk^N8MjC-jNCZT%7UA6dA68l@OhIcQnS6nVK zu&K+U*Fu&1VwG5$OXbd323=j@n@3ptD`p+H%O7%)X7o`grXXrsNDWo6bg`TksIV); zV>!k8Id=Io^e1$MQo5W4Wkm1?6_!a)7~Iro*Vtb}i4SSMKV}SL4}YrRX4cNR#4njX z+tCLu7n+~7OY#ZPWD&-*=8>jnp`~{(TP*$Pbs1x}XtbS#msMXN14@tyiEqUQfG?WH z(Y5pn5`z;+tSXcvvEcZeBNkUtd;W-1HYHIt^fRxGkEMUii8-;`rA(bT^I)FaX0p3j z8*NKNPU%_6I)bC*3`)QA9-|-|0K9u-FlUm(fVDRrP>Xl^jhDO}8pDWI5toivO3@sF z_hwc-o)lx&L#4J*ml>Q()i}`ZFP<$hA&?iiRfeZ3j%H<(rj^D9yH5g9^+euOTk&wc8U+|rU>U#DnpoDeXarr=^z?qnG(n2i*j?T161y0Alh?e{%UD&TS0GzL8Sb8qzB2!j-U|C)- z2=Y&fb`gtJg_h(Opz|`Ss&x`|NnN;dmu+1hz-c-4&3mXQ3E>W>k~I(-EN&n1dH+DM zzV_~4Q1V%$2)(!|eF*fcv~L>bUXM3`2S-yJS=>^Hit(x%6cEBW2}xj`#M;H%?8VU- z8Go%>R-*3QjyTzDRmp_x-5$q~{-Sv4&LY;VRzeUjT7NPEaDvv8-wm<~Z~_~(uegOu zSH)$>9K#drm8kPPxF6d$VZN@Ly*KG`GBVcecudv|Qqr`S}uCY^bYAtk`fONE2pMI13 zx==zk;lP-7Jc9BT3UPg{eXy-YYvd!!ve^wf4j%0dugJReR>%{aWsbxe<;F}EgoU%8 zIwq;g=7ecllCah&Bg6@r(z()#;A;*Ha8#Ok4$xM(QmZYmiFJXG^*d_>Jd-)<(On|n zFL4-cG)nyFS~qLRBl$w$k`jJn`*q6m^F1N~Qok0(1~cN4;K#dA-rU!r3d)mCPdhN> z)c)N_$#uc0=B>;S-Sy~}#JDLJhg>E2Q+VrGp1sU!5E&25RZz-WeA7x(D&co3n7abD z9-~K*^{wi`4uQ8^PcxR1J^}}yq{p18LuVz6-$JBMr$MbpYg-?`GydL{r}@LO|64*w ze(<)!S~?E}_F`TXfSo8Y0+bxIC9_W6ZwURcqS}z*`_rcT3({uG*CEA$cK0z)ouOPe3$T8cGq7lKg8tD)tMS~1G2_SBOb)}@6&KI=PjQFQSxM1 zqOdBn+|>0Yh$l*sk;f*71$ttm8rhd){v;l!;GQIc=a3?s-YFW!|FvE*RN_&QtHV6Z zcd9dsAJf%t{F@s)oLO!2ilBIT;rSr@C-0BYW-!fF2}vM{lh zmr=L&AgTrk89ukSJy}mlFM4KrM;+MjDL%ZyqJtNC8#YkP@J_DbYoc+oCQ14sq1#xU z3sd$Ta)Yxec`wQD^Kh~Vt#H)lX+qJj9M<3_Z>!*P4U+X#Yonr zaDXM3vB(HUWvSuk6{5TetJV_NG6^;=)c|Ma)4;5pdDgXuMnD&FH;5zt8yzf42bdSS zVCjRD;xGdG1Q9c2iRrD-7o1&CdLmC88hq|+g~G!iwXr`EdCjq8k&U*8Qklf`lFsG4dmUvOit+b2 zGS6h~4ESn9QPUt1egVI3WLwC7>5+)Whz6G^k5xcGtiGd8ic z{R)o+_<#vX-GU2w+gp!j&%iF9w_ztHOg+gst&AdE_D@EM-46lj7A2)N$G_yRm$GKD zh);bMB-9P>p4Twx#3{Ak>V_L1ZzVxEmk;I&tBQ>cc5u^WaLCbC{g)3Xdws%s+tm+* zfrxhMD6HL^&RG+O_ck1h(OE~rXn(Xsk4nufDqp>M0=a6@U_-qUKAxmmy3k8d4uASU z-$FTKYc1YHp#zVQSTKqOYCS(~4%fAtlg*a`(7;$)T_X4l56L7nUw5<|wBGKoWBXWaVU}8= zdZD@#Hn<_^KKpNw9Y*+pY{w*hjg%a-&SBe)Lm6vVZ58S12e7Kb$w?o*6TY-`TUY@; z%Uz`*DP|Yhp3y+Y=X)LkS{hiXu}*!S&aI$CfMqTr4ssj1F>1gLzz=@o_m`rH@X}{D8{W3Q>rz5c#teZ&FjQB4;&D1=dcL)HPV}#t-5}kF2 z(Ps?yXxdd4nylh}KYJXw+E|j$5$9}-N25y6bR)0tOwB47pKBqzMAjE!LuF8;sAv8w zZ{7<;p-6{ncQHw7;|P!{6>FQjzb@{Og;XtIuXoI(fc&+Ym92u{b7ayt0-~^`(j~3m z1oh$#c}O6CeNz!9IE4?+0T%o}Z4nyf3=Y@x$nxta3#LyWpzBF`xTK>a=vr0#vB= z&$>%3^vcpdNdpJ8 zW$r-kj$C-z1Cio^rur2lm^}~3r$wB z=H#i_8@Fe^y~Y20NNwT&<>zvyqWs!xYGLA6DC{NfV3nx4twX_r@pfBjiob}-<8jGe$t zOEBCBnZj3;u(2r0=C2c5n+1+M05d0hqCVmf z@db*K!m{~6a^uQj5nu#|r{b?Y-PXL14s6_MbgR*7Vo{B+96tQpu5+O4-?0So^YzE_ z5XyK4>rmI!bbL^B-gZA`Hczfw`xE&)pP=k;7#Cb*nZ@PNu~EB#T%@ZjK(56=GR{B+ zt-qgF)`w>dx-bX_(t=>(N7z`u>g-Mf+zNvz7y{JQO6s$|RO>SR`onL8^SP^}#%WJN zQ65ovgbtX6pwdH&Y=&0`MMCwtRK~3{*A4zt zd*wydhfwJ?1O;#rj8KjRdQC}iQW+;U{3S_;C6({Qb%uB+Kh*L(MFSoQ2TMFR>SPHX zzfP}RDQIa*p&Q>ao|_*6tS0jnLSJX4aTGapn?a}}P$;8(7}DOM@(UFfmH>xAvVBMg z6!rRn9hSw(s%S)I|8Ao+Sl?|X2hv@0{+L!YWY;I=>@$zB<+523%z_PsulPF;&6%i9 z6%Zoru`AAgiVryhF;oBZ^$(Z0-rrGICvCXy@q+Vm|6ME6+1g#iMWza4b>c8psiHO8 z;K}-T(mT{|%qa8uHv$d=&Qd=jWZd3QUx<2Tb)iXi$_fQL2jfuduP_L7-dudM_QFKF zl+$~>B>Ypbqb?JTFWSq7@e_*K5H!$g2tkZL5Om~o=n-LuaL+*G;Q#v00airKg9pb&~Byf#Tow%@cmLIQ^qUqsOJ}& z0Q^x6_WwLzXQ9*%5&BMM7ieK7TFj}VFaK^eYiUq=L4z9hT$m8ejIHMVFZ=%(DWl3( zT?7uE=w+?a8^^_2kEuWvkpi{U8f3a5j*)NmZxG#Wd?k>?z7>F^cFRw42gjON?v_fs zNU8CZ*H*dr`d{J+s!Y-#neAFxZH4`}Uhj?kkqChRwkbyVy|5M&D~T*i7X&?um&PjC zA1ocop#&I$1^&&wE*oMdU(5c+4v6u(ZwXdV2}ZY@^owN+L*11awIKhVw7p#x0MuBaxNI? zK{c*9P(@VaVSX7=UttFNPL^AE)@+hE4R<&A7&~hk;`A~>@PLAh92xT45H?7%7s5*t zaBR!igfD43{iqk|3HaMQ^j?uFli+Lr(p1+Mil`8xS`VrnLM|ImX@*t=J|M+ zmb^y(Fi6ZmYGXgICUJutlBQ7l;Z`yR{>P7PSoxYt)}c5{COm`o|E$Qfkerx84%>i- zRDr=1esvjN!GW7Nez=TW`+k>4v#J3^S?59KqyT1K^AB(Y`3ECxPW?A!;zE>7a3<~P zqaSBhMc)tyatu67jbv>@ISSW%c=EO~9hx>?_$EYx=Sjo*fB=$@VB!Ede5d^~6A zrV&PWS=9HU8XzD*hch78*u;TT^;2Jpj-ky6UL87sU|luWuM znbvVjQx1|Pzy@k(ceh_44ibF%M9tG(dy(5xw6U2N&@7A&&ZC|Z;c6ldVeYFB<+3H$ z@=(YNWlj%Z?tH#JWWH^d%*&PDVozaKq%>yWEKThB!bV!0A*^U>A7~&^%m0@gXatsJ zj?G}#h(du1ugc@8l56nOAlQ*?Yv%~JHQ4iI8l#O`*!}2(AThFKWCGAAPoc!Hz@3(} z;1))@3!+taS)_H6H}_t-OnqW^#ryMoft9OC#e75E$V~6H`xR#p5>9{hckiR0I(w z90=X4fK!X$T@3&!?0Fs-l^c43rVa@pZ=lFllmJWdS(T2)Q8?V(N2=d`+J3pJIzIJt zXe?sJmo@q1emB(3hhDP-_(JJK2Kzqc_jk^VcKD8B0f?hX&4#+_i2?4~jC;!H*5djp zr%6ixVbq$d?WDp~bkyO}755b_AYyVKPN+LT#1XtR_j?_1Rf&@4p0H`}Cc??_{qd6F zEE&z$R>k4Q=udxbTX{nula|(9U3|zNUmDFxXhe(1cr<|xtR2a0joil}10%a4UV8d- z+P00BAMRqg4DMK$SPao4PPRD7HjgPF#f5o75`8exR4Zn9St z8~zw%Bcxx6Om|w6y%8h#>;Oka|HO1H7kAg^mbThcf`nIF*mRYUpuqlc(zBOVS%k_Rn`XBIsv}?eDtg zIO8h?ct%+FcIKHzMYL$SQ8O)HPaH@9~2BuWbLX}=>cAG1HL2QTe-8He-^CK_%i2{ zD7M$rgFkS@%X4y}*qIuL5McYx`-xXU}HvDcl#@o9Ec0tk*bY=~3j=XTCk@cyQ29WeM1rGaRErbOHUO|Uphq&(% z)*{}WIh-%BI^y-#`qgV;t57#lN?bFBCcsZrfaWEF_AG&z_b7cX9_4Whzycf27@;3c zaP5m|P@*j|C^<@4uRp}#Cq7c%9*$$u{{GbaYV|~KK`Dc0iwK<8RQi@}+YO7aSv6}m zw}uKk`5r362&c*tsm7ilp|!vot8Mfi-=Y{DAE2#hsP42Y!_9aH!H_$X4;^ut$g5}> zt9qu~O#;lVN)_b(a)DkI_ag{pzE!VZ7h8feAreq=*}zj%Ha4BrVu}iQN~T7u*K)=! zRfR<0627d|_|s_lR+=Un>drKl87)wEhI%~_>^ifB&CVQmTHry?XEui)+1e;ISbxt} za{?$guBke`ecAnH(**@&Cz1 zI=}kuczf@yDUD>yrPuRcFX|xE=x351iwbDr}769QKO`@`u-~(L4m13 zPI+)A>|e1b!T~hEAm_A-7yoi+P84LeZ&mBE>S7tRyxh{lf5)hIjro3MlquxQY=aQC zW1#DKe=(P#`cfDERn7g^)}88!%40J(?s3x;SZc8E$QpXD+{i%<44`Xcv45PukVf(yqlC;ekV~4_b91T&w-Y@xY5;deetQ)90Et zqt5xGbMB691Dcu|Pw&{`wMlrk*&6_yyD6o_=OK z&j3;KxSE#S{lag7C8n0WK*p=6iHZYoUCDYOf76)r%j>cTs=52f{?`lf_Z|E)YYjKg z`CDWdmN&cH1&q_$oC;WG><6<^XBobzP2T*vzt!qt<&MUht?}$~ra{Vrh5cZ@wO5dB z?eG4-gI?{re_0DC%@un`Qc{n&pP=)?OYpl)wPQyqP;j+Ti3Tl0rhX zL7F(y!NA?Z*z@O^S;|^;#CfnpY1xb6TH$gSC67%O|J?6tznqAU`PIcWeM5t*9f&8M zo-Zq-lh9;7u@Hk#a6MK7pWs}b_vrk&DT<5NBKgd$y`f*S2x7l~Dv!}3$d{D_RPp25 zFBYW}uVR1MzGGfb)p05QW;-Vh=bmVBQx`{Hf%{h{jcb7({1jz@ajT{43w6u; zcKx~=xrZsKs$PO7_%4}&yLNWp$)=aiiLta6!tc5pR*F=635`R9Sp;;rzjRs$4aDc| z*gKHz>Y$^~OWzAHl7u?MU+Xlm{lz->@R&wAR`Vt|zV5zd35b8Pcvw3Qnd?U`Z5 z_1iq5-mIce&X4UHqwkm2XEI$LV-(yKjdhjonma3$W<3-?D@u`dG(Kplk7h1GY)KGD zH6&teGR`AWyw@O2HqS7Ie;&0IuPqiEX(@R?`m50RqSWL5(#La@u5KQ4bzCcfGn^Wb z-uc(*0O@!b(!LYBm+NgeX$Y!#;lWu5?#)Y`Tw!qvXI|L*`bKp2vZIK&@pEK}NXo|_ z>I(poYxwgBATi?lzXO5b~I54>7LYrk9tBjq~2D58tOX}@0duI(*v-7Ie214 zg8tZRY|T)nVUak!Mmgf-e8iL1TFpQCbs0}-ms-exWV`{3W-0!1zd`fdGQ2T? zj#sy|#ofpJWa+oBQ>yHk7WVXFMvG6e6c}q1_>vj1Q$BDPqQuCcOgx$FejLS3lrzgI zRS{M?Fx7I4RK#%A%we^oaT~ZZ27&nzlm84^nvp%Y8^FN8@#8j(!_sRb^qFj3rqyn- z@Ahw5sFeRP3ChKEb*rcGK4W081w9pK`}cK-+!rU)#H}AJ($DAK?W0r*SS}RVnazzp zh<;i23BmOrshw422W1I)-!_@<9$@<}jQ^4j?CO@utIrFk@#GPFI;UCGo#5a723P3+ z{TqK>i(R?G)`q*#+4Zx<$x;rb)tZpqvnvjbaz@K~fsDb!pO!hjO|zj#-vuFCs3dp) z`;<16T1D_ z?0`mLW<6$VzmnFvt)N=#GyDkh)OZ=HEA&7ucT)BuMvZVYMuxtyoMeAed&KqIM+Hnp zp$%i$@X?(v9-cp!4EFqenrBXodhMmcLez@SQUO)2oFk8dTWf{qxs{i9?+gObZ(&W^ zrTp6Ov`;SyYDzd%+}-hHbZhIi!pgMAkkeZWd&dnuHBNq`Ri)Pbjv8sf0!=Je%_oC|hD#;Jmy&PeI1FYRJ;IU%{d&@;l#&kN7xB7ws4DvLtaD6cF? zJV6cnYz2z>xz=b!+Y{SNvyj1w|5yS9yAg2Nbo_UcG0XX|!wR@OTQD}$`_&3s+~WIp z+9wY*g!+4jU-FMk9GHl-x;}ZFx*Id-Ap?E-l;Z&s04cA!F#hBnv;o_hk(g!OA>l6zo=g>Tj}yR$L4lU# z&&Z1%d_PHl%SBUP1vsMXhBCnP){9)Ma*uf$QHazM2t*|>5BMq^0NuC!vNm0U6enT_dw-)P_P0C zOX+SD!5dGpOe`QHLxKp?7e8$#oH`LZTI-^7>LPxMi&`rfj z?@gUdSSA}!%24X}owd0>!p1H%d?xzP2=l-T=Q7<9*0j2KyWOoSV_hDJOvO_&JjK`= zO~$SFXLaX!d9C_mX1iYBLw6OchFg4QD{C-Z1as*@WTS_>)`su}F=%7(>@Uh_!%S6H zp923yj4j<&y+rgpmkE&I9|2SburoK;>3)iW0J=~GMn>6AP}%lzn~lfd942)lTQkCkJlNT{ZjfrnF*Rq zzKlmSHk24}_AJkKdV4QZ!HVfpnMYi+?WCu>gZ-7IFP?#|Ho%}LZ{-`p?=9}(Q=Fny^<}? zAAN#cLxOJXjAurqiWsOS4%OPRCQAQ_G+Z-gGSHQ?OSiIUrO5Rg6W~E9uo;6JEIRz3 zXMUgkzk4uE=8`Hj8OKPMmY4gFlYiHUIFSX|<9%IMN<)WLCWEdcly7w_VZbFU=vs*> z$I_Dj&s#3yf&@Nv=}AG{XUu{FaQ?jj><&}o*9hj(03t`~@c%4FwdvUr7%+WLM-~e) ze70y8Fbjvyq8VKRtb;fk!T1SkocDjfMV0cr>zb!HZat_KBhx}|BMqS9PfC&nU##zx zzXT;IAk1Z5^P5C43uP--)&zIq0#x8U5W02%!h|G`Z~#BljSWk_7xw{Fs(x8;Vc9qr z(XzHqp?S6y#W@Zj4F*E8*CtHT9eKhASe6GNj*+3kE{ciP^EBJh zN#YrW?B61>nb&g@wn1YC69Xkwi9<$?n0G@7aGahvhB=R}DXo0ZSQA<5h8)oN?kjbM zFabO&a-d|Tt)jI}7zEW)Dzl0JzBWWu(FVuSL`{!T6NICrG`3)JI7X%ry%s_53omIC z-Oqr#)t&C65_J&+Rc{YEv&}<_BsLoMx7G=A(l>ou2qKmI0@sj?y)Sy~yzGDkgs{;s z+`nsRxh-iDPaeP30-g1a74VyRSZpniNOVT~Z@!T?Y-X~~EMv(hBrWd*ENHgNPbRLEnM|*;vLfku#PUUOMuBfh%3Vfn=UM zXgOVzHkHxm{1hbg_AC*0w;n)LJc~gS(7+tO16umP42xestHHR>+5H2FOj2{-jFIzq zkV{3l{)qzdQq*Q#19^kEk!GpCRD3{tdq{^Y=OO2cTGXUDEsS0U)^s+mJ8YGola;mQ zk%)u>y!;aSpzT*3y*cZnncE!_HyMG3 z6h9p#R=2;1gbzB{LtQW<-|UbG{*UPYfol9}kMPy1085`8JIm7g4B_04$Y$&dJ2GEb z00A7+enol>m1j{~BB6rN$egaC9X>}D+fROwZhF)<1yMG?#gEDw6CBmzv<>u{PtD?r zdRFAdc@{Nxa$kW>aK)OqBMN!*0cu}rnVXk%WvRB6u+1z)$v2%-xm|t|C=oAuG-z`- zya0|z5CPI*V#f9VD~9+>dqu4-L8tHrgNo0*!vo4NmShZ#xUK$YmXtaBQcp^Zw_|ak zgwA*o96Ed(*0!!TD$$Zdx}=ce}pTu^vW-QvH&gQ7_+J0(y#``vNrw3=9c&7wCqver#}`0TLB*LRuVSL}xE3_=wq$~$9fd*4gDYDJFQqtHX$^VZ11-3W!dz%DhDR?KdCWM(d*_A?dGCK!u zwLxT9xdpUT%0h23GE}v^4V3QG zVkyCNZLAd$mo6~+NNSx_lqhFyHu`DB?A1r$5Rb7&2^Pp>pDC6P1V%I>4(zm&1noDW zOWIA<|R|l-e?y8LO@JQ#1kuk#~dalwghDik}>AD)1TR_++|4eWHv0l%R zcWZ0nNw8Mh{m$zkpxjMkf zK}K_WAhWZy-nS$UeF14wtAZfR2-h#q zA+Nm5D5XhaWHQK-tU>k%_#)z3;SqCK>IJT*-UN~6jAoFC21){5Cdw3`HY@$9S(BHH zmklUjbQF0|B#6D(r&v2e>3QBTo(O$2@+5$d@e7Y5JG2-=NS?4U>ZT5LK?;beGzdvU zdCVjsvOY0s-ocg%5ti+1beIHq<4y$8fgZYT9DQ+GbMrK(P_%`fXn{}w*lmCi`Lg5v z=r~=n0!iEZ$v59c&@=>IwVAZ#lQmz$GE!k>`^h$ZW&;{*8IZ1c2v2!Zja-_Ko(7cs zfPM7C(zX-e5ITcnxx|TFOw|xVNBZFA?%-6a*4)as7~ahpp{Iultf9S6>Lv%wq_)Dt!Hi5AuxDCaAATR7;-KZ2Oh?*r*00cj^)~UXEbAR?|wsR#*U$@9>#~NOj3EEemK4KWI zF+Kf-GI2KP9i&A|vs|C32Y=}}&-HBpkC>UW@|>=P1|J?@XgyhSIx%U_K?`Xn@KMFX7zd9=` z*;!xoF>C7Z!}yj|S@o=-=_l>i**u=0G&Pv;)2Dq~6-fuBmn53t561aeAKJ+akv^B{ zgOkxl+_bVv(fScz#`hVE!N$UsDF>Q}kSS%^{f!yp4mcdzH97zLUOeHKYdMG3y&&28 zmiACf{PcCi>E&Dh-+sg&CvobXN+e%pE70T|B;(bcuex|OQ zb$VYdOghP#Pt8T9ba^(!K`KaH%yi!=2BMa*u zxl!dZ6zSV>2Giu0pqN$>qgl0*5Q{-bSQ0N<&?4NI5dXL&H=FqC+(lLQXSnN+3#U!V z$P_}pdNMyP-q(eLMfVVhT9Pi6d!VIdGoz%RrSGysht0~=IXmzL8QP)2k0Z_J!?x;u zR=VOkCCfq$k2bp`9|0=g|ZUr z^l~fVlX_n^$HEUk<_G6IQU9LPyPUP}+F7$`8b=O~{R8pHVzPVx9)1Z!Ok{pgrFX)k zeNd&=DmO@4@rq~{fE(fIK9y0h!RE^?_Nr*{sgqF`jWDhJX~g(mvL)Q*yM*#*LS3Ug zTX6+&jBf`An-NT*J(bTLUW9V#?rv4_wx*F0M#(dP;i=O?I7?Solb@ZvG%I zL`N3}a>ID62kfO}D%`DHd8j#EJy7xYP&%#)u~yNQakVF2j|!^mB5!m0sInx+Jno}( zmqvURY2GRTIZ0m4&(HxO`$A+o38>8o$~jMKULEj7R&ifYD!bX><96^SjdrZLnS^02!?o7f*Dc6x@p|UhG} zuc}Kf9+wiXWnwuzW))r z6BN`Z-hHYG7Y$<7vw-f>2RB_oNX%ZCu4kWGg7+*A0+MY(IC~52ntkm;_cRYLo$}u$ zlo$SX&o3AI#;z%P{OI(TY*cl2E~g_`#_X-v5`_|1?MYV+>)b<;=Tgd;ol~p2wbEdH zqc@Syht+cRzdJuW*YS+AZNC*?mKi`mlGeMZ^#R$Er<-aOJr?@6%GkvmRnKxlk$7xMZ(IObpIIe z7X9?Bw|)24W{hOcpNjtvl^co_!+)Hs0b?&m0~oMH+moODE?!yhdxY0Xx0p(>+Z(f= z{ifF*6|Pwh_yOTdq?r&~1d-~8edEpUmYIdfYy#(^^;YUsqrd=-QJ=v3r#WSpuR}bw z;$T7lj^aV$53Pzv@#;25YtChDn7pn?g?Ov?=UXDQoo{+_^$qRwUr@Y0`8|ta6VwHS zo42GQ!OO4i6ip4Lk$|9H9bxch2HEG=Rq%U5s{37fUtWRR(o!mMbl}ij8tlm*Q3{vP zc^4oH`X%+s-WkHI=k=qKIa}@tB`l ztfuOG17i&duO9(Iz$MR-&##kab;;727nBLc+$&4l?-UtdRi&g8`VIvufR`W8HuAs$ zBCb`Vrl&!fIQ|@E$nb`Yn>Mux041S{`4}@RzZOc4~qNNar1e z+&3n@&T%rY-dDX>`u7j5)%KjL?&}lxNX;D`7%XX~nfxEShK)bIE^suQC?3O1uT|2k z5~ou)WJw}t{4q*tj@8wr!j7Ovgdq;>gZh8i@$d~U+KRdQui*v5oFg926cI1zv~N?t zO$LNTek|PGjkoxd@#CrjxTtH{o~o-mZ*l1(ziIHx*gvEQImpZhcKp2ip+8n_X-|f1OCj2G!rW!sU^^bq7uW%&t zBfS76-gKKweHB{73C!hFa>)hpI1$Gr9zCpE5AM7-XLicx`$G8WGbN>t0IE>>9~}S2 zXFAGzZVoezKD*+hBNoe5z}aRjhS2kOd9zAZiYY&m+K-W8S)<5*_Q ztv=zq0IM(KKL#@$M1G8gqsLX1(IhK-{JSq3R%bEwqIu8j{P8H|^WkUUIN&PKI2Y^1 z`@ETOy3 z&}=s9f*sX8Co%Aiy~fe^1;wGc18ujOA_pv=1Sq<9;dqnjBVsjIF7~&vx!~)^h(3|ydMbCN8C#Qk zuQ6lv4S6r2dz1cHV_2O665!s+ zZh{I`G&`&eWx1NB8Z-s)$`l#WNnuW;yI(B@UQ*Uyr%Extwhxlu(O^>VV?zNE{pzyH zc8tYm2@2Od>HVK>U7v_FK;%hR9YYyfhnE}ytpzu$vrCVrr8ois5TB0ri#;eoi#U?x z(?IY+hZ8}#`@%ynnU#%Ooltp}GzsGI`mE5E&A>GIV*D!fyZ+g#Yjkbu+ziM}lt4*# zl_>iKeHie@>&U*+cJcPBx_p(%u#m<>n#U{tdRAxPq6#zfMM1=$Q|2ch z8-NeQ5^N>GQ_6t%kBCiHW76tZ!`2&#An7VHe%*0+;4W%JG4;+k#dD@kUl1+Bu(o@( zpfSeOSWs@IU7|^Rc2|pPu@8Ju_8$FU6tTTD+x__v$VLiY*P%`ls7U(iXPoL;RAXi{ zA}_7Xu8%i~dkkt`$;*Tw${a%v!uBPpsRfsz7+sOR!p(htMCqX`rdfPVY;PYWM~BZy zKitx(&xZdXz4>YbsN2SWAIq{#&6v6Yb{`oUWrYp>xJIk)5@jZs0nA!q0d`j7Q^E69 z>OW|r;V$3w?qJ)R`&%+w9SWlssswocxMG=(3z>S&rEe;#oJ2>@10-%s#;A1j64l%# zuKN#I!lzp(;6Q~C_i6=T6EuZWt=Brkri86`jKfpC;D(3phSb_h&P_~&a2(0C0Hz{Vu@&L>2eY{dcPPb1(LCz$ajmbMu--_-W)zn(V}ML!f8Y zi_r%6<2Dj}ue^&yAfW%B zvEx1)V+Jg#xNl(C8Fie-v|g7IlHw{mYfFWXOrWMfzUOvwo^Tl6acI*0Cr|^k^zpv9 zH#8j09{z_$vhLrI+w^g05pt9!Q#w_QOadOvjG;-Qjj^{w`klm+zqj;HSw}3H-d8)5 z9cxA&j%d<+@&*@ZUItZ6BLcK3{!82q0o+a#y0gkchE^`$Vh zf5pWe!7tgnN%0-@Clf^3$vy-7Xtw({ltD+|6D5@Iw%Pvj11!#RXL%1&xNWd;IPOe{ z$$4H)+_eU)qhTCoWd7SD&}y&>ids3R@*JA}L1sE4gnlv!b>Ij39E|g-BEpy0YDQ z=a+RLShxdIUYrt8GX{y0V=c=d#iln!S~dof z{y<1~qY^#)b8Uhrl1dy3jJ!Yy%%P;O(|6*#-qgb#7tl8UuHP#vaNGi6Upd_w(#Qs@;qPWGUUj$Gq>%R;6!(k-D7+$xhGDyg*E+`#o) zc(~h7_diFPWf+`>&0ckw7JkXT(3gM4?bC-g9#iMmq-ZSoM5VuiY}IiLo^&y>r-h(o zNWgC8N^V_Smn~#91ugmY;nW_~S=a zdqBnxk~b>7aK83D$kS}Rl59y!FZZ35;ECGb)$g49%D?z+%lC4^8^dTjQ3fcB_o3bD z*^)~b2ykoS85=>=4N)VRTN##>7Ht-fxdy&QR6Y3L=JRf}?b~aYIbY5ckIxQ{wTUQs zb{v1}er+d=865~;Z}MDdy7NX80-ffe4-q=?I!M zfKbRIcW{Fe8A6($Oz6`H`uVkxbofruM^43J@MXFvjqy{`kCpNKC+|4E4UV7sR{y5@ zrHJw4G!$p~3x)TdnjkHN`CfqkE1(Wv@tZ+(U8uADwwW{QCb;(10b=}$375!kKQaF# znMXl+m3I?^miGkPuZ_vKNg6D%;`Wf%PaQH%dD`0A!sXR9bHTKFcewApul#FGe=d}K z&UC>L8#4kuU4d(2U>sTLofRhZNWvAXPqn+o>A!+e8U6k#aQM@quE$@G_hT!s@_q(D zf1Xof{&sg)$4~MJuxWejB5?Te-VbOC&xxkS8s7qFZYUU-XOmS`%{2`AK7p@gQm;q` zxM(8qi-_oB4AjXnOxdyCV@cufM0_q;v_&hd1n8TgV0%kNrS}Y0tO&}(%;Lw{CGsmO zy>~I;gT%N@gC-O49|-vPPWO)06T_2t$hMMz#Tq!9fUn7}sJFLmSNu#xHMVbvkErZ~ z6zkP5u3IhdqZF#Et8=~e*0}NSVE6GZ;_opqB@_&tR4B7u5X6=i7z-A-%0ruHG4<`~ zS^Jn|bLV8wRaXAb>EtB=F4zO-)jmb7G>N(O-(AW&Xado6>j10QtaNxKGwzR90?Mnr zKLBu%3+@l-2|M25UE?ME(8s%jfrla*pG|bz-*xY}I6`dn(NM7c(IbzXJ0(29^|qze z2YT1FJs%H&Xm{?Z`fJRPe7v?{kAT0q$9q2a{F4vcIY26^yvH#RiIWHy^U-G z8g$$)_m0on#O6|mhn{Zhj<(BM>FN#7tQNn|NLjGJb?Ec2?GsZB4w^G((uBVEoJqvL zV(@J}!H!E~RqN{N+^@W)KgonuN~8A0b%8)0QSWcs5L+S4g6TuaArNyg7tM(owiY86 zMgmR>1p`M5v1!ozdxC+l_Y)iO<)O}w)_7ub@1uXhgb!=w{_KWl9@$t{S#vi){}N)W zIOe0}>i|qN+BU3FKuzvhG#pvM7I45(b`?^9n0i9H>2!@uE2&=#1^%9KCiSc zkK2Bttja65dk!E#3yYyzId_wK*bA+|Yl=6JS-C%;0BzhmO=^ShsT;_Zs# zYG$*h`=nASwh z3%a{HgqUJQG@F-*@Eb5wBC!$i|BA0>Ok<-RlP6&Ej#>s{GGt3Dd3hT_d=8jyPXx{d z_rVtR%>>hf;$mWJiokDrj+k-YK|MX=lM-8;cDI*=?K45S;Zqjd0t3`cJ0^XzyZgc2 zG2=qCeh-7MFC>3aLu@7WN}0iwA_5f^r;T?_+HueeT>-gK!xhKX?B88+;9KJIk!rm5 z;s3sU#`#A+}ti zYh)V)3<7yUzz|zrU^k5#1PlVXM8FVRF3~lz4FU#%ydYqREibT}MhybPBQWcjQ)X;< z_F*v?3^>~w{>jpb?}-v$ap_{nEYdGV8dH9_C`}gznDvmC3pp^(Fg5=!h97#Eb+Lm9?ic@x27Tq&wJg zW1&rOMV0qA8sM03UM~7Kd-m*cyT?s`inRJvcURjhsoF5amJ9Ta%z{RsysGw(0B^NO zT^a7%t;V^>&nD=Ok=`wi5nCpgz@sF!RPKW&1IrGV&wNXKEJ1O!C8AG&up!hL$Y;j* zr1M)|ReL*ub$2lEwOlTMimI9~GSgY1u7F(fPg)GI<#Gm$?1Drd~QdV=i|;X;b| zmpu!>Z%1XW^sWHYpF``~#TN|aRW-k3<@%i@7K-|q{SuIX40JzS^gSl`X3^N9#J07p zs^)sdbl|?89Sh%lcglMc!_~VOTf+oNQdCAjbG#F;v^VRxc~wfQjzgxY{bF}7k2>L$ z_xA1XdjrG`U}_=7M|VHd@to8@^w@dRJj!(oz@Gx}6ahb#d!ng67p-THXZp1aEC8?- z%-2gm*T`6F8vuPFKyv_Yr3rf)#X&dK=kXIf6tP7D0`M&nxp*GL7l%4K9+T@^-zVBoqa4&MfF8o+Bc>u+x8dhCU0l#+Lq3$tH*Iv{Q+gNh-xf_(K% zr*ervRAW1ULBA)0o0vb$z*l2rA)$r{d}DX8lq0e`WWRuJ)J zc0>;MxJ!lD>=0YK!`~tB0$BJ+=-I$4$->o#-F%Rz4-1)S2{E76-PIAhNNx|?)=2CK z9+5~Ob{`}>KDbddwMZx=+#9J5Y{oP z9~1P)<V%{uo53Cl!4JF#xjc2G-}2qK@3&dCczxH%T1 zF>$>ZV$0nX2Br%`!N8#vC!RP(qItwF!P}S8x9A@#tyWk{|2y$>wy+#7yhPwH?IrG---+hN zZhZrVT^j*jJigDhV%NmJ{kRVk$%A*3eJc69S@#K$e$c(k+UJEA9lI2z2zYt?vcUM4&Ed)>??AG6QVf;=G?>=%vutU-W$n$;xn?k|B`9@)ENj-9c^K4Yam)bmW+KP#$h z7o-YTuUNgBir6Zuy!SBi3!%=A?}*H@YVYC1SZ`~Gz;@WdDKSN{{xB17muMbtWxfA} zXC9MiB2ld`66GWD^COR&dr(-rlI1VBI}{9jro754kvndPin*T&7x#1qUQG3QTEtf6 zmF#jt#7FmQpjF=0OneV9UCG2>jRn;#ul9b2G-eC2MNo6~QQX|Es=NJeY}L(%KUK)fs(sY1@*v~16q@dm(;#3IK=NWwjz-Jajs8k^Q1 zBvO|!;V7|YR;=G7nbMMmtB0k8l#**~RkeR4@XpvFd|6ek1f)DuLLT)4O1Pdu?GyUw z`@22*9b%pn-O{S^s+tS-Se^&Rxx(FvpZ95gz#|vfnaioB$ZTWY=zJBjl#3PtsGsWIaq!x;Yy0Hf6QGT;1W#rw zT9B`r>6DWQM7E;3PqVhea4Wb@1mQb!crBK;sP)lpk@~7z>-kLhwGi95J)2kU_Dp|+ znJ(Yu*?z~w@Z_I^F_AsvE{YisCb-5=V$v^55+S$Sbx*2r^_tX7V*2eN)71MDgEN*@ zd9NVg)6p|FRbJ)YNQCR+&y&h3y%!PT2V!7&X^ZwNV6%3QyM(OWVqB2VXQlf5Pl$~t@7T=5pA#*u z?6|s9No)VR?i~lpF@T)EG1JXGUG0A~8k>`Ek7=u55lHIC#{BH7e_8Ex}LfL;s*+s`Shu317%;;$!tnaJS( zjYbd=vfoNTZK{Om#&}S$ub=5yJ`oU0o;6|5)D6!*yeY9C5|+q=N&9YG+wodDeM}Xu zUJm+Sd#!I`>_EL=RwVlFbCQ=J7T$Zfc0|@o@AMs%7&d>X&wJlQg`2QF(a}|$hl#`E z;QI%%lPaurqHhcxp~d%8O8Gs0xW5S!yuX&N*Lq=!IRW$owG&PjgJ zWYT-0C~K**s(GIzs5%g~u!Vbj)&(MNI7y0RrXROsTz#suwb&zu*oty3m`)o63<5(T zV2I7E4}*X~pyUuR#8z@sY6fHwFbEi8Gi$&gU=S!d1Prm2+?1LD83YUhhS", + "Default": "/cdk-bootstrap/hnb659fds/version", + "Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]" + } + }, + "Rules": { + "CheckBootstrapVersion": { + "Assertions": [ + { + "Assert": { + "Fn::Not": [ + { + "Fn::Contains": [ + [ + "1", + "2", + "3", + "4", + "5" + ], + { + "Ref": "BootstrapVersion" + } + ] + } + ] + }, + "AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI." + } + ] + } + } +} \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts new file mode 100644 index 000000000..a043c263e --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts @@ -0,0 +1,38 @@ +/** + * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance + * with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES + * OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions + * and limitations under the License. + */ + +/// !cdk-integ * +import { App, RemovalPolicy, Stack } from "@aws-cdk/core"; +import { IotToS3, IotToS3Props } from "../lib"; +import { generateIntegStackName } from '@aws-solutions-constructs/core'; + +const app = new App(); +const stack = new Stack(app, generateIntegStackName(__filename)); + +const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'solutions/constructs'", + actions: [] + } + }, + logS3AccessLogs: false, + bucketProps: { + removalPolicy: RemovalPolicy.DESTROY, + serverAccessLogsPrefix: 'logs' + } +}; +new IotToS3(stack, 'test-iot-s3-integration', props); +app.synth(); diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.expected.json b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.expected.json new file mode 100644 index 000000000..11b70045c --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.expected.json @@ -0,0 +1,215 @@ +{ + "Resources": { + "S3Bucket07682993": { + "Type": "AWS::S3::Bucket", + "Properties": { + "BucketEncryption": { + "ServerSideEncryptionConfiguration": [ + { + "ServerSideEncryptionByDefault": { + "SSEAlgorithm": "aws:kms" + } + } + ] + }, + "LifecycleConfiguration": { + "Rules": [ + { + "NoncurrentVersionTransitions": [ + { + "StorageClass": "GLACIER", + "TransitionInDays": 90 + } + ], + "Status": "Enabled" + } + ] + }, + "LoggingConfiguration": { + "LogFilePrefix": "logs" + }, + "PublicAccessBlockConfiguration": { + "BlockPublicAcls": true, + "BlockPublicPolicy": true, + "IgnorePublicAcls": true, + "RestrictPublicBuckets": true + }, + "VersioningConfiguration": { + "Status": "Enabled" + } + }, + "UpdateReplacePolicy": "Delete", + "DeletionPolicy": "Delete" + }, + "S3BucketPolicyF560589A": { + "Type": "AWS::S3::BucketPolicy", + "Properties": { + "Bucket": { + "Ref": "S3Bucket07682993" + }, + "PolicyDocument": { + "Statement": [ + { + "Action": "s3:*", + "Condition": { + "Bool": { + "aws:SecureTransport": "false" + } + }, + "Effect": "Deny", + "Principal": { + "AWS": "*" + }, + "Resource": [ + { + "Fn::GetAtt": [ + "S3Bucket07682993", + "Arn" + ] + }, + { + "Fn::Join": [ + "", + [ + { + "Fn::GetAtt": [ + "S3Bucket07682993", + "Arn" + ] + }, + "/*" + ] + ] + } + ] + } + ], + "Version": "2012-10-17" + } + } + }, + "testiots3integrationiotactionsrole04473665": { + "Type": "AWS::IAM::Role", + "Properties": { + "AssumeRolePolicyDocument": { + "Statement": [ + { + "Action": "sts:AssumeRole", + "Effect": "Allow", + "Principal": { + "Service": "iot.amazonaws.com" + } + } + ], + "Version": "2012-10-17" + } + } + }, + "testiots3integrationiotactionsroleDefaultPolicy735A8FB6": { + "Type": "AWS::IAM::Policy", + "Properties": { + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "s3:DeleteObject*", + "s3:PutObject", + "s3:Abort*" + ], + "Effect": "Allow", + "Resource": [ + { + "Fn::GetAtt": [ + "S3Bucket07682993", + "Arn" + ] + }, + { + "Fn::Join": [ + "", + [ + { + "Fn::GetAtt": [ + "S3Bucket07682993", + "Arn" + ] + }, + "/*" + ] + ] + } + ] + } + ], + "Version": "2012-10-17" + }, + "PolicyName": "testiots3integrationiotactionsroleDefaultPolicy735A8FB6", + "Roles": [ + { + "Ref": "testiots3integrationiotactionsrole04473665" + } + ] + } + }, + "testiots3integrationIotTopicRule0C8409CE": { + "Type": "AWS::IoT::TopicRule", + "Properties": { + "TopicRulePayload": { + "Actions": [ + { + "S3": { + "BucketName": { + "Ref": "S3Bucket07682993" + }, + "Key": "test/${timestamp()}", + "RoleArn": { + "Fn::GetAtt": [ + "testiots3integrationiotactionsrole04473665", + "Arn" + ] + } + } + } + ], + "Description": "process solutions constructs messages", + "RuleDisabled": false, + "Sql": "SELECT * FROM 'solutions/constructs'" + } + } + } + }, + "Parameters": { + "BootstrapVersion": { + "Type": "AWS::SSM::Parameter::Value", + "Default": "/cdk-bootstrap/hnb659fds/version", + "Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]" + } + }, + "Rules": { + "CheckBootstrapVersion": { + "Assertions": [ + { + "Assert": { + "Fn::Not": [ + { + "Fn::Contains": [ + [ + "1", + "2", + "3", + "4", + "5" + ], + { + "Ref": "BootstrapVersion" + } + ] + } + ] + }, + "AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI." + } + ] + } + } +} \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts new file mode 100644 index 000000000..06e820aeb --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts @@ -0,0 +1,49 @@ +/** + * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance + * with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES + * OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions + * and limitations under the License. + */ + +/// !cdk-integ * +import { App, RemovalPolicy, Stack } from "@aws-cdk/core"; +import { IotToS3, IotToS3Props } from "../lib"; +import * as defaults from '@aws-solutions-constructs/core'; +import { generateIntegStackName } from '@aws-solutions-constructs/core'; +import { BucketEncryption } from "@aws-cdk/aws-s3"; + +const app = new App(); +const stack = new Stack(app, generateIntegStackName(__filename)); + +let existingBucketObj; + +[existingBucketObj] = defaults.buildS3Bucket(stack, { + bucketProps: { + removalPolicy: RemovalPolicy.DESTROY, + encryption: BucketEncryption.KMS_MANAGED, + serverAccessLogsPrefix: 'logs' + }, + logS3AccessLogs: false +}); +const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'solutions/constructs'", + actions: [] + } + }, + existingBucketInterface: existingBucketObj, + s3Key: 'test/${timestamp()}' +}; + +new IotToS3(stack, 'test-iot-s3-integration', props); + +app.synth(); diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.expected.json b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.expected.json new file mode 100644 index 000000000..52c1a2758 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.expected.json @@ -0,0 +1,371 @@ +{ + "Resources": { + "existingKeyB52D6AF1": { + "Type": "AWS::KMS::Key", + "Properties": { + "KeyPolicy": { + "Statement": [ + { + "Action": "kms:*", + "Effect": "Allow", + "Principal": { + "AWS": { + "Fn::Join": [ + "", + [ + "arn:", + { + "Ref": "AWS::Partition" + }, + ":iam::", + { + "Ref": "AWS::AccountId" + }, + ":root" + ] + ] + } + }, + "Resource": "*" + } + ], + "Version": "2012-10-17" + }, + "EnableKeyRotation": true + }, + "UpdateReplacePolicy": "Delete", + "DeletionPolicy": "Delete" + }, + "testiots3integrationS3LoggingBucket606446CC": { + "Type": "AWS::S3::Bucket", + "Properties": { + "AccessControl": "LogDeliveryWrite", + "BucketEncryption": { + "ServerSideEncryptionConfiguration": [ + { + "ServerSideEncryptionByDefault": { + "SSEAlgorithm": "aws:kms" + } + } + ] + }, + "PublicAccessBlockConfiguration": { + "BlockPublicAcls": true, + "BlockPublicPolicy": true, + "IgnorePublicAcls": true, + "RestrictPublicBuckets": true + }, + "VersioningConfiguration": { + "Status": "Enabled" + } + }, + "UpdateReplacePolicy": "Delete", + "DeletionPolicy": "Delete", + "Metadata": { + "cfn_nag": { + "rules_to_suppress": [ + { + "id": "W35", + "reason": "This S3 bucket is used as the access logging bucket for another bucket" + } + ] + } + } + }, + "testiots3integrationS3LoggingBucketPolicy2DB45D12": { + "Type": "AWS::S3::BucketPolicy", + "Properties": { + "Bucket": { + "Ref": "testiots3integrationS3LoggingBucket606446CC" + }, + "PolicyDocument": { + "Statement": [ + { + "Action": "s3:*", + "Condition": { + "Bool": { + "aws:SecureTransport": "false" + } + }, + "Effect": "Deny", + "Principal": { + "AWS": "*" + }, + "Resource": [ + { + "Fn::GetAtt": [ + "testiots3integrationS3LoggingBucket606446CC", + "Arn" + ] + }, + { + "Fn::Join": [ + "", + [ + { + "Fn::GetAtt": [ + "testiots3integrationS3LoggingBucket606446CC", + "Arn" + ] + }, + "/*" + ] + ] + } + ] + } + ], + "Version": "2012-10-17" + } + } + }, + "testiots3integrationS3Bucket9B8B180C": { + "Type": "AWS::S3::Bucket", + "Properties": { + "BucketEncryption": { + "ServerSideEncryptionConfiguration": [ + { + "ServerSideEncryptionByDefault": { + "KMSMasterKeyID": { + "Fn::GetAtt": [ + "existingKeyB52D6AF1", + "Arn" + ] + }, + "SSEAlgorithm": "aws:kms" + } + } + ] + }, + "LifecycleConfiguration": { + "Rules": [ + { + "NoncurrentVersionTransitions": [ + { + "StorageClass": "GLACIER", + "TransitionInDays": 90 + } + ], + "Status": "Enabled" + } + ] + }, + "LoggingConfiguration": { + "DestinationBucketName": { + "Ref": "testiots3integrationS3LoggingBucket606446CC" + } + }, + "PublicAccessBlockConfiguration": { + "BlockPublicAcls": true, + "BlockPublicPolicy": true, + "IgnorePublicAcls": true, + "RestrictPublicBuckets": true + }, + "VersioningConfiguration": { + "Status": "Enabled" + } + }, + "UpdateReplacePolicy": "Delete", + "DeletionPolicy": "Delete" + }, + "testiots3integrationS3BucketPolicy18905375": { + "Type": "AWS::S3::BucketPolicy", + "Properties": { + "Bucket": { + "Ref": "testiots3integrationS3Bucket9B8B180C" + }, + "PolicyDocument": { + "Statement": [ + { + "Action": "s3:*", + "Condition": { + "Bool": { + "aws:SecureTransport": "false" + } + }, + "Effect": "Deny", + "Principal": { + "AWS": "*" + }, + "Resource": [ + { + "Fn::GetAtt": [ + "testiots3integrationS3Bucket9B8B180C", + "Arn" + ] + }, + { + "Fn::Join": [ + "", + [ + { + "Fn::GetAtt": [ + "testiots3integrationS3Bucket9B8B180C", + "Arn" + ] + }, + "/*" + ] + ] + } + ] + } + ], + "Version": "2012-10-17" + } + } + }, + "testiots3integrationiotactionsrole04473665": { + "Type": "AWS::IAM::Role", + "Properties": { + "AssumeRolePolicyDocument": { + "Statement": [ + { + "Action": "sts:AssumeRole", + "Effect": "Allow", + "Principal": { + "Service": "iot.amazonaws.com" + } + } + ], + "Version": "2012-10-17" + } + } + }, + "testiots3integrationiotactionsroleDefaultPolicy735A8FB6": { + "Type": "AWS::IAM::Policy", + "Properties": { + "PolicyDocument": { + "Statement": [ + { + "Action": [ + "s3:DeleteObject*", + "s3:PutObject", + "s3:Abort*" + ], + "Effect": "Allow", + "Resource": [ + { + "Fn::GetAtt": [ + "testiots3integrationS3Bucket9B8B180C", + "Arn" + ] + }, + { + "Fn::Join": [ + "", + [ + { + "Fn::GetAtt": [ + "testiots3integrationS3Bucket9B8B180C", + "Arn" + ] + }, + "/*" + ] + ] + } + ] + }, + { + "Action": [ + "kms:Encrypt", + "kms:ReEncrypt*", + "kms:GenerateDataKey*", + "kms:Decrypt" + ], + "Effect": "Allow", + "Resource": { + "Fn::GetAtt": [ + "existingKeyB52D6AF1", + "Arn" + ] + } + }, + { + "Action": [ + "kms:Encrypt", + "kms:ReEncrypt*", + "kms:GenerateDataKey*" + ], + "Effect": "Allow", + "Resource": { + "Fn::GetAtt": [ + "existingKeyB52D6AF1", + "Arn" + ] + } + } + ], + "Version": "2012-10-17" + }, + "PolicyName": "testiots3integrationiotactionsroleDefaultPolicy735A8FB6", + "Roles": [ + { + "Ref": "testiots3integrationiotactionsrole04473665" + } + ] + } + }, + "testiots3integrationIotTopicRule0C8409CE": { + "Type": "AWS::IoT::TopicRule", + "Properties": { + "TopicRulePayload": { + "Actions": [ + { + "S3": { + "BucketName": { + "Ref": "testiots3integrationS3Bucket9B8B180C" + }, + "Key": "${topic()}/${timestamp()}", + "RoleArn": { + "Fn::GetAtt": [ + "testiots3integrationiotactionsrole04473665", + "Arn" + ] + } + } + } + ], + "Description": "process solutions constructs messages", + "RuleDisabled": false, + "Sql": "SELECT * FROM 'solutions/constructs'" + } + } + } + }, + "Parameters": { + "BootstrapVersion": { + "Type": "AWS::SSM::Parameter::Value", + "Default": "/cdk-bootstrap/hnb659fds/version", + "Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]" + } + }, + "Rules": { + "CheckBootstrapVersion": { + "Assertions": [ + { + "Assert": { + "Fn::Not": [ + { + "Fn::Contains": [ + [ + "1", + "2", + "3", + "4", + "5" + ], + { + "Ref": "BootstrapVersion" + } + ] + } + ] + }, + "AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI." + } + ] + } + } +} \ No newline at end of file diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts new file mode 100644 index 000000000..21375e6db --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts @@ -0,0 +1,50 @@ +/** + * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance + * with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES + * OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions + * and limitations under the License. + */ + +/// !cdk-integ * +import { App, RemovalPolicy, Stack } from "@aws-cdk/core"; +import * as kms from '@aws-cdk/aws-kms'; +import { IotToS3, IotToS3Props } from "../lib"; +import { generateIntegStackName } from '@aws-solutions-constructs/core'; +import { BucketEncryption } from "@aws-cdk/aws-s3"; + +const app = new App(); +const stack = new Stack(app, generateIntegStackName(__filename)); +const existingKey = new kms.Key(stack, `existingKey`, { + enableKeyRotation: true, + removalPolicy: RemovalPolicy.DESTROY +}); + +const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'solutions/constructs'", + actions: [] + } + }, + bucketProps: { + encryption: BucketEncryption.KMS, + encryptionKey: existingKey, + removalPolicy: RemovalPolicy.DESTROY + }, + loggingBucketProps: { + encryption: BucketEncryption.KMS_MANAGED, + removalPolicy: RemovalPolicy.DESTROY + } +}; + +new IotToS3(stack, 'test-iot-s3-integration', props); + +app.synth(); diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts new file mode 100644 index 000000000..433093095 --- /dev/null +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts @@ -0,0 +1,322 @@ +/** + * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance + * with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES + * OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions + * and limitations under the License. + */ + +import { IotToS3, IotToS3Props } from "../lib"; +import * as cdk from "@aws-cdk/core"; +import '@aws-cdk/assert/jest'; +import * as s3 from "@aws-cdk/aws-s3"; +import { RemovalPolicy } from "@aws-cdk/core"; + +test('check for default props', () => { + const stack = new cdk.Stack(); + + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'solutions/constructs'", + actions: [] + } + } + }; + const construct = new IotToS3(stack, 'test-iot-s3-integration', props); + + // Check whether construct has two s3 buckets for storing msgs and logging + expect(stack).toCountResources('AWS::S3::Bucket', 2); + + // Check for IoT Topic Rule Definition + expect(stack).toHaveResource('AWS::IoT::TopicRule', { + TopicRulePayload: { + Actions: [ + { + S3: { + BucketName: { + Ref: "testiots3integrationS3Bucket9B8B180C" + }, + Key: "${topic()}/${timestamp()}", + RoleArn: { + "Fn::GetAtt": [ + "testiots3integrationiotactionsrole04473665", + "Arn" + ] + } + } + } + ], + Description: "process solutions constructs messages", + RuleDisabled: false, + Sql: "SELECT * FROM 'solutions/constructs'" + } + }); + + // Check for IAM policy to have access to s3 bucket + /** + * Due to difference in CDK V1 and V2 Synth, the policy documents doesn't match, hence checking only for number of policies + */ + expect(stack).toCountResources('AWS::IAM::Policy', 1); + + // Check for properties + expect(construct.s3Bucket).toBeDefined(); + expect(construct.s3BucketInterface).toBeDefined(); + expect(construct.s3LoggingBucket).toBeDefined(); + expect(construct.iotActionsRole).toBeDefined(); + expect(construct.iotTopicRule).toBeDefined(); +}); + +test('check for overriden props', () => { + const stack = new cdk.Stack(); + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: true, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + }, + s3Key: 'test/key', + bucketProps: { + encryption: s3.BucketEncryption.KMS + }, + loggingBucketProps: { + encryption: s3.BucketEncryption.KMS_MANAGED + } + }; + const construct = new IotToS3(stack, 'test-iot-s3-integration', props); + + // Check whether construct has two s3 buckets for storing msgs and logging + expect(stack).toCountResources('AWS::S3::Bucket', 2); + + // Check logging bucket encryption type to be KMS_Managed + expect(stack).toHaveResourceLike('AWS::S3::Bucket', { + BucketEncryption: { + ServerSideEncryptionConfiguration: [ + { + ServerSideEncryptionByDefault: { + SSEAlgorithm: "aws:kms" + } + } + ] + } + }); + + // Check for bucket to have KMS CMK Encryption + expect(stack).toHaveResourceLike('AWS::S3::Bucket', { + BucketEncryption: { + ServerSideEncryptionConfiguration: [ + { + ServerSideEncryptionByDefault: { + KMSMasterKeyID: { + "Fn::GetAtt": [ + "testiots3integrationS3BucketKey127368C9", + "Arn" + ] + }, + SSEAlgorithm: "aws:kms" + } + } + ] + }, + }); + + // Check for IoT Topic Rule Definition + expect(stack).toHaveResource('AWS::IoT::TopicRule', { + TopicRulePayload: { + Actions: [ + { + S3: { + BucketName: { + Ref: "testiots3integrationS3Bucket9B8B180C" + }, + Key: "test/key", + RoleArn: { + "Fn::GetAtt": [ + "testiots3integrationiotactionsrole04473665", + "Arn" + ] + } + } + } + ], + Description: "process solutions constructs messages", + RuleDisabled: true, + Sql: "SELECT * FROM 'test/constructs'" + } + }); + + /** + * Due to difference in CDK V1 and V2 Synth, the policy documents doesn't match, hence checking only for number of policies + */ + // Check for automatically created CMK KMS Key + expect(stack).toCountResources('AWS::KMS::Key', 1); + + // Check for IoT Topic Rule permissions to KMS key to store msgs to S3 Bucket and access to put data to s3 bucket + expect(stack).toCountResources('AWS::IAM::Policy', 1); + + // Check for properties + expect(construct.s3Bucket).toBeDefined(); + expect(construct.s3BucketInterface).toBeDefined(); + expect(construct.s3LoggingBucket).toBeDefined(); + expect(construct.iotActionsRole).toBeDefined(); + expect(construct.iotTopicRule).toBeDefined(); +}); + +test('check for existing bucket', () => { + const stack = new cdk.Stack(); + const existingBucket = new s3.Bucket(stack, `existingBucket`); + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + }, + s3Key: 'existingtest/key', + existingBucketInterface: existingBucket + }; + const construct = new IotToS3(stack, 'test-iot-s3-integration', props); + + // Check whether construct has a single s3 bucket, no logging bucket should exist since existing bucket is supplied + expect(stack).toCountResources('AWS::S3::Bucket', 1); + + // Check for IoT Topic Rule Definition with existing Bucket Ref + expect(stack).toHaveResource('AWS::IoT::TopicRule', { + TopicRulePayload: { + Actions: [ + { + S3: { + BucketName: { + Ref: "existingBucket9529822F" + }, + Key: "existingtest/key", + RoleArn: { + "Fn::GetAtt": [ + "testiots3integrationiotactionsrole04473665", + "Arn" + ] + } + } + } + ], + Description: "process solutions constructs messages", + RuleDisabled: false, + Sql: "SELECT * FROM 'test/constructs'" + } + }); + + /** + * Due to difference in CDK V1 and V2 Synth, the policy documents doesn't match, hence checking only for number of policies + */ + // Check for IAM policy to have access to s3 bucket + expect(stack).toCountResources('AWS::IAM::Policy', 1); + + // since existing bucket is supplied, no key should exist + expect(stack).not.toHaveResource('AWS::KMS::Key', {}); + + // Check for IoT Topic Rule permissions to KMS key to store msgs to S3 Bucket + expect(stack).toCountResources("AWS::IAM::Policy", 1); + + // Check for properties + expect(construct.s3Bucket).toBeUndefined(); + expect(construct.s3BucketInterface).toBeDefined(); + expect(construct.s3LoggingBucket).toBeUndefined(); + expect(construct.iotActionsRole).toBeDefined(); + expect(construct.iotTopicRule).toBeDefined(); +}); + +test('check for both bucketProps and existingBucket', () => { + const stack = new cdk.Stack(); + const existingBucket = new s3.Bucket(stack, `existingBucket`, {encryption: s3.BucketEncryption.KMS}); + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + }, + bucketProps: { + encryption: s3.BucketEncryption.KMS_MANAGED + }, + existingBucketInterface: existingBucket + }; + + // since bucketprops and existing bucket is supplied, this should result in error + try { + new IotToS3(stack, 'test-iot-s3-integration', props); + } catch (e) { + expect(e).toBeInstanceOf(Error); + } +}); + +test('check for name collision', () => { + const stack = new cdk.Stack(); + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + }, + bucketProps: { + autoDeleteObjects: true, + removalPolicy: RemovalPolicy.DESTROY + } + }; + + // since bucketprops and existing bucket is supplied, this should result in error + new IotToS3(stack, 'test-iot-s3-integration', props); + new IotToS3(stack, 'test-iot-s3-integration1', props); + + expect(stack).toCountResources('AWS::IoT::TopicRule', 2); + expect(stack).toCountResources('AWS::S3::Bucket', 4); +}); + +test('check for chaining of resource', () => { + const stack = new cdk.Stack(); + const props: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + } + }; + + // since bucketprops and existing bucket is supplied, this should result in error + const construct = new IotToS3(stack, 'test-iot-s3-integration', props); + + const props1: IotToS3Props = { + iotTopicRuleProps: { + topicRulePayload: { + ruleDisabled: false, + description: "process solutions constructs messages", + sql: "SELECT * FROM 'test/constructs'", + actions: [] + } + }, + existingBucketInterface: construct.s3Bucket + }; + new IotToS3(stack, 'test-iot-s3-integration1', props1); + + expect(stack).toCountResources('AWS::IoT::TopicRule', 2); + expect(stack).toCountResources('AWS::S3::Bucket', 2); +}); \ No newline at end of file From a01bceca53a9a8c5fccf93967c46f467fba85b4e Mon Sep 17 00:00:00 2001 From: biffgaut <78155736+biffgaut@users.noreply.github.com> Date: Fri, 7 Jan 2022 11:03:37 -0500 Subject: [PATCH 3/3] chore(Copyright Update): Change copyright messages to 2022 (#561) * Copyright Update * Copyright Update --- .../@aws-solutions-constructs/aws-alb-lambda/lib/index.ts | 2 +- .../aws-alb-lambda/test/alb-lambda.test.ts | 2 +- .../aws-alb-lambda/test/integ.privateApiExistingResources.ts | 2 +- .../aws-alb-lambda/test/integ.privateApiNewResources.ts | 2 +- .../aws-alb-lambda/test/integ.publicApiExistingResources.ts | 2 +- .../aws-alb-lambda/test/integ.publicApiNewResources.ts | 2 +- .../aws-alb-lambda/test/integ.twoTargets.ts | 2 +- .../aws-apigateway-dynamodb/lib/index.ts | 2 +- .../aws-apigateway-dynamodb/test/apigateway-dynamodb.test.ts | 2 +- .../test/integ.apigateway-dynamodb-CRUD.ts | 2 +- .../test/integ.apigateway-dynamodb-existing-table.ts | 2 +- .../aws-apigateway-dynamodb/test/integ.no-arguments.ts | 2 +- .../@aws-solutions-constructs/aws-apigateway-iot/lib/index.ts | 2 +- .../aws-apigateway-iot/test/integ.defaultParams.ts | 2 +- .../aws-apigateway-iot/test/integ.overrideParams.ts | 2 +- .../aws-apigateway-iot/test/integ.override_auth_api_keys.ts | 2 +- .../aws-apigateway-iot/test/test.apigateway-iot.test.ts | 2 +- .../aws-apigateway-kinesisstreams/lib/index.ts | 2 +- .../test/apigateway-kinesis.test.ts | 2 +- .../test/integ.apigateway-kinesis-overwrite.ts | 2 +- .../aws-apigateway-kinesisstreams/test/integ.no-arguments.ts | 2 +- .../aws-apigateway-lambda/lib/index.ts | 2 +- .../aws-apigateway-lambda/test/integ.deployFunction.ts | 2 +- .../aws-apigateway-lambda/test/integ.existingFunction.ts | 2 +- .../aws-apigateway-lambda/test/test.apigateway-lambda.test.ts | 2 +- .../aws-apigateway-sagemakerendpoint/lib/index.ts | 2 +- .../test/apigateway-sagemakerendpoint.test.ts | 2 +- .../test/integ.apigateway-sagemakerendpoint-overwrite.ts | 2 +- .../aws-apigateway-sagemakerendpoint/test/integ.no-overwrite.ts | 2 +- .../@aws-solutions-constructs/aws-apigateway-sqs/lib/index.ts | 2 +- .../aws-apigateway-sqs/test/apigateway-sqs.test.ts | 2 +- .../aws-apigateway-sqs/test/integ.apigateway-sqs-crud.ts | 2 +- .../aws-apigateway-sqs/test/integ.no-arguments.ts | 2 +- .../aws-cloudfront-apigateway-lambda/lib/index.ts | 2 +- .../test/integ.customCloudfrontLoggingBucket.ts | 2 +- .../aws-cloudfront-apigateway-lambda/test/integ.no-arguments.ts | 2 +- .../test/integ.override-behavior.ts | 2 +- .../test/test.cloudfront-apigateway-lambda.test.ts | 2 +- .../aws-cloudfront-apigateway/lib/index.ts | 2 +- .../test/integ.customCloudfrontLoggingBucket.ts | 2 +- .../aws-cloudfront-apigateway/test/integ.no-arguments.ts | 2 +- .../test/test.cloudfront-apigateway.test.ts | 2 +- .../aws-cloudfront-mediastore/lib/index.ts | 2 +- .../test/cloudfront-mediastore.test.ts | 2 +- .../test/integ.customCloudFrontLoggingBucket.ts | 2 +- .../aws-cloudfront-mediastore/test/integ.default.ts | 2 +- .../aws-cloudfront-mediastore/test/integ.existingContainer.ts | 2 +- .../aws-cloudfront-mediastore/test/integ.overrideProperties.ts | 2 +- .../test/integ.withoutHttpSecurityHeaders.ts | 2 +- .../@aws-solutions-constructs/aws-cloudfront-s3/lib/index.ts | 2 +- .../aws-cloudfront-s3/test/integ.custom-originPath.ts | 2 +- .../aws-cloudfront-s3/test/integ.custom-security-headers.ts | 2 +- .../test/integ.customCloudFrontLoggingBucket.ts | 2 +- .../aws-cloudfront-s3/test/integ.customLoggingBucket.ts | 2 +- .../aws-cloudfront-s3/test/integ.existing-bucket.ts | 2 +- .../aws-cloudfront-s3/test/integ.no-arguments.ts | 2 +- .../aws-cloudfront-s3/test/integ.no-security-headers.ts | 2 +- .../aws-cloudfront-s3/test/test.cloudfront-s3.test.ts | 2 +- .../aws-cognito-apigateway-lambda/lib/index.ts | 2 +- .../aws-cognito-apigateway-lambda/test/integ.no-arguments.ts | 2 +- .../test/test.cognito-apigateway-lambda.test.ts | 2 +- .../lib/index.ts | 2 +- .../test/dynamodb-stream-lambda-elasticsearch-kibana.test.ts | 2 +- .../test/integ.no-arguments.ts | 2 +- .../aws-dynamodb-stream-lambda/lib/index.ts | 2 +- .../test/dynamodb-stream-lambda.test.ts | 2 +- .../aws-dynamodb-stream-lambda/test/integ.existing-table.ts | 2 +- .../aws-dynamodb-stream-lambda/test/integ.no-arguments.ts | 2 +- .../lib/index.ts | 2 +- .../test/dynamodbstreams-lambda-elasticsearch-kibana.test.ts | 2 +- .../test/integ.no-arguments.ts | 2 +- .../aws-dynamodbstreams-lambda/lib/index.ts | 2 +- .../test/dynamodbstreams-lambda.test.ts | 2 +- .../aws-dynamodbstreams-lambda/test/integ.existing-table.ts | 2 +- .../aws-dynamodbstreams-lambda/test/integ.no-arguments.ts | 2 +- .../aws-eventbridge-kinesisfirehose-s3/lib/index.ts | 2 +- .../test/eventbridge-kinesisfirehose-s3.test.ts | 2 +- .../test/integ.customLoggingBucket.ts | 2 +- .../integ.eventbridge-kinesisfirehose-s3-existing-eventbus.ts | 2 +- .../test/integ.eventbridge-kinesisfirehose-s3-new-eventbus.ts | 2 +- .../test/integ.eventbridge-kinesisfirehose-s3-no-arguments.ts | 2 +- .../aws-eventbridge-kinesisstreams/lib/index.ts | 2 +- .../test/eventbridge-kinesisstreams.test.ts | 2 +- .../test/integ.eventbridge-kinesisstreams-existing-eventbus.ts | 2 +- .../test/integ.eventbridge-kinesisstreams-existing.ts | 2 +- .../test/integ.eventbridge-kinesisstreams-new-eventbus.ts | 2 +- .../test/integ.eventbridge-kinesisstreams-no-arguments.ts | 2 +- .../aws-eventbridge-lambda/lib/index.ts | 2 +- .../aws-eventbridge-lambda/test/eventbridge-lambda.test.ts | 2 +- .../test/integ.eventbridge-existing-eventbus.ts | 2 +- .../test/integ.eventbridge-new-eventbus.ts | 2 +- .../test/integ.eventbridge-no-argument.ts | 2 +- .../@aws-solutions-constructs/aws-eventbridge-sns/lib/index.ts | 2 +- .../aws-eventbridge-sns/test/eventbridge-sns-topic.test.ts | 2 +- .../aws-eventbridge-sns/test/integ.exist-bus.ts | 2 +- .../aws-eventbridge-sns/test/integ.new-bus.ts | 2 +- .../aws-eventbridge-sns/test/integ.no-arg.ts | 2 +- .../@aws-solutions-constructs/aws-eventbridge-sqs/lib/index.ts | 2 +- .../aws-eventbridge-sqs/test/eventbridge-sqs-queue.test.ts | 2 +- .../aws-eventbridge-sqs/test/integ.exist-bus.ts | 2 +- .../aws-eventbridge-sqs/test/integ.exist-queue.ts | 2 +- .../aws-eventbridge-sqs/test/integ.new-bus.ts | 2 +- .../aws-eventbridge-sqs/test/integ.no-arg.ts | 2 +- .../aws-eventbridge-stepfunctions/lib/index.ts | 2 +- .../test/eventbridge-stepfunctions.test.ts | 2 +- .../test/integ.eventbridge-stepfunctions-existing-eventbus.ts | 2 +- .../test/integ.eventbridge-stepfunctions-new-eventbus.ts | 2 +- .../test/integ.eventbridge-stepfunctions-no-argument.ts | 2 +- .../test/integ.eventbridge-stepfunctions-with-lambda.ts | 2 +- .../aws-events-rule-kinesisfirehose-s3/lib/index.ts | 2 +- .../test/events-rule-kinesisfirehose-s3.test.ts | 2 +- .../test/integ.customLoggingBucket.ts | 2 +- .../integ.events-rule-kinesisfirehose-s3-existing-eventbus.ts | 2 +- .../test/integ.events-rule-kinesisfirehose-s3-new-eventbus.ts | 2 +- .../test/integ.events-rule-kinesisfirehose-s3-no-arguments.ts | 2 +- .../aws-events-rule-kinesisstreams/lib/index.ts | 2 +- .../test/events-rule-kinesisstreams.test.ts | 2 +- .../test/integ.events-rule-kinesisstreams-existing-eventbus.ts | 2 +- .../test/integ.events-rule-kinesisstreams-existing.ts | 2 +- .../test/integ.events-rule-kinesisstreams-new-eventbus.ts | 2 +- .../test/integ.events-rule-kinesisstreams-no-arguments.ts | 2 +- .../aws-events-rule-lambda/lib/index.ts | 2 +- .../aws-events-rule-lambda/test/events-rule-lambda.test.ts | 2 +- .../test/integ.events-rule-no-argument.ts | 2 +- .../test/integ.eventsrule-existing-eventbus.ts | 2 +- .../test/integ.eventsrule-new-eventbus.ts | 2 +- .../@aws-solutions-constructs/aws-events-rule-sns/lib/index.ts | 2 +- .../aws-events-rule-sns/test/events-rule-sns-topic.test.ts | 2 +- .../aws-events-rule-sns/test/integ.exist-bus.ts | 2 +- .../aws-events-rule-sns/test/integ.new-bus.ts | 2 +- .../aws-events-rule-sns/test/integ.no-arg.ts | 2 +- .../@aws-solutions-constructs/aws-events-rule-sqs/lib/index.ts | 2 +- .../aws-events-rule-sqs/test/events-rule-sqs-queue.test.ts | 2 +- .../aws-events-rule-sqs/test/integ.exist-bus.ts | 2 +- .../aws-events-rule-sqs/test/integ.exist-queue.ts | 2 +- .../aws-events-rule-sqs/test/integ.new-bus.ts | 2 +- .../aws-events-rule-sqs/test/integ.no-arg.ts | 2 +- .../aws-events-rule-step-function/lib/index.ts | 2 +- .../test/events-rule-step-function.test.ts | 2 +- .../test/integ.events-rule-step-function-no-argument.ts | 2 +- .../test/integ.events-rule-step-function-with-lambda.ts | 2 +- .../test/integ.events-rule-stepfunctions-existing-eventbus.ts | 2 +- .../test/integ.events-rule-stepfunctions-new-eventbus.ts | 2 +- .../aws-iot-kinesisfirehose-s3/lib/index.ts | 2 +- .../test/integ.customLoggingBucket.ts | 2 +- .../aws-iot-kinesisfirehose-s3/test/integ.no-arguments.ts | 2 +- .../aws-iot-kinesisfirehose-s3/test/integ.noLoggingBucket.ts | 2 +- .../test/test.iot-kinesisfirehose-s3.test.ts | 2 +- .../aws-iot-kinesisstreams/lib/index.ts | 2 +- .../aws-iot-kinesisstreams/test/integ.existing-kinesisstream.ts | 2 +- .../aws-iot-kinesisstreams/test/integ.new-kinesisstream.ts | 2 +- .../aws-iot-kinesisstreams/test/integ.no-arguments.ts | 2 +- .../aws-iot-kinesisstreams/test/test.iot-kinesisstreams.test.ts | 2 +- .../aws-iot-lambda-dynamodb/lib/index.ts | 2 +- .../aws-iot-lambda-dynamodb/test/integ.iot-lambda-dynamodb.ts | 2 +- .../aws-iot-lambda-dynamodb/test/iot-lambda-dynamodb.test.ts | 2 +- .../@aws-solutions-constructs/aws-iot-lambda/lib/index.ts | 2 +- .../aws-iot-lambda/test/integ.iot-lambda-new-func.ts | 2 +- .../aws-iot-lambda/test/integ.iot-lambda-use-existing-func.ts | 2 +- .../aws-iot-lambda/test/iot-lambda.test.ts | 2 +- .../patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts | 2 +- .../aws-iot-s3/test/integ.iot-s3-defaultprops.ts | 2 +- .../aws-iot-s3/test/integ.iot-s3-existing-bucket.ts | 2 +- .../aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts | 2 +- .../@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts | 2 +- .../patterns/@aws-solutions-constructs/aws-iot-sqs/lib/index.ts | 2 +- .../aws-iot-sqs/test/integ.custom-max-receive-count.ts | 2 +- .../aws-iot-sqs/test/integ.dead-letter-queue-off.ts | 2 +- .../aws-iot-sqs/test/integ.default-arguments.ts | 2 +- .../aws-iot-sqs/test/integ.existing-queue.ts | 2 +- .../aws-iot-sqs/test/integ.use-kms-key-props.ts | 2 +- .../aws-iot-sqs/test/integ.use-queue-props.ts | 2 +- .../aws-iot-sqs/test/integ.with-existing-key.ts | 2 +- .../aws-iot-sqs/test/integ.without-create-kms-key.ts | 2 +- .../@aws-solutions-constructs/aws-iot-sqs/test/iot-sqs.test.ts | 2 +- .../aws-kinesisfirehose-s3-and-kinesisanalytics/lib/index.ts | 2 +- .../test/integ.customLoggingBucket.ts | 2 +- .../test/integ.no-arguments.ts | 2 +- .../test/integ.noLoggingBucket.ts | 2 +- .../test/test.kinesisfirehose-analytics-s3.test.ts | 2 +- .../aws-kinesisfirehose-s3/lib/index.ts | 2 +- .../aws-kinesisfirehose-s3/test/integ.customLoggingBucket.ts | 2 +- .../aws-kinesisfirehose-s3/test/integ.no-arguments.ts | 2 +- .../aws-kinesisfirehose-s3/test/integ.noLoggingBucket.ts | 2 +- .../aws-kinesisfirehose-s3/test/integ.pre-existing-bucket.ts | 2 +- .../test/integ.pre-existing-logging-bucket.ts | 2 +- .../aws-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts | 2 +- .../aws-kinesisstreams-gluejob/lib/index.ts | 2 +- .../aws-kinesisstreams-gluejob/test/integ.existing-job.ts | 2 +- .../aws-kinesisstreams-gluejob/test/integ.no-arguments.ts | 2 +- .../test/test.kinesisstream-gluejob.test.ts | 2 +- .../aws-kinesisstreams-kinesisfirehose-s3/lib/index.ts | 2 +- .../test/integ.customLoggingBucket.ts | 2 +- .../test/integ.existing-bucket.ts | 2 +- .../test/integ.existing-logging-bucket.ts | 2 +- .../test/integ.existingStreamObj.ts | 2 +- .../test/integ.no-arguments.ts | 2 +- .../test/test.kinesisfirehose-s3.test.ts | 2 +- .../aws-kinesisstreams-lambda/lib/index.ts | 2 +- .../aws-kinesisstreams-lambda/test/integ.existing.ts | 2 +- .../aws-kinesisstreams-lambda/test/integ.no-arguments.ts | 2 +- .../test/test.kinesisstreams-lambda.test.ts | 2 +- .../@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.ts | 2 +- .../aws-lambda-dynamodb/test/integ.add-secondary-index.ts | 2 +- .../test/integ.deployFunctionWithExistingVpc.ts | 2 +- .../aws-lambda-dynamodb/test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-dynamodb/test/integ.no-arguments.ts | 2 +- .../aws-lambda-dynamodb/test/integ.set-billing-mode.ts | 2 +- .../aws-lambda-dynamodb/test/integ.use-existing-func.ts | 2 +- .../aws-lambda-dynamodb/test/lambda-dynamodb.test.ts | 2 +- .../aws-lambda-elasticsearch-kibana/lib/index.ts | 2 +- .../test/integ.domain-arguments.ts | 2 +- .../aws-lambda-elasticsearch-kibana/test/integ.no-arguments.ts | 2 +- .../test/lambda-elasticsearch-kibana.test.ts | 2 +- .../aws-lambda-eventbridge/lib/index.ts | 2 +- .../aws-lambda-eventbridge/test/aws-lambda-eventbridge.test.ts | 2 +- .../aws-lambda-eventbridge/test/integ.deployFunction.ts | 2 +- .../test/integ.deployFunctionWithNewEventBus.ts | 2 +- .../aws-lambda-eventbridge/test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-eventbridge/test/integ.existingEventBus.ts | 2 +- .../aws-lambda-eventbridge/test/integ.existingFunction.ts | 2 +- .../@aws-solutions-constructs/aws-lambda-s3/lib/index.ts | 2 +- .../aws-lambda-s3/test/integ.customLoggingBucket.ts | 2 +- .../aws-lambda-s3/test/integ.deployFunction.ts | 2 +- .../aws-lambda-s3/test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-s3/test/integ.existingFunction.ts | 2 +- .../aws-lambda-s3/test/integ.pre-existing-bucket.ts | 2 +- .../aws-lambda-s3/test/lambda-s3.test.ts | 2 +- .../aws-lambda-sagemakerendpoint/lib/index.ts | 2 +- .../test/aws-lambda-sagemakerendpoint.test.ts | 2 +- .../aws-lambda-sagemakerendpoint/test/integ.deployFunction.ts | 2 +- .../aws-lambda-sagemakerendpoint/test/integ.existingFunction.ts | 2 +- .../test/integ.existingSageMakerEndpoint.ts | 2 +- .../aws-lambda-sagemakerendpoint/test/test-helper.ts | 2 +- .../aws-lambda-secretsmanager/lib/index.ts | 2 +- .../aws-lambda-secretsmanager/test/integ.deployFunction.ts | 2 +- .../test/integ.deployFunctionWithExistingVpc.ts | 2 +- .../test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-secretsmanager/test/integ.existingFunction.ts | 2 +- .../test/lambda-secretsmanager.test.ts | 2 +- .../@aws-solutions-constructs/aws-lambda-sns/lib/index.ts | 2 +- .../aws-lambda-sns/test/integ.deployFunction.ts | 2 +- .../aws-lambda-sns/test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-sns/test/integ.existingFunction.ts | 2 +- .../aws-lambda-sns/test/lambda-sns.test.ts | 2 +- .../aws-lambda-sqs-lambda/lib/index.ts | 2 +- .../aws-lambda-sqs-lambda/test/integ.defaultDeployment.ts | 2 +- .../test/integ.deployProducerFunctionWithVpc.ts | 2 +- .../test/integ.existingConsumerFunction.ts | 2 +- .../test/integ.existingProducerFunction.ts | 2 +- .../aws-lambda-sqs-lambda/test/integ.existingQueue.ts | 2 +- .../aws-lambda-sqs-lambda/test/lambda-sqs-lambda.test.ts | 2 +- .../@aws-solutions-constructs/aws-lambda-sqs/lib/index.ts | 2 +- .../aws-lambda-sqs/test/integ.deployFunction.ts | 2 +- .../aws-lambda-sqs/test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-sqs/test/integ.existingFunction.ts | 2 +- .../aws-lambda-sqs/test/lambda-sqs.test.ts | 2 +- .../aws-lambda-ssmstringparameter/lib/index.ts | 2 +- .../aws-lambda-ssmstringparameter/test/integ.deployFunction.ts | 2 +- .../test/integ.deployFunctionWithExistingVpc.ts | 2 +- .../test/integ.deployFunctionWithVpc.ts | 2 +- .../test/integ.existingFunction.ts | 2 +- .../test/integ.existingStringParameter.ts | 2 +- .../test/lambda-ssmstringparameter.test.ts | 2 +- .../aws-lambda-step-function/lib/index.ts | 2 +- .../aws-lambda-step-function/test/integ.deploy-lambda.ts | 2 +- .../test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-step-function/test/integ.existing-function.ts | 2 +- .../aws-lambda-step-function/test/lambda-step-function.test.ts | 2 +- .../aws-lambda-stepfunctions/lib/index.ts | 2 +- .../aws-lambda-stepfunctions/test/integ.deploy-lambda.ts | 2 +- .../test/integ.deployFunctionWithVpc.ts | 2 +- .../aws-lambda-stepfunctions/test/integ.existing-function.ts | 2 +- .../aws-lambda-stepfunctions/test/lambda-stepfunctions.test.ts | 2 +- .../@aws-solutions-constructs/aws-route53-alb/lib/index.ts | 2 +- .../aws-route53-alb/test/integ.deployPrivateApi.ts | 2 +- .../aws-route53-alb/test/integ.deployPrivateApiExistingZone.ts | 2 +- .../aws-route53-alb/test/integ.deployPublicApiExistingAlb.ts | 2 +- .../aws-route53-alb/test/integ.deployPublicApiNewAlb.ts | 2 +- .../aws-route53-alb/test/integ.deployWithoutLogging.ts | 2 +- .../aws-route53-alb/test/route53-alb.test.ts | 2 +- .../@aws-solutions-constructs/aws-s3-lambda/lib/index.ts | 2 +- .../aws-s3-lambda/test/integ.existing-s3-bucket.ts | 2 +- .../aws-s3-lambda/test/integ.no-arguments.ts | 2 +- .../aws-s3-lambda/test/s3-lambda.test.ts | 2 +- .../patterns/@aws-solutions-constructs/aws-s3-sqs/lib/index.ts | 2 +- .../aws-s3-sqs/test/integ.creatingNewQueue.ts | 2 +- .../aws-s3-sqs/test/integ.customLoggingBucket.ts | 2 +- .../aws-s3-sqs/test/integ.existingQueue.ts | 2 +- .../aws-s3-sqs/test/integ.existingS3Bucket.ts | 2 +- .../aws-s3-sqs/test/integ.noArguments.ts | 2 +- .../aws-s3-sqs/test/test.s3-sqs.test.ts | 2 +- .../@aws-solutions-constructs/aws-s3-step-function/lib/index.ts | 2 +- .../aws-s3-step-function/test/integ.customLoggingBucket.ts | 2 +- .../aws-s3-step-function/test/integ.pre-existing-bucket.ts | 2 +- .../test/integ.s3-step-function-no-argument.ts | 2 +- .../aws-s3-step-function/test/s3-step-function.test.ts | 2 +- .../@aws-solutions-constructs/aws-s3-stepfunctions/lib/index.ts | 2 +- .../aws-s3-stepfunctions/test/integ.customLoggingBucket.ts | 2 +- .../aws-s3-stepfunctions/test/integ.pre-existing-bucket.ts | 2 +- .../test/integ.s3-stepfunctions-no-argument.ts | 2 +- .../aws-s3-stepfunctions/test/s3-stepfunctions.test.ts | 2 +- .../@aws-solutions-constructs/aws-sns-lambda/lib/index.ts | 2 +- .../aws-sns-lambda/test/integ.no-arguments.ts | 2 +- .../aws-sns-lambda/test/sns-lambda.test.ts | 2 +- .../patterns/@aws-solutions-constructs/aws-sns-sqs/lib/index.ts | 2 +- .../aws-sns-sqs/test/integ.deployFIFOQueue.ts | 2 +- .../aws-sns-sqs/test/integ.deployStandardQueue.ts | 2 +- .../aws-sns-sqs/test/integ.existing-kms-key.ts | 2 +- .../aws-sns-sqs/test/integ.no-arguments.ts | 2 +- .../aws-sns-sqs/test/integ.sns-managed-kms-key.ts | 2 +- .../@aws-solutions-constructs/aws-sns-sqs/test/sns-sqs.test.ts | 2 +- .../@aws-solutions-constructs/aws-sqs-lambda/lib/index.ts | 2 +- .../aws-sqs-lambda/test/integ.deployFifoQueue.ts | 2 +- .../aws-sqs-lambda/test/integ.deployFunction.ts | 2 +- .../aws-sqs-lambda/test/integ.existingFunction.ts | 2 +- .../aws-sqs-lambda/test/test.sqs-lambda.test.ts | 2 +- .../@aws-solutions-constructs/aws-wafwebacl-alb/lib/index.ts | 2 +- .../aws-wafwebacl-alb/test/integ.no-arguments.ts | 2 +- .../aws-wafwebacl-alb/test/test.wafwebacl-alb.test.ts | 2 +- .../aws-wafwebacl-apigateway/lib/index.ts | 2 +- .../test/integ.existing-waf-to-multiple-gateways.ts | 2 +- .../aws-wafwebacl-apigateway/test/integ.no-arguments.ts | 2 +- .../test/integ.wafwebacl-apigateway-dynamodb.ts | 2 +- .../test/integ.wafwebacl-apigateway-iot.ts | 2 +- .../test/integ.wafwebacl-apigateway-kinesisstreams.ts | 2 +- .../test/integ.wafwebacl-apigateway-sagemakerendpoint.ts | 2 +- .../test/integ.wafwebacl-apigateway-sqs.ts | 2 +- .../test/test.wafwebacl-apigateway.test.ts | 2 +- .../aws-wafwebacl-cloudfront/lib/index.ts | 2 +- .../test/integ.existing-waf-to-multiple-cloudfront.ts | 2 +- .../aws-wafwebacl-cloudfront/test/integ.no-arguments.ts | 2 +- .../test/integ.wafwebacl-cloudfront-apigateway-lambda.ts | 2 +- .../test/integ.wafwebacl-cloudfront-mediastore.ts | 2 +- .../test/test.wafwebacl-cloudfront.test.ts | 2 +- source/patterns/@aws-solutions-constructs/core/index.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/alb-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/alb-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/apigateway-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/apigateway-helper.ts | 2 +- .../core/lib/cloudfront-distribution-defaults.ts | 2 +- .../core/lib/cloudfront-distribution-helper.ts | 2 +- .../core/lib/cloudwatch-log-group-defaults.ts | 2 +- .../core/lib/cloudwatch-log-group-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/cognito-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/cognito-helper.ts | 2 +- .../core/lib/dynamodb-table-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/dynamodb-table-helper.ts | 2 +- .../core/lib/elasticsearch-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/elasticsearch-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/eventbridge-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/events-rule-defaults.ts | 2 +- .../core/lib/glue-database-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/glue-database-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/glue-job-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/glue-job-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/glue-table-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/glue-table-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/input-validation.ts | 2 +- .../core/lib/iot-topic-rule-defaults.ts | 2 +- .../core/lib/kinesis-analytics-defaults.ts | 2 +- .../core/lib/kinesis-analytics-helper.ts | 2 +- .../core/lib/kinesis-firehose-s3-defaults.ts | 2 +- .../core/lib/kinesis-streams-defaults.ts | 2 +- .../core/lib/kinesis-streams-helper.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/kms-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/kms-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/lambda-defaults.ts | 2 +- .../core/lib/lambda-event-source-mapping-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/lambda-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/mediastore-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/mediastore-helper.ts | 2 +- .../core/lib/override-warning-service.ts | 2 +- .../@aws-solutions-constructs/core/lib/s3-bucket-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/s3-bucket-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/sagemaker-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/sagemaker-helper.ts | 2 +- .../core/lib/secretsmanager-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/secretsmanager-helper.ts | 2 +- .../@aws-solutions-constructs/core/lib/security-group-helper.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/sns-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/sns-helper.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/sqs-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/sqs-helper.ts | 2 +- .../core/lib/ssm-string-parameter-helper.ts | 2 +- .../core/lib/step-function-defaults.ts | 2 +- .../@aws-solutions-constructs/core/lib/step-function-helper.ts | 2 +- source/patterns/@aws-solutions-constructs/core/lib/utils.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/vpc-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/vpc-helper.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/waf-defaults.ts | 2 +- .../patterns/@aws-solutions-constructs/core/lib/waf-helper.ts | 2 +- .../@aws-solutions-constructs/core/test/alb-helper.test.ts | 2 +- .../core/test/apigateway-helper.test.ts | 2 +- .../test/cloudfront-distribution-api-gateway-helper.test.ts | 2 +- .../core/test/cloudfront-distribution-mediastore-helper.test.ts | 2 +- .../core/test/cloudfront-distribution-s3-helper.test.ts | 2 +- .../core/test/cloudwatch-log-group-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/congnito-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/dynamo-table.test.ts | 2 +- .../core/test/elasticsearch-helper.test.ts | 2 +- .../core/test/eventbridge-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/events-rule.test.ts | 2 +- .../@aws-solutions-constructs/core/test/glue-job-helper.test.ts | 2 +- .../core/test/glue-table-helper.test.ts | 2 +- .../core/test/input-validation.test.ts | 2 +- .../@aws-solutions-constructs/core/test/iot-rule.test.ts | 2 +- .../core/test/kinesis-analytics.test.ts | 2 +- .../core/test/kinesis-firehose-s3-defaults.test.ts | 2 +- .../core/test/kinesis-streams-defaults.test.ts | 2 +- .../core/test/kinesis-streams-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/kms-helper.test.ts | 2 +- .../core/test/lambda-event-source.test.ts | 2 +- .../@aws-solutions-constructs/core/test/lambda-helper.test.ts | 2 +- .../core/test/mediastore-helper.test.ts | 2 +- .../core/test/override-warning-service.test.ts | 2 +- .../core/test/s3-bucket-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/s3-bucket.test.ts | 2 +- .../core/test/sagemaker-helper.test.ts | 2 +- .../core/test/secretsmanager-helper.test.ts | 2 +- .../core/test/security-group-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/sns-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/sqs-helper.test.ts | 2 +- .../core/test/ssm-string-parameter-helper.test.ts | 2 +- .../core/test/step-function-helper.test.ts | 2 +- .../patterns/@aws-solutions-constructs/core/test/test-helper.ts | 2 +- .../patterns/@aws-solutions-constructs/core/test/utils.test.ts | 2 +- .../@aws-solutions-constructs/core/test/vpc-helper.test.ts | 2 +- .../@aws-solutions-constructs/core/test/waf-helper.test.ts | 2 +- source/patterns/@aws-solutions-constructs/license-header.js | 2 +- source/use_cases/aws-custom-glue-etl/bin/aws-custom-glue-etl.ts | 2 +- .../aws-custom-glue-etl/lib/aws-custom-glue-etl-stack.ts | 2 +- .../aws-custom-glue-etl/test/aws-custom-glue-etl.test.ts | 2 +- source/use_cases/aws-custom-glue-etl/test/integ.gluejob.ts | 2 +- .../bin/restaurant-management-system-demo.ts | 2 +- .../aws-restaurant-management-demo/lib/existing-resources.ts | 2 +- .../aws-restaurant-management-demo/lib/kitchen-staff-stack.ts | 2 +- .../aws-restaurant-management-demo/lib/manager-stack.ts | 2 +- .../aws-restaurant-management-demo/lib/service-staff-stack.ts | 2 +- .../aws-restaurant-management-demo/lib/shared-stack.ts | 2 +- .../test/existingResourcesStack.test.ts | 2 +- .../test/integ.basic-deployment.ts | 2 +- .../test/kitchenStaffStack.test.ts | 2 +- .../aws-restaurant-management-demo/test/managerStack.test.ts | 2 +- .../test/serviceStaffStack.test.ts | 2 +- .../aws-restaurant-management-demo/test/sharedStack.test.ts | 2 +- .../use_cases/aws-s3-static-website/bin/s3-static-site-app.ts | 2 +- .../use_cases/aws-s3-static-website/lib/s3-static-site-stack.ts | 2 +- .../aws-s3-static-website/test/integ.basic-deployment.ts | 2 +- .../aws-s3-static-website/test/s3-static-site-stack.test.ts | 2 +- source/use_cases/aws-serverless-image-handler/lib/index.ts | 2 +- .../aws-serverless-image-handler/test/integ.basic-deployment.ts | 2 +- .../test/test.serverless-image-handler.test.ts | 2 +- .../use_cases/aws-serverless-web-app/bin/serverless-web-app.ts | 2 +- .../aws-serverless-web-app/lib/s3-static-site-stack.ts | 2 +- .../aws-serverless-web-app/lib/serverless-backend-stack.ts | 2 +- .../test/integ.001-s3-static-website-deployment.ts | 2 +- .../aws-serverless-web-app/test/integ.002-backend-deployment.ts | 2 +- .../aws-serverless-web-app/test/s3-static-site-stack.test.ts | 2 +- .../test/serverless-backend-stack.test.ts | 2 +- 460 files changed, 460 insertions(+), 460 deletions(-) diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/lib/index.ts index d2d989086..5b4bff9a8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/alb-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/alb-lambda.test.ts index b51fb6123..08b4ec73f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/alb-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/alb-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiExistingResources.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiExistingResources.ts index f2b1efb7e..6f8e3c42c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiExistingResources.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiExistingResources.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiNewResources.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiNewResources.ts index 28ccb2992..c60f8e863 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiNewResources.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.privateApiNewResources.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiExistingResources.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiExistingResources.ts index 6317a32fe..a4fd8acbd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiExistingResources.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiExistingResources.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiNewResources.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiNewResources.ts index dcc46da12..ced6d05b1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiNewResources.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.publicApiNewResources.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.twoTargets.ts b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.twoTargets.ts index 302c0186b..6b2c07612 100644 --- a/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.twoTargets.ts +++ b/source/patterns/@aws-solutions-constructs/aws-alb-lambda/test/integ.twoTargets.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/lib/index.ts index b891136a8..e2e7549e6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/apigateway-dynamodb.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/apigateway-dynamodb.test.ts index 61e04369a..ebd107116 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/apigateway-dynamodb.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/apigateway-dynamodb.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-CRUD.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-CRUD.ts index 51aaa2457..c040022ee 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-CRUD.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-CRUD.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-existing-table.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-existing-table.ts index 78e085bc0..a48e46b7b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-existing-table.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.apigateway-dynamodb-existing-table.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.no-arguments.ts index 7e9f7445d..50c18d1f2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-dynamodb/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/lib/index.ts index bacfba624..d7ff0dea8 100755 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.defaultParams.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.defaultParams.ts index 8d8525a01..4248e560f 100755 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.defaultParams.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.defaultParams.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.overrideParams.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.overrideParams.ts index d54a10691..d6713f692 100755 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.overrideParams.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.overrideParams.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.override_auth_api_keys.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.override_auth_api_keys.ts index 93af46df1..b7b4b30c0 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.override_auth_api_keys.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/integ.override_auth_api_keys.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/test.apigateway-iot.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/test.apigateway-iot.test.ts index 25326c221..e55286413 100755 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/test.apigateway-iot.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-iot/test/test.apigateway-iot.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/lib/index.ts index 9cbc11443..0848baf31 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/apigateway-kinesis.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/apigateway-kinesis.test.ts index 421d1881a..91125d7e6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/apigateway-kinesis.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/apigateway-kinesis.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.apigateway-kinesis-overwrite.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.apigateway-kinesis-overwrite.ts index 715355b4f..15b425f34 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.apigateway-kinesis-overwrite.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.apigateway-kinesis-overwrite.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.no-arguments.ts index 77ce606cc..a48f55afb 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-kinesisstreams/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/lib/index.ts index 244e29f15..4d6e5b6b7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.deployFunction.ts index 5f07f0e49..d856e617e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.existingFunction.ts index fd7fb176c..810c8153f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/test.apigateway-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/test.apigateway-lambda.test.ts index 7c8e18ea0..7cc117fdd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/test.apigateway-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-lambda/test/test.apigateway-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/lib/index.ts index 0ed559f24..a4a11ab41 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/apigateway-sagemakerendpoint.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/apigateway-sagemakerendpoint.test.ts index 03dbcd5e9..791e84b9d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/apigateway-sagemakerendpoint.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/apigateway-sagemakerendpoint.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.apigateway-sagemakerendpoint-overwrite.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.apigateway-sagemakerendpoint-overwrite.ts index c39ca4c51..0a1a766b7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.apigateway-sagemakerendpoint-overwrite.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.apigateway-sagemakerendpoint-overwrite.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.no-overwrite.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.no-overwrite.ts index 897198919..941c32145 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.no-overwrite.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sagemakerendpoint/test/integ.no-overwrite.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/lib/index.ts index 48d851f66..251e1fad2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/apigateway-sqs.test.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/apigateway-sqs.test.ts index ecef377bf..15bab1ed8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/apigateway-sqs.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/apigateway-sqs.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.apigateway-sqs-crud.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.apigateway-sqs-crud.ts index d37b1e3c0..b3f499766 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.apigateway-sqs-crud.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.apigateway-sqs-crud.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.no-arguments.ts index b1d66c0d0..51fc997cf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-apigateway-sqs/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/lib/index.ts index d4b55a100..0902fac59 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.customCloudfrontLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.customCloudfrontLoggingBucket.ts index 462415c11..543e1e27b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.customCloudfrontLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.customCloudfrontLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.no-arguments.ts index 34b9f6eaf..9b845802c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.override-behavior.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.override-behavior.ts index 968c02078..55e8c6a8b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.override-behavior.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/integ.override-behavior.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/test.cloudfront-apigateway-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/test.cloudfront-apigateway-lambda.test.ts index 7104419ad..8f6185485 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/test.cloudfront-apigateway-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway-lambda/test/test.cloudfront-apigateway-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/lib/index.ts index bae337ef6..457e635d8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.customCloudfrontLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.customCloudfrontLoggingBucket.ts index b15f7dbbc..f3571ca26 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.customCloudfrontLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.customCloudfrontLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.no-arguments.ts index e44a9197c..786076f57 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/test.cloudfront-apigateway.test.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/test.cloudfront-apigateway.test.ts index 5fbf332db..ded0163fe 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/test.cloudfront-apigateway.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-apigateway/test/test.cloudfront-apigateway.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/lib/index.ts index f66e11a26..8d466ba76 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/cloudfront-mediastore.test.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/cloudfront-mediastore.test.ts index de0966abb..713cd9f93 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/cloudfront-mediastore.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/cloudfront-mediastore.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.customCloudFrontLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.customCloudFrontLoggingBucket.ts index ee3bc4055..f0546591c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.customCloudFrontLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.customCloudFrontLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.default.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.default.ts index 6dfd29d1b..a39fc4fc9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.default.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.default.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.existingContainer.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.existingContainer.ts index c223e7d07..23145340b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.existingContainer.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.existingContainer.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.overrideProperties.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.overrideProperties.ts index 76bf346ce..8090846f2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.overrideProperties.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.overrideProperties.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.withoutHttpSecurityHeaders.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.withoutHttpSecurityHeaders.ts index 812320fe2..4ea5e5462 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.withoutHttpSecurityHeaders.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-mediastore/test/integ.withoutHttpSecurityHeaders.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/lib/index.ts index 0ec38fa3c..8ff788e57 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-originPath.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-originPath.ts index 713c0d012..8d1a09d95 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-originPath.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-originPath.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-security-headers.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-security-headers.ts index 53a1b54ef..c36abfbe7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-security-headers.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.custom-security-headers.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customCloudFrontLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customCloudFrontLoggingBucket.ts index ef5bc7996..362d476dc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customCloudFrontLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customCloudFrontLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customLoggingBucket.ts index d3436d82e..e9ade8290 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.existing-bucket.ts index 09e5180b5..c507fca49 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-arguments.ts index 56d8f3ff8..fc766b58a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-security-headers.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-security-headers.ts index 2637f8089..ca4966148 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-security-headers.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/integ.no-security-headers.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/test.cloudfront-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/test.cloudfront-s3.test.ts index a99143fb7..96779cd24 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/test.cloudfront-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cloudfront-s3/test/test.cloudfront-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/lib/index.ts index d4f2d0fb2..61cf9f910 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/integ.no-arguments.ts index 4f595c83a..3387c98fc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/test.cognito-apigateway-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/test.cognito-apigateway-lambda.test.ts index 671929ccf..905a08f6a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/test.cognito-apigateway-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-cognito-apigateway-lambda/test/test.cognito-apigateway-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/lib/index.ts index 8b386ef85..802a0c4b8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/dynamodb-stream-lambda-elasticsearch-kibana.test.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/dynamodb-stream-lambda-elasticsearch-kibana.test.ts index d9c7c5c9b..13db7c670 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/dynamodb-stream-lambda-elasticsearch-kibana.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/dynamodb-stream-lambda-elasticsearch-kibana.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/integ.no-arguments.ts index 006db267e..966d57068 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda-elasticsearch-kibana/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/lib/index.ts index b2bf75f5b..c14264fa3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/dynamodb-stream-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/dynamodb-stream-lambda.test.ts index 8f5f9708a..a1ddf437e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/dynamodb-stream-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/dynamodb-stream-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.existing-table.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.existing-table.ts index feefc2a6e..323a71cf7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.existing-table.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.existing-table.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.no-arguments.ts index d640edebf..89e0981ed 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodb-stream-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/lib/index.ts index 72b57f69c..0f84794f6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/dynamodbstreams-lambda-elasticsearch-kibana.test.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/dynamodbstreams-lambda-elasticsearch-kibana.test.ts index c8afc5551..4b4a1e384 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/dynamodbstreams-lambda-elasticsearch-kibana.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/dynamodbstreams-lambda-elasticsearch-kibana.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/integ.no-arguments.ts index 8665697d3..83a56ef1a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda-elasticsearch-kibana/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/lib/index.ts index 15e607a74..8a781ef2b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/dynamodbstreams-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/dynamodbstreams-lambda.test.ts index e588e1027..25fce60cf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/dynamodbstreams-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/dynamodbstreams-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.existing-table.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.existing-table.ts index d909ba9c0..3e12c0fe9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.existing-table.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.existing-table.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.no-arguments.ts index 931144239..afc8dde31 100644 --- a/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-dynamodbstreams-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/lib/index.ts index d240150ff..1f925fc99 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/eventbridge-kinesisfirehose-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/eventbridge-kinesisfirehose-s3.test.ts index e100be6ae..ec34f72e0 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/eventbridge-kinesisfirehose-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/eventbridge-kinesisfirehose-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.customLoggingBucket.ts index b035a6a16..963cf3e47 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-existing-eventbus.ts index f4bca90be..f1b3413f3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-new-eventbus.ts index 7635e78b2..f2243a119 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-no-arguments.ts index d98324c9c..9bbf6065a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisfirehose-s3/test/integ.eventbridge-kinesisfirehose-s3-no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/lib/index.ts index ec4690c73..8a071b061 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/eventbridge-kinesisstreams.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/eventbridge-kinesisstreams.test.ts index 4d045a339..1d5c465dc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/eventbridge-kinesisstreams.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/eventbridge-kinesisstreams.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing-eventbus.ts index ab3833195..822cf6b42 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing.ts index 7a03906c0..fef310999 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-existing.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-new-eventbus.ts index 5e439705b..3849ae1b8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-no-arguments.ts index da32df75f..aaba7fbe8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-kinesisstreams/test/integ.eventbridge-kinesisstreams-no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/lib/index.ts index 969d3e1e8..ea704a4d8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/eventbridge-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/eventbridge-lambda.test.ts index 092bdeb62..652cbd034 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/eventbridge-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/eventbridge-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-existing-eventbus.ts index 2ff4e3a36..c2920d318 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-new-eventbus.ts index daf3b45c2..c0f4ac750 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-no-argument.ts index 4e5591e3a..2b7dbf405 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-lambda/test/integ.eventbridge-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/lib/index.ts index 44337862e..1a78b5ad4 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/eventbridge-sns-topic.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/eventbridge-sns-topic.test.ts index 574cc5c18..29534ce74 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/eventbridge-sns-topic.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/eventbridge-sns-topic.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.exist-bus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.exist-bus.ts index 56c0f85ba..bc0dabe3a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.exist-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.exist-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.new-bus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.new-bus.ts index 0a2ec57d4..cd58f0d2b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.new-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.new-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.no-arg.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.no-arg.ts index cf6401864..4c58d1c11 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.no-arg.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sns/test/integ.no-arg.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/lib/index.ts index 7c69305f7..c32819f15 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/eventbridge-sqs-queue.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/eventbridge-sqs-queue.test.ts index 685c4d2b5..ba15ac499 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/eventbridge-sqs-queue.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/eventbridge-sqs-queue.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-bus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-bus.ts index e4c5e1563..da1935976 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-queue.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-queue.ts index 861bcf79a..eda06e823 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-queue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.exist-queue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.new-bus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.new-bus.ts index a7aee1aaa..570ec2019 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.new-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.new-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.no-arg.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.no-arg.ts index 6db3c1485..6d1359ebc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.no-arg.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-sqs/test/integ.no-arg.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/lib/index.ts index 111adc6a3..e2f9db473 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/eventbridge-stepfunctions.test.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/eventbridge-stepfunctions.test.ts index ba8e5fd40..81271cccc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/eventbridge-stepfunctions.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/eventbridge-stepfunctions.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-existing-eventbus.ts index 5490052fd..28a6123a8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-new-eventbus.ts index 1080ae8d7..d4108d291 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-no-argument.ts index 76f99f09b..7bf64457f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-with-lambda.ts b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-with-lambda.ts index f9f86fc49..6e3117e8d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-with-lambda.ts +++ b/source/patterns/@aws-solutions-constructs/aws-eventbridge-stepfunctions/test/integ.eventbridge-stepfunctions-with-lambda.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/lib/index.ts index 839d028f3..06461b0ae 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/events-rule-kinesisfirehose-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/events-rule-kinesisfirehose-s3.test.ts index fc76cd671..af9e82f0b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/events-rule-kinesisfirehose-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/events-rule-kinesisfirehose-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.customLoggingBucket.ts index cebc498d8..1afb57bdf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-existing-eventbus.ts index 55f66f94a..952de12cc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-new-eventbus.ts index 2b604b798..1ac0be1a3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-no-arguments.ts index 09eedeef5..223d1f4c2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisfirehose-s3/test/integ.events-rule-kinesisfirehose-s3-no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/lib/index.ts index 048eabd7c..cc4c7a64a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/events-rule-kinesisstreams.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/events-rule-kinesisstreams.test.ts index ebec20aae..14fcde7ba 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/events-rule-kinesisstreams.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/events-rule-kinesisstreams.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing-eventbus.ts index 3d399b542..8d57efeca 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing.ts index 7e8754335..b8de033b6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-existing.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-new-eventbus.ts index c8ed2e9c6..832a70678 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-no-arguments.ts index 52f7990d6..69e22d04a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-kinesisstreams/test/integ.events-rule-kinesisstreams-no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/lib/index.ts index 7e1af790e..136ec208c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/events-rule-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/events-rule-lambda.test.ts index cb90dfac0..d78df0f99 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/events-rule-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/events-rule-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.events-rule-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.events-rule-no-argument.ts index 40e0b84db..f777172bd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.events-rule-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.events-rule-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-existing-eventbus.ts index ab1052b50..c985dc366 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-new-eventbus.ts index e9924d876..9dbaceceb 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-lambda/test/integ.eventsrule-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/lib/index.ts index a09e7a592..fbc14c2c6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/events-rule-sns-topic.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/events-rule-sns-topic.test.ts index 297afd7cd..4a2162085 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/events-rule-sns-topic.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/events-rule-sns-topic.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.exist-bus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.exist-bus.ts index 06b68991d..c10545388 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.exist-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.exist-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.new-bus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.new-bus.ts index b90d53b2b..acfcb25e5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.new-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.new-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.no-arg.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.no-arg.ts index b98895a51..c90fc5a60 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.no-arg.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sns/test/integ.no-arg.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/lib/index.ts index bda83e62f..552109065 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/events-rule-sqs-queue.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/events-rule-sqs-queue.test.ts index ad02910c4..4b26bc85b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/events-rule-sqs-queue.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/events-rule-sqs-queue.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-bus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-bus.ts index f10303661..93d524c30 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-queue.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-queue.ts index c326be34c..923c29eff 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-queue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.exist-queue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.new-bus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.new-bus.ts index f1f1fd111..f8c567421 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.new-bus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.new-bus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.no-arg.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.no-arg.ts index 00c2078f2..601c9edb1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.no-arg.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-sqs/test/integ.no-arg.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/lib/index.ts index ebaed5e22..3aacbea64 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/events-rule-step-function.test.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/events-rule-step-function.test.ts index a4c932851..0762d62f3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/events-rule-step-function.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/events-rule-step-function.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-no-argument.ts index 61e2d43d3..68a1f6aae 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-with-lambda.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-with-lambda.ts index 9e0b0981c..3b9e2ebaa 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-with-lambda.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-step-function-with-lambda.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-existing-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-existing-eventbus.ts index 82aed9b7d..89ca13f64 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-existing-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-existing-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-new-eventbus.ts b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-new-eventbus.ts index 18212c1e2..24263e9dc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-new-eventbus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-events-rule-step-function/test/integ.events-rule-stepfunctions-new-eventbus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/lib/index.ts index 4a2573510..b704ae0b5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.customLoggingBucket.ts index 9ba1a37c9..32de65298 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.no-arguments.ts index 0f851abdd..92c141bda 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.noLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.noLoggingBucket.ts index 15c2e384e..5e55697f0 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.noLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/integ.noLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/test.iot-kinesisfirehose-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/test.iot-kinesisfirehose-s3.test.ts index c35d6fb39..bdbd11cc1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/test.iot-kinesisfirehose-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisfirehose-s3/test/test.iot-kinesisfirehose-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/lib/index.ts index 0fcfcc593..48d058a2d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.existing-kinesisstream.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.existing-kinesisstream.ts index ef0eaaf2b..3b038f877 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.existing-kinesisstream.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.existing-kinesisstream.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.new-kinesisstream.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.new-kinesisstream.ts index 9d91c2c8f..59f66d359 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.new-kinesisstream.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.new-kinesisstream.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.no-arguments.ts index bcdc25a39..c56ea857f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/test.iot-kinesisstreams.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/test.iot-kinesisstreams.test.ts index 941f446dd..50c745370 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/test.iot-kinesisstreams.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-kinesisstreams/test/test.iot-kinesisstreams.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/lib/index.ts index b83803f36..545ec0192 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/integ.iot-lambda-dynamodb.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/integ.iot-lambda-dynamodb.ts index 92dff8a10..1b254df5e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/integ.iot-lambda-dynamodb.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/integ.iot-lambda-dynamodb.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/iot-lambda-dynamodb.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/iot-lambda-dynamodb.test.ts index 6a26b0288..82ba49439 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/iot-lambda-dynamodb.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda-dynamodb/test/iot-lambda-dynamodb.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/lib/index.ts index ac639e55e..2d8a57c43 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-new-func.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-new-func.ts index e96aece5e..e93dec580 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-new-func.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-new-func.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-use-existing-func.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-use-existing-func.ts index e08d8293c..939401577 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-use-existing-func.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/integ.iot-lambda-use-existing-func.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/iot-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/iot-lambda.test.ts index b2b7eb87c..2dac904a7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/iot-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-lambda/test/iot-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts index ea60586fa..87b808bdd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts index a043c263e..ce95c0dc6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-defaultprops.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts index 06e820aeb..655d56566 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts index 21375e6db..eb579cdb5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/integ.iot-s3-new-encrypted-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts index 433093095..bb0c276e4 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-s3/test/iot-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/lib/index.ts index a39aad845..7c31d0b27 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.custom-max-receive-count.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.custom-max-receive-count.ts index f8433a430..de197bef6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.custom-max-receive-count.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.custom-max-receive-count.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.dead-letter-queue-off.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.dead-letter-queue-off.ts index e60796628..c0bb9437b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.dead-letter-queue-off.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.dead-letter-queue-off.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.default-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.default-arguments.ts index 8ecac6ef6..11df57fc9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.default-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.default-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.existing-queue.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.existing-queue.ts index 5fb480e35..b74b486d2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.existing-queue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.existing-queue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-kms-key-props.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-kms-key-props.ts index a4abc382d..11ba0171a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-kms-key-props.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-kms-key-props.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-queue-props.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-queue-props.ts index 3088b009c..373e13998 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-queue-props.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.use-queue-props.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.with-existing-key.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.with-existing-key.ts index 77d480187..dfa6ce75f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.with-existing-key.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.with-existing-key.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.without-create-kms-key.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.without-create-kms-key.ts index 54b7cb800..aa73fe0e8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.without-create-kms-key.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/integ.without-create-kms-key.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/iot-sqs.test.ts b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/iot-sqs.test.ts index 3e98f0073..f9467590f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/iot-sqs.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-iot-sqs/test/iot-sqs.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/lib/index.ts index 826f4f25b..03e0d3c1a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.customLoggingBucket.ts index 4f9f0a79a..73f51f1d9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.no-arguments.ts index 56e0ec89e..a116e5d67 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.noLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.noLoggingBucket.ts index c40151304..23d831d62 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.noLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/integ.noLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/test.kinesisfirehose-analytics-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/test.kinesisfirehose-analytics-s3.test.ts index 6c8efa1cc..8bad83985 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/test.kinesisfirehose-analytics-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3-and-kinesisanalytics/test/test.kinesisfirehose-analytics-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/lib/index.ts index d3555b920..07c0166f8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.customLoggingBucket.ts index 22f44a703..c6a5c249a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.no-arguments.ts index 76a83444d..e65581ecd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.noLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.noLoggingBucket.ts index 7b52ed350..c9bc384c7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.noLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.noLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-bucket.ts index f97f64b27..b5c7cdc88 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-logging-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-logging-bucket.ts index 7e9a2fef2..6c6336b76 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-logging-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/integ.pre-existing-logging-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts index 8bc99c7ef..8c2908efb 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/lib/index.ts index 218e1b4ce..8b9dfb3ad 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.existing-job.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.existing-job.ts index d78d2ca1a..bdc081552 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.existing-job.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.existing-job.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.no-arguments.ts index 71fc566d1..5a66cf651 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/test.kinesisstream-gluejob.test.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/test.kinesisstream-gluejob.test.ts index 38d3e24a2..67ea4c841 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/test.kinesisstream-gluejob.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-gluejob/test/test.kinesisstream-gluejob.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/lib/index.ts index 68bf35f91..5fda33433 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.customLoggingBucket.ts index 4ea44fc75..5f857af11 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-bucket.ts index 1fd8003f9..c81bd2bb3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-logging-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-logging-bucket.ts index 6326b368e..580629bdc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-logging-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existing-logging-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existingStreamObj.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existingStreamObj.ts index f468237ab..ad7d77776 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existingStreamObj.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.existingStreamObj.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.no-arguments.ts index 710ff503f..002b21412 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts index 5def39706..ddef6b090 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-kinesisfirehose-s3/test/test.kinesisfirehose-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/lib/index.ts index a495d4cbd..042939bb7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.existing.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.existing.ts index eccc320b1..03d201b89 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.existing.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.existing.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.no-arguments.ts index 82fe2cf5a..e24dc5665 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/test.kinesisstreams-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/test.kinesisstreams-lambda.test.ts index 617a72983..82de2849b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/test.kinesisstreams-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-kinesisstreams-lambda/test/test.kinesisstreams-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.ts index 38ee3f698..20836caaf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.add-secondary-index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.add-secondary-index.ts index 92c2841ba..17a6ee7a3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.add-secondary-index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.add-secondary-index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithExistingVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithExistingVpc.ts index 305f140d3..be70b53fa 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithExistingVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithExistingVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithVpc.ts index ef74db2bc..b40133a6e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.no-arguments.ts index af47aab8c..6c303fdbc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.set-billing-mode.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.set-billing-mode.ts index d78cb62cd..7db9e3ee0 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.set-billing-mode.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.set-billing-mode.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.use-existing-func.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.use-existing-func.ts index 3a238b90a..ead03ddff 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.use-existing-func.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.use-existing-func.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.ts index db4dc8282..5e7f636a8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/lib/index.ts index 4ef84828a..a9596d13b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.domain-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.domain-arguments.ts index 72d87a009..22bbf795d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.domain-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.domain-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.no-arguments.ts index 83e82b5fc..b916b33ef 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/lambda-elasticsearch-kibana.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/lambda-elasticsearch-kibana.test.ts index a2a60c046..20a374ba9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/lambda-elasticsearch-kibana.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-elasticsearch-kibana/test/lambda-elasticsearch-kibana.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/lib/index.ts index e4defc145..5692e1a90 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/aws-lambda-eventbridge.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/aws-lambda-eventbridge.test.ts index a4386686a..c956dacf6 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/aws-lambda-eventbridge.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/aws-lambda-eventbridge.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunction.ts index 575af1d3e..642710e9a 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithNewEventBus.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithNewEventBus.ts index 5c8ed7e6c..5f29bf787 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithNewEventBus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithNewEventBus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithVpc.ts index dcbcb39b7..38b1eb86a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingEventBus.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingEventBus.ts index 5667ab6ce..8b211fafc 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingEventBus.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingEventBus.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingFunction.ts index f50a07c16..05ecaacc4 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-eventbridge/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/lib/index.ts index 0f5ffcce1..aef31c561 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.customLoggingBucket.ts index 57176e7ac..f1e965495 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunction.ts index 306a64e48..0694cc1d7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunctionWithVpc.ts index b02da7d58..2be2c147a 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.existingFunction.ts index 75c1ffbcd..3d8bb5ee4 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.pre-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.pre-existing-bucket.ts index 9365aca98..d12dc0861 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.pre-existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/integ.pre-existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/lambda-s3.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/lambda-s3.test.ts index af342bec8..de004476c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/lambda-s3.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-s3/test/lambda-s3.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/lib/index.ts index 9f71ddeb6..7e34e31e3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/aws-lambda-sagemakerendpoint.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/aws-lambda-sagemakerendpoint.test.ts index 299ca9a9f..6385c8e3c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/aws-lambda-sagemakerendpoint.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/aws-lambda-sagemakerendpoint.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.deployFunction.ts index 01d25a916..b680d2174 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingFunction.ts index 1459583d1..43ba405e4 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingSageMakerEndpoint.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingSageMakerEndpoint.ts index 7197aaa4d..39a1822bf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingSageMakerEndpoint.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/integ.existingSageMakerEndpoint.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/test-helper.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/test-helper.ts index 503337399..67488f627 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/test-helper.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sagemakerendpoint/test/test-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/lib/index.ts index 691d3086e..1aa83aee8 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunction.ts index d33e02369..c9b4a3f8f 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithExistingVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithExistingVpc.ts index 222e23b18..933c071fc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithExistingVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithExistingVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithVpc.ts index 907bc58ec..9e71c8760 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.existingFunction.ts index fed2c2983..1608529e9 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/lambda-secretsmanager.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/lambda-secretsmanager.test.ts index d86b7a55b..87f308407 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/lambda-secretsmanager.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-secretsmanager/test/lambda-secretsmanager.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/lib/index.ts index 3993aaec1..62d2d9820 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunction.ts index 9a43c933d..d6e6af244 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunctionWithVpc.ts index 15bdac6ee..24a53e485 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.existingFunction.ts index a375cdaf5..176ad21f1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/lambda-sns.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/lambda-sns.test.ts index dd5f8074e..4ac3beca7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/lambda-sns.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sns/test/lambda-sns.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/lib/index.ts index 3195d3412..85d185870 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.defaultDeployment.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.defaultDeployment.ts index 42e528ec9..8148d0ed1 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.defaultDeployment.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.defaultDeployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.deployProducerFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.deployProducerFunctionWithVpc.ts index 6f8962157..44dcea22c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.deployProducerFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.deployProducerFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingConsumerFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingConsumerFunction.ts index 5c8dceecd..11ead6085 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingConsumerFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingConsumerFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingProducerFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingProducerFunction.ts index acb06d881..b315cc94c 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingProducerFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingProducerFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingQueue.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingQueue.ts index 23b56c3cf..71b0e90d0 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/integ.existingQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/lambda-sqs-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/lambda-sqs-lambda.test.ts index e2034e1d0..2c210e4ad 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/lambda-sqs-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs-lambda/test/lambda-sqs-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/lib/index.ts index 56e853add..eec0ea029 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunction.ts index b66ae30e6..2e45488a9 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunctionWithVpc.ts index da74d3550..1d56070ee 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.existingFunction.ts index db6706fcc..d8377dd43 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/lambda-sqs.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/lambda-sqs.test.ts index 3de331b4c..69a389dc1 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/lambda-sqs.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-sqs/test/lambda-sqs.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/lib/index.ts index 7b83a5547..aa3f5b5ab 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunction.ts index da3e8854b..fec140775 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithExistingVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithExistingVpc.ts index 8a5095857..2dc08c901 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithExistingVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithExistingVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithVpc.ts index f0a0f77a3..c48bbc53c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingFunction.ts index 96fdef819..e3c0fe19e 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingStringParameter.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingStringParameter.ts index 9b2846ff4..6dea20dda 100755 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingStringParameter.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/integ.existingStringParameter.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/lambda-ssmstringparameter.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/lambda-ssmstringparameter.test.ts index e8030942d..e94ea2440 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/lambda-ssmstringparameter.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-ssmstringparameter/test/lambda-ssmstringparameter.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/lib/index.ts index 4ef92fb96..6bbc18385 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deploy-lambda.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deploy-lambda.ts index 9a324a035..eb44d8058 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deploy-lambda.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deploy-lambda.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deployFunctionWithVpc.ts index 83cccd79f..c4a8ab0a5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.existing-function.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.existing-function.ts index 0b0616e8c..a6afb44a1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.existing-function.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/integ.existing-function.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/lambda-step-function.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/lambda-step-function.test.ts index f26c0d817..f9f19ce17 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/lambda-step-function.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-step-function/test/lambda-step-function.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/lib/index.ts index 150470e92..d718d9210 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deploy-lambda.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deploy-lambda.ts index 73365073d..6cf07e851 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deploy-lambda.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deploy-lambda.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deployFunctionWithVpc.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deployFunctionWithVpc.ts index 20208be9f..a34984c4e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deployFunctionWithVpc.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.deployFunctionWithVpc.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.existing-function.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.existing-function.ts index c8b4b9a13..f19b3758e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.existing-function.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/integ.existing-function.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/lambda-stepfunctions.test.ts b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/lambda-stepfunctions.test.ts index 011336ee6..a54c5fa79 100644 --- a/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/lambda-stepfunctions.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-lambda-stepfunctions/test/lambda-stepfunctions.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/lib/index.ts index 6fd440179..1da39e7bf 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApi.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApi.ts index d42a2a964..bb9021c05 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApi.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApi.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApiExistingZone.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApiExistingZone.ts index 85c8ffee8..f779fdf6d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApiExistingZone.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPrivateApiExistingZone.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiExistingAlb.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiExistingAlb.ts index e97ffe3a0..717f2b510 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiExistingAlb.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiExistingAlb.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiNewAlb.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiNewAlb.ts index 35f8e4d91..4759117aa 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiNewAlb.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployPublicApiNewAlb.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployWithoutLogging.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployWithoutLogging.ts index 6af90a95b..7f187ef26 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployWithoutLogging.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/integ.deployWithoutLogging.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/route53-alb.test.ts b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/route53-alb.test.ts index 2698936e9..42b533218 100644 --- a/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/route53-alb.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-route53-alb/test/route53-alb.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/lib/index.ts index f5cc866ee..d494da8b5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.existing-s3-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.existing-s3-bucket.ts index 83aa9a67d..43a5fabb2 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.existing-s3-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.existing-s3-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.no-arguments.ts index d40e7ef51..f0dfd434e 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/s3-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/s3-lambda.test.ts index 9aed0f0ad..e22171588 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/s3-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-lambda/test/s3-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/lib/index.ts index a1d28af13..2899919d9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.creatingNewQueue.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.creatingNewQueue.ts index 00b9e663a..fec592973 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.creatingNewQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.creatingNewQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.customLoggingBucket.ts index 362c8ff83..156521907 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingQueue.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingQueue.ts index ffe07b640..4ade8a069 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingS3Bucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingS3Bucket.ts index bcc42ff8f..47bfbb321 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingS3Bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.existingS3Bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.noArguments.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.noArguments.ts index 167f1e8da..8ed3ff1f3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.noArguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/integ.noArguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/test.s3-sqs.test.ts b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/test.s3-sqs.test.ts index c5bab0e70..7ba8db99d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/test.s3-sqs.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-sqs/test/test.s3-sqs.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/lib/index.ts index ae2d9c599..0c8704f5f 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.customLoggingBucket.ts index a7b4d8879..eb0f82c84 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.pre-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.pre-existing-bucket.ts index 6fab5f041..029b41fbb 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.pre-existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.pre-existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.s3-step-function-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.s3-step-function-no-argument.ts index 3602b68a1..ce97ec9fd 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.s3-step-function-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/integ.s3-step-function-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/s3-step-function.test.ts b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/s3-step-function.test.ts index 4fdf16de4..a7dce5644 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/s3-step-function.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-step-function/test/s3-step-function.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/lib/index.ts index 22cd9e5d2..7d1979826 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.customLoggingBucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.customLoggingBucket.ts index 9c2829f52..590df605c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.customLoggingBucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.customLoggingBucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.pre-existing-bucket.ts b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.pre-existing-bucket.ts index 337d95257..41a3a9fe6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.pre-existing-bucket.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.pre-existing-bucket.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.s3-stepfunctions-no-argument.ts b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.s3-stepfunctions-no-argument.ts index 57eac4f36..e0fae25e1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.s3-stepfunctions-no-argument.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/integ.s3-stepfunctions-no-argument.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/s3-stepfunctions.test.ts b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/s3-stepfunctions.test.ts index 52319531e..5ee9516a5 100644 --- a/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/s3-stepfunctions.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-s3-stepfunctions/test/s3-stepfunctions.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/lib/index.ts index 83fc3f479..ff8165edc 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/integ.no-arguments.ts index f859fe5a6..92b4dbd30 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/sns-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/sns-lambda.test.ts index 6797367e9..40c276f79 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/sns-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-lambda/test/sns-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/lib/index.ts index 9a06bda9a..5ae4a1d49 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployFIFOQueue.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployFIFOQueue.ts index da34c7365..3cf57cfb1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployFIFOQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployFIFOQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployStandardQueue.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployStandardQueue.ts index 2f53c2957..b5a7a8ad6 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployStandardQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.deployStandardQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.existing-kms-key.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.existing-kms-key.ts index 468b67a6b..871314226 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.existing-kms-key.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.existing-kms-key.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.no-arguments.ts index a3068cedf..086bbf399 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.sns-managed-kms-key.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.sns-managed-kms-key.ts index 1bd4f87c5..41fbfdc05 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.sns-managed-kms-key.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/integ.sns-managed-kms-key.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/sns-sqs.test.ts b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/sns-sqs.test.ts index 697e7df71..fbd2ea15c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/sns-sqs.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sns-sqs/test/sns-sqs.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/lib/index.ts index 6ff5c8d29..6546f6673 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFifoQueue.ts b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFifoQueue.ts index cef073408..de3ae1715 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFifoQueue.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFifoQueue.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFunction.ts b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFunction.ts index 906d68762..c740076d7 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.deployFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.existingFunction.ts b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.existingFunction.ts index 901ea0ddd..8ec0551f3 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.existingFunction.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/integ.existingFunction.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/test.sqs-lambda.test.ts b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/test.sqs-lambda.test.ts index 570281cfe..7b91c3e5b 100644 --- a/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/test.sqs-lambda.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-sqs-lambda/test/test.sqs-lambda.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/lib/index.ts index ce4dbdefa..8c1c30aaa 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/integ.no-arguments.ts index dc7574620..b28deed16 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/test.wafwebacl-alb.test.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/test.wafwebacl-alb.test.ts index 4669f3219..3657445c9 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/test.wafwebacl-alb.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-alb/test/test.wafwebacl-alb.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/lib/index.ts index 746ded37c..501985d7c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.existing-waf-to-multiple-gateways.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.existing-waf-to-multiple-gateways.ts index 00954c727..d9bf504c1 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.existing-waf-to-multiple-gateways.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.existing-waf-to-multiple-gateways.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.no-arguments.ts index 43714f661..9be83187c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-dynamodb.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-dynamodb.ts index c9b2ebdd8..17f418e17 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-dynamodb.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-dynamodb.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-iot.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-iot.ts index adb2366bd..16c36e564 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-iot.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-iot.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-kinesisstreams.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-kinesisstreams.ts index 3ba3010de..8a95c3d58 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-kinesisstreams.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-kinesisstreams.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sagemakerendpoint.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sagemakerendpoint.ts index 69edcedcc..c828aac5d 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sagemakerendpoint.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sagemakerendpoint.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sqs.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sqs.ts index 2fe21dda9..c62b12762 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sqs.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/integ.wafwebacl-apigateway-sqs.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/test.wafwebacl-apigateway.test.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/test.wafwebacl-apigateway.test.ts index 6aaf0fe58..3d2ccef96 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/test.wafwebacl-apigateway.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-apigateway/test/test.wafwebacl-apigateway.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/lib/index.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/lib/index.ts index e97196ddd..a297f2a21 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/lib/index.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.existing-waf-to-multiple-cloudfront.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.existing-waf-to-multiple-cloudfront.ts index 34f3e7efd..18a91ad52 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.existing-waf-to-multiple-cloudfront.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.existing-waf-to-multiple-cloudfront.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.no-arguments.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.no-arguments.ts index bf6d385a4..5a9385cda 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.no-arguments.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.no-arguments.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-apigateway-lambda.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-apigateway-lambda.ts index 72dcdb130..16b209a9c 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-apigateway-lambda.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-apigateway-lambda.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-mediastore.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-mediastore.ts index d6e8b01f9..978699424 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-mediastore.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/integ.wafwebacl-cloudfront-mediastore.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/test.wafwebacl-cloudfront.test.ts b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/test.wafwebacl-cloudfront.test.ts index 5f3e4bfcd..4afec9896 100644 --- a/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/test.wafwebacl-cloudfront.test.ts +++ b/source/patterns/@aws-solutions-constructs/aws-wafwebacl-cloudfront/test/test.wafwebacl-cloudfront.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/index.ts b/source/patterns/@aws-solutions-constructs/core/index.ts index 2d4b451df..9b1dd6132 100644 --- a/source/patterns/@aws-solutions-constructs/core/index.ts +++ b/source/patterns/@aws-solutions-constructs/core/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/alb-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/alb-defaults.ts index 5659e534f..941a71ba9 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/alb-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/alb-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/alb-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/alb-helper.ts index 863df6002..9885b5169 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/alb-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/alb-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/apigateway-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/apigateway-defaults.ts index bd828d738..d081b8f43 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/apigateway-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/apigateway-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/apigateway-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/apigateway-helper.ts index b4dc1d9c6..51a9788c1 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/apigateway-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/apigateway-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.ts index 8226e0302..4dfd0c765 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.ts index 363e540c2..420e3b16a 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.ts index 5c2bd9feb..a693f9667 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.ts index 600eda755..d3f00e180 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cognito-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/cognito-defaults.ts index 167cc5883..2e744212b 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cognito-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cognito-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/cognito-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/cognito-helper.ts index 6730b86de..ab5b77ca3 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/cognito-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/cognito-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.ts index f5b174b9b..3e76dba81 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-helper.ts index af40412b9..e623ed902 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/dynamodb-table-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-defaults.ts index 77f4eb106..7764f471f 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-helper.ts index 29549619a..1b0dc40bc 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/elasticsearch-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/eventbridge-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/eventbridge-helper.ts index 52d4c9dda..f1a7b157c 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/eventbridge-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/eventbridge-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/events-rule-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/events-rule-defaults.ts index fe9cc889e..d962bb49e 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/events-rule-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/events-rule-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-database-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-database-defaults.ts index e88c96171..e5b0d46e9 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-database-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-database-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-database-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-database-helper.ts index 9d4894154..084ee51d8 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-database-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-database-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-job-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-job-defaults.ts index 492ab85b0..be9925e03 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-job-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-job-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-job-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-job-helper.ts index e76294544..29246fe03 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-job-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-job-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-table-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-table-defaults.ts index f28a07369..d2860ee24 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-table-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-table-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/glue-table-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/glue-table-helper.ts index 873fbd2d1..528b15579 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/glue-table-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/glue-table-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/input-validation.ts b/source/patterns/@aws-solutions-constructs/core/lib/input-validation.ts index 22b18a109..3fbac5344 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/input-validation.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/input-validation.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.ts index 421b4ecf1..fbf2ed09a 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.ts index 3948a6d83..5dc52b20c 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.ts index 8efd91f45..60168d068 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.ts index 2672c8dc8..469656b02 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.ts index a3f191c2e..c299dc9ab 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-helper.ts index deea641fd..9ea92048d 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kinesis-streams-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kms-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/kms-defaults.ts index 88dee13cd..d2befe3e1 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kms-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kms-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/kms-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/kms-helper.ts index ab511eec4..e0efba7bc 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/kms-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/kms-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/lambda-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/lambda-defaults.ts index a38367eee..a6348603d 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/lambda-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/lambda-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.ts index 74c3c0f18..21acec2b3 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/lambda-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/lambda-helper.ts index 7c7a7a575..4403a6979 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/lambda-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/lambda-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/mediastore-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/mediastore-defaults.ts index 5cb70f028..2e98f3860 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/mediastore-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/mediastore-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/mediastore-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/mediastore-helper.ts index 1a867853e..b43e2661f 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/mediastore-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/mediastore-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/override-warning-service.ts b/source/patterns/@aws-solutions-constructs/core/lib/override-warning-service.ts index ce0b3d453..323bae5fe 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/override-warning-service.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/override-warning-service.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-defaults.ts index a44d64a0a..8b2daa48e 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-helper.ts index 7e1a21ebc..5d78e893b 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/s3-bucket-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-defaults.ts index 6e5129b77..19577a1a8 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-helper.ts index 36b02b6a7..1b761d8f0 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sagemaker-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-defaults.ts index cbe27f603..6b9c4266d 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-helper.ts index 1581fac69..4f644f41b 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/secretsmanager-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/security-group-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/security-group-helper.ts index 3b3785540..7ad7ca8e6 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/security-group-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/security-group-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sns-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/sns-defaults.ts index 2f15d9d3a..e167c0e0b 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sns-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sns-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sns-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/sns-helper.ts index eb9026d9c..b5ab8cfca 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sns-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sns-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sqs-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/sqs-defaults.ts index 582ddfa67..4e45a9fb3 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sqs-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sqs-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/sqs-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/sqs-helper.ts index dcd8ac57b..c64bef26a 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/sqs-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/sqs-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.ts index 5013529d6..93aa225c7 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/step-function-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/step-function-defaults.ts index 2ce95a215..1c1374531 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/step-function-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/step-function-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/step-function-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/step-function-helper.ts index 365ba7fae..6493e8627 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/step-function-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/step-function-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/utils.ts b/source/patterns/@aws-solutions-constructs/core/lib/utils.ts index 92c9a85f6..d5855ca82 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/utils.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/utils.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/vpc-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/vpc-defaults.ts index a18f07cfa..5d07bdaf8 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/vpc-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/vpc-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/vpc-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/vpc-helper.ts index 3256c4980..fb28ada6b 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/vpc-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/vpc-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/waf-defaults.ts b/source/patterns/@aws-solutions-constructs/core/lib/waf-defaults.ts index b0db61ac1..b0ac83d68 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/waf-defaults.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/waf-defaults.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/lib/waf-helper.ts b/source/patterns/@aws-solutions-constructs/core/lib/waf-helper.ts index 96bf753da..614a59157 100644 --- a/source/patterns/@aws-solutions-constructs/core/lib/waf-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/lib/waf-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/alb-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/alb-helper.test.ts index 4a1c288ca..f96c65eac 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/alb-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/alb-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/apigateway-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/apigateway-helper.test.ts index 7207688d5..bf2b1fd48 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/apigateway-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/apigateway-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.ts index 19c2413c3..9dedd26eb 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.ts index 202520283..48a1b9118 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.ts index d26d7e10b..6f063af63 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.ts index dc622a58c..d5f3fe692 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/congnito-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/congnito-helper.test.ts index e10c1ada6..0c3d05137 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/congnito-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/congnito-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/dynamo-table.test.ts b/source/patterns/@aws-solutions-constructs/core/test/dynamo-table.test.ts index 73b8df105..2f90157cf 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/dynamo-table.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/dynamo-table.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/elasticsearch-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/elasticsearch-helper.test.ts index 7912d821a..08b21d694 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/elasticsearch-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/elasticsearch-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/eventbridge-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/eventbridge-helper.test.ts index 489e6b86b..acf7cb590 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/eventbridge-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/eventbridge-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/events-rule.test.ts b/source/patterns/@aws-solutions-constructs/core/test/events-rule.test.ts index be52bb15f..5677bbb84 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/events-rule.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/events-rule.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/glue-job-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/glue-job-helper.test.ts index 46cf06387..75cafe768 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/glue-job-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/glue-job-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/glue-table-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/glue-table-helper.test.ts index 806a017f9..51c987964 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/glue-table-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/glue-table-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/input-validation.test.ts b/source/patterns/@aws-solutions-constructs/core/test/input-validation.test.ts index 03d9598d3..6d20bb07c 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/input-validation.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/input-validation.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/iot-rule.test.ts b/source/patterns/@aws-solutions-constructs/core/test/iot-rule.test.ts index 03144f3aa..0f86187a3 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/iot-rule.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/iot-rule.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/kinesis-analytics.test.ts b/source/patterns/@aws-solutions-constructs/core/test/kinesis-analytics.test.ts index 488c51263..be21dd4fe 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/kinesis-analytics.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/kinesis-analytics.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.ts b/source/patterns/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.ts index 34765cf32..b4b511251 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.ts b/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.ts index 0d2b13a4d..834a4251e 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.ts index 4333685a7..53022de01 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/kms-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/kms-helper.test.ts index 51391abd1..08c0a157b 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/kms-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/kms-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/lambda-event-source.test.ts b/source/patterns/@aws-solutions-constructs/core/test/lambda-event-source.test.ts index a48a33f58..6dc294dcd 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/lambda-event-source.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/lambda-event-source.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/lambda-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/lambda-helper.test.ts index 4b9aba18a..a47bf2ad5 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/lambda-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/lambda-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/mediastore-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/mediastore-helper.test.ts index 7af5513d8..3f9d81cac 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/mediastore-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/mediastore-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/override-warning-service.test.ts b/source/patterns/@aws-solutions-constructs/core/test/override-warning-service.test.ts index add890617..5bd03cf34 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/override-warning-service.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/override-warning-service.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/s3-bucket-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/s3-bucket-helper.test.ts index fe1e22153..5d11f785b 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/s3-bucket-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/s3-bucket-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/s3-bucket.test.ts b/source/patterns/@aws-solutions-constructs/core/test/s3-bucket.test.ts index f3c4fe97d..48817bb5d 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/s3-bucket.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/s3-bucket.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/sagemaker-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/sagemaker-helper.test.ts index 42bc49e71..938ecf50e 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/sagemaker-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/sagemaker-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/secretsmanager-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/secretsmanager-helper.test.ts index c1bb5cd4e..8db1137fd 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/secretsmanager-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/secretsmanager-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/security-group-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/security-group-helper.test.ts index fb1e2d7bd..e1472bc3f 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/security-group-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/security-group-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/sns-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/sns-helper.test.ts index e6b264ebb..df404631a 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/sns-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/sns-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/sqs-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/sqs-helper.test.ts index 3e3670b2f..d28d2add4 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/sqs-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/sqs-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.ts index 23db7fc8d..dc769e635 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/step-function-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/step-function-helper.test.ts index 0d200a319..1839c6db7 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/step-function-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/step-function-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/test-helper.ts b/source/patterns/@aws-solutions-constructs/core/test/test-helper.ts index e942f80a0..c81a7b7d8 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/test-helper.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/test-helper.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/utils.test.ts b/source/patterns/@aws-solutions-constructs/core/test/utils.test.ts index abf720b1f..49cadd466 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/utils.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/utils.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/vpc-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/vpc-helper.test.ts index c5673e236..593c000f4 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/vpc-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/vpc-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/core/test/waf-helper.test.ts b/source/patterns/@aws-solutions-constructs/core/test/waf-helper.test.ts index f25be150c..fedbbeedd 100644 --- a/source/patterns/@aws-solutions-constructs/core/test/waf-helper.test.ts +++ b/source/patterns/@aws-solutions-constructs/core/test/waf-helper.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/patterns/@aws-solutions-constructs/license-header.js b/source/patterns/@aws-solutions-constructs/license-header.js index 0ff8f7478..f2c7f3da0 100644 --- a/source/patterns/@aws-solutions-constructs/license-header.js +++ b/source/patterns/@aws-solutions-constructs/license-header.js @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-custom-glue-etl/bin/aws-custom-glue-etl.ts b/source/use_cases/aws-custom-glue-etl/bin/aws-custom-glue-etl.ts index 59fa35e27..04db848a6 100644 --- a/source/use_cases/aws-custom-glue-etl/bin/aws-custom-glue-etl.ts +++ b/source/use_cases/aws-custom-glue-etl/bin/aws-custom-glue-etl.ts @@ -1,7 +1,7 @@ #!/usr/bin/env node /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-custom-glue-etl/lib/aws-custom-glue-etl-stack.ts b/source/use_cases/aws-custom-glue-etl/lib/aws-custom-glue-etl-stack.ts index 4153e4e7d..d9e524246 100644 --- a/source/use_cases/aws-custom-glue-etl/lib/aws-custom-glue-etl-stack.ts +++ b/source/use_cases/aws-custom-glue-etl/lib/aws-custom-glue-etl-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-custom-glue-etl/test/aws-custom-glue-etl.test.ts b/source/use_cases/aws-custom-glue-etl/test/aws-custom-glue-etl.test.ts index 701047535..920b54e57 100644 --- a/source/use_cases/aws-custom-glue-etl/test/aws-custom-glue-etl.test.ts +++ b/source/use_cases/aws-custom-glue-etl/test/aws-custom-glue-etl.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-custom-glue-etl/test/integ.gluejob.ts b/source/use_cases/aws-custom-glue-etl/test/integ.gluejob.ts index 900f4a9b2..017a17e2d 100644 --- a/source/use_cases/aws-custom-glue-etl/test/integ.gluejob.ts +++ b/source/use_cases/aws-custom-glue-etl/test/integ.gluejob.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/bin/restaurant-management-system-demo.ts b/source/use_cases/aws-restaurant-management-demo/bin/restaurant-management-system-demo.ts index b24d400e8..911bc80ff 100644 --- a/source/use_cases/aws-restaurant-management-demo/bin/restaurant-management-system-demo.ts +++ b/source/use_cases/aws-restaurant-management-demo/bin/restaurant-management-system-demo.ts @@ -1,6 +1,6 @@ #!/usr/bin/env node /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/lib/existing-resources.ts b/source/use_cases/aws-restaurant-management-demo/lib/existing-resources.ts index 2532cc24a..c29fd9275 100644 --- a/source/use_cases/aws-restaurant-management-demo/lib/existing-resources.ts +++ b/source/use_cases/aws-restaurant-management-demo/lib/existing-resources.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/lib/kitchen-staff-stack.ts b/source/use_cases/aws-restaurant-management-demo/lib/kitchen-staff-stack.ts index 8e6552886..b8d551c19 100644 --- a/source/use_cases/aws-restaurant-management-demo/lib/kitchen-staff-stack.ts +++ b/source/use_cases/aws-restaurant-management-demo/lib/kitchen-staff-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/lib/manager-stack.ts b/source/use_cases/aws-restaurant-management-demo/lib/manager-stack.ts index 901a7017e..2b9f7bbe7 100644 --- a/source/use_cases/aws-restaurant-management-demo/lib/manager-stack.ts +++ b/source/use_cases/aws-restaurant-management-demo/lib/manager-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/lib/service-staff-stack.ts b/source/use_cases/aws-restaurant-management-demo/lib/service-staff-stack.ts index 4665cb86c..00f795c2b 100644 --- a/source/use_cases/aws-restaurant-management-demo/lib/service-staff-stack.ts +++ b/source/use_cases/aws-restaurant-management-demo/lib/service-staff-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/lib/shared-stack.ts b/source/use_cases/aws-restaurant-management-demo/lib/shared-stack.ts index 5c1e042ea..4a33d95b8 100644 --- a/source/use_cases/aws-restaurant-management-demo/lib/shared-stack.ts +++ b/source/use_cases/aws-restaurant-management-demo/lib/shared-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/existingResourcesStack.test.ts b/source/use_cases/aws-restaurant-management-demo/test/existingResourcesStack.test.ts index 4b1044823..ebff30540 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/existingResourcesStack.test.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/existingResourcesStack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/integ.basic-deployment.ts b/source/use_cases/aws-restaurant-management-demo/test/integ.basic-deployment.ts index 9787b6cd7..863deeed0 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/integ.basic-deployment.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/integ.basic-deployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/kitchenStaffStack.test.ts b/source/use_cases/aws-restaurant-management-demo/test/kitchenStaffStack.test.ts index 6288ea2c3..f48a17cc4 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/kitchenStaffStack.test.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/kitchenStaffStack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/managerStack.test.ts b/source/use_cases/aws-restaurant-management-demo/test/managerStack.test.ts index 944a021b6..0e047e0bc 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/managerStack.test.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/managerStack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/serviceStaffStack.test.ts b/source/use_cases/aws-restaurant-management-demo/test/serviceStaffStack.test.ts index 63b4843c5..c1357f279 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/serviceStaffStack.test.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/serviceStaffStack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-restaurant-management-demo/test/sharedStack.test.ts b/source/use_cases/aws-restaurant-management-demo/test/sharedStack.test.ts index 848186665..1b2351fc2 100644 --- a/source/use_cases/aws-restaurant-management-demo/test/sharedStack.test.ts +++ b/source/use_cases/aws-restaurant-management-demo/test/sharedStack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-s3-static-website/bin/s3-static-site-app.ts b/source/use_cases/aws-s3-static-website/bin/s3-static-site-app.ts index 877674468..6af4a845e 100644 --- a/source/use_cases/aws-s3-static-website/bin/s3-static-site-app.ts +++ b/source/use_cases/aws-s3-static-website/bin/s3-static-site-app.ts @@ -1,7 +1,7 @@ #!/usr/bin/env node /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-s3-static-website/lib/s3-static-site-stack.ts b/source/use_cases/aws-s3-static-website/lib/s3-static-site-stack.ts index 970cbd176..014e46926 100644 --- a/source/use_cases/aws-s3-static-website/lib/s3-static-site-stack.ts +++ b/source/use_cases/aws-s3-static-website/lib/s3-static-site-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-s3-static-website/test/integ.basic-deployment.ts b/source/use_cases/aws-s3-static-website/test/integ.basic-deployment.ts index 0c2dfb7ec..fe2318fba 100644 --- a/source/use_cases/aws-s3-static-website/test/integ.basic-deployment.ts +++ b/source/use_cases/aws-s3-static-website/test/integ.basic-deployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-s3-static-website/test/s3-static-site-stack.test.ts b/source/use_cases/aws-s3-static-website/test/s3-static-site-stack.test.ts index d9f3e2398..e46ce063c 100644 --- a/source/use_cases/aws-s3-static-website/test/s3-static-site-stack.test.ts +++ b/source/use_cases/aws-s3-static-website/test/s3-static-site-stack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-image-handler/lib/index.ts b/source/use_cases/aws-serverless-image-handler/lib/index.ts index 9c58f3171..bae358422 100644 --- a/source/use_cases/aws-serverless-image-handler/lib/index.ts +++ b/source/use_cases/aws-serverless-image-handler/lib/index.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-image-handler/test/integ.basic-deployment.ts b/source/use_cases/aws-serverless-image-handler/test/integ.basic-deployment.ts index f52bd4f0f..8f886507c 100644 --- a/source/use_cases/aws-serverless-image-handler/test/integ.basic-deployment.ts +++ b/source/use_cases/aws-serverless-image-handler/test/integ.basic-deployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-image-handler/test/test.serverless-image-handler.test.ts b/source/use_cases/aws-serverless-image-handler/test/test.serverless-image-handler.test.ts index 5d91055aa..63840d2c3 100644 --- a/source/use_cases/aws-serverless-image-handler/test/test.serverless-image-handler.test.ts +++ b/source/use_cases/aws-serverless-image-handler/test/test.serverless-image-handler.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/bin/serverless-web-app.ts b/source/use_cases/aws-serverless-web-app/bin/serverless-web-app.ts index a73f6fa53..85f5cbada 100644 --- a/source/use_cases/aws-serverless-web-app/bin/serverless-web-app.ts +++ b/source/use_cases/aws-serverless-web-app/bin/serverless-web-app.ts @@ -1,7 +1,7 @@ #!/usr/bin/env node /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/lib/s3-static-site-stack.ts b/source/use_cases/aws-serverless-web-app/lib/s3-static-site-stack.ts index 345c0c9f9..8dcb2e49c 100644 --- a/source/use_cases/aws-serverless-web-app/lib/s3-static-site-stack.ts +++ b/source/use_cases/aws-serverless-web-app/lib/s3-static-site-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/lib/serverless-backend-stack.ts b/source/use_cases/aws-serverless-web-app/lib/serverless-backend-stack.ts index d26cf152e..3e2ee296d 100644 --- a/source/use_cases/aws-serverless-web-app/lib/serverless-backend-stack.ts +++ b/source/use_cases/aws-serverless-web-app/lib/serverless-backend-stack.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/test/integ.001-s3-static-website-deployment.ts b/source/use_cases/aws-serverless-web-app/test/integ.001-s3-static-website-deployment.ts index a7619263b..3ca41aa3a 100644 --- a/source/use_cases/aws-serverless-web-app/test/integ.001-s3-static-website-deployment.ts +++ b/source/use_cases/aws-serverless-web-app/test/integ.001-s3-static-website-deployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/test/integ.002-backend-deployment.ts b/source/use_cases/aws-serverless-web-app/test/integ.002-backend-deployment.ts index ea0995d86..36c26e6e0 100644 --- a/source/use_cases/aws-serverless-web-app/test/integ.002-backend-deployment.ts +++ b/source/use_cases/aws-serverless-web-app/test/integ.002-backend-deployment.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/test/s3-static-site-stack.test.ts b/source/use_cases/aws-serverless-web-app/test/s3-static-site-stack.test.ts index 2e5ff02ff..615cc1ec2 100644 --- a/source/use_cases/aws-serverless-web-app/test/s3-static-site-stack.test.ts +++ b/source/use_cases/aws-serverless-web-app/test/s3-static-site-stack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at diff --git a/source/use_cases/aws-serverless-web-app/test/serverless-backend-stack.test.ts b/source/use_cases/aws-serverless-web-app/test/serverless-backend-stack.test.ts index 8eee169a9..1e4e5f492 100644 --- a/source/use_cases/aws-serverless-web-app/test/serverless-backend-stack.test.ts +++ b/source/use_cases/aws-serverless-web-app/test/serverless-backend-stack.test.ts @@ -1,5 +1,5 @@ /** - * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at