Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cfnspec): cloudformation spec v46.0.0 #17334

Merged
merged 3 commits into from Nov 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/monocdk/rosetta/basic-portfolio.ts-fixture
@@ -1,9 +1,9 @@
// Fixture with packages imported, but nothing else
import { Construct, Stack } from '@aws-cdk/core';
import * as cdk from '@aws-cdk/core';
import * as servicecatalog from '@aws-cdk/aws-servicecatalog';

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

const portfolio = new servicecatalog.Portfolio(this, "MyFirstPortfolio", {
Expand Down