Skip to content

Commit

Permalink
feat(cfnspec): cloudformation spec v39.7.0 (#15796)
Browse files Browse the repository at this point in the history
Co-authored-by: AWS CDK Team <aws-cdk@amazon.com>
  • Loading branch information
aws-cdk-automation and AWS CDK Team authored Jul 28, 2021
1 parent 3f5b910 commit dbe4641
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/monocdk/rosetta/with-bucket.ts-fixture
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Fixture with a bucket already created
import { Construct, Stack } from '@aws-cdk/core';
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from '@aws-cdk/aws-kinesisfirehose';
import * as s3 from '@aws-cdk/aws-s3';
declare const bucket: s3.Bucket;

class Fixture extends Stack {
constructor(scope: Construct, id: string) {
super(scope, id);

/// here
}
}
12 changes: 12 additions & 0 deletions packages/monocdk/rosetta/with-delivery-stream.ts-fixture
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Fixture with a delivery stream already created
import { Construct, Stack } from '@aws-cdk/core';
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from '@aws-cdk/aws-kinesisfirehose';
declare const deliveryStream: DeliveryStream;

class Fixture extends Stack {
constructor(scope: Construct, id: string) {
super(scope, id);

/// here
}
}
12 changes: 12 additions & 0 deletions packages/monocdk/rosetta/with-destination.ts-fixture
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Fixture with a destination already created
import { Construct, Stack } from '@aws-cdk/core';
import { DeliveryStream, DestinationBindOptions, DestinationConfig, IDestination } from '@aws-cdk/aws-kinesisfirehose';
declare const destination: IDestination;

class Fixture extends Stack {
constructor(scope: Construct, id: string) {
super(scope, id);

/// here
}
}

0 comments on commit dbe4641

Please sign in to comment.