Skip to content

Commit f9c533b

Browse files
authored
chore(pipes-alpha): update references of aws-kinesisfirehose-alpha (#33759)
### Reason for this change References to stabilized aws-kinsisfirehose-alpha module still exist. ### Description of changes - Updated `@aws-cdk/aws-kinesisfirehose-alpha` to `aws-cdk-lib/aws-kinesisfirehose` - Removed dependency to `@aws-cdk/aws-kinesisfirehose-alpha` ### Describe any new or updated permissions being added N/A ### Description of how you validated changes Unit tests passed. No snapshot changes are made. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 720b3c0 commit f9c533b

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

packages/@aws-cdk/aws-pipes-alpha/lib/logs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { IDeliveryStream } from '@aws-cdk/aws-kinesisfirehose-alpha';
21
import { IRole } from 'aws-cdk-lib/aws-iam';
2+
import { IDeliveryStream } from 'aws-cdk-lib/aws-kinesisfirehose';
33
import { ILogGroup } from 'aws-cdk-lib/aws-logs';
44
import { CfnPipe } from 'aws-cdk-lib/aws-pipes';
55
import { IBucket } from 'aws-cdk-lib/aws-s3';

packages/@aws-cdk/aws-pipes-alpha/package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,12 @@
8888
"jest": "^29",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0",
91-
"@aws-cdk/integ-tests-alpha": "0.0.0",
92-
"@aws-cdk/aws-kinesisfirehose-alpha": "0.0.0"
91+
"@aws-cdk/integ-tests-alpha": "0.0.0"
9392
},
9493
"dependencies": {},
9594
"peerDependencies": {
9695
"aws-cdk-lib": "^0.0.0",
97-
"constructs": "^10.0.0",
98-
"@aws-cdk/aws-kinesisfirehose-alpha": "0.0.0"
96+
"constructs": "^10.0.0"
9997
},
10098
"engines": {
10199
"node": ">= 14.15.0"

packages/@aws-cdk/aws-pipes-alpha/test/integ.logs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { randomUUID } from 'crypto';
2-
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from '@aws-cdk/aws-kinesisfirehose-alpha';
32
import { ExpectedResult, IntegTest } from '@aws-cdk/integ-tests-alpha';
43
import * as cdk from 'aws-cdk-lib';
4+
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from 'aws-cdk-lib/aws-kinesisfirehose';
55
import { Construct } from 'constructs';
66
import { CloudwatchLogsLogDestination, FirehoseLogDestination, IPipe, ISource, ITarget, IncludeExecutionData, InputTransformation, LogLevel, Pipe, S3LogDestination, SourceConfig, TargetConfig } from '../lib';
77
import { name } from '../package.json';

packages/@aws-cdk/aws-pipes-alpha/test/logs.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from '@aws-cdk/aws-kinesisfirehose-alpha';
21
import { App, Stack } from 'aws-cdk-lib';
32
import { Template } from 'aws-cdk-lib/assertions';
43
import { Role, ServicePrincipal } from 'aws-cdk-lib/aws-iam';
4+
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from 'aws-cdk-lib/aws-kinesisfirehose';
55
import { LogGroup } from 'aws-cdk-lib/aws-logs';
66
import { Bucket } from 'aws-cdk-lib/aws-s3';
77
import { Construct } from 'constructs';

0 commit comments

Comments
 (0)