Skip to content

Commit

Permalink
Rename parameter.ts to cfn-parameter.ts.
Browse files Browse the repository at this point in the history
  • Loading branch information
skinny85 committed Mar 5, 2019
1 parent d7935cd commit c56f8d6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk/lib/cloudformation/secret.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Construct } from '../core/construct';
import { Token } from '../core/tokens';
import { CfnParameter } from './parameter';
import { CfnParameter } from './cfn-parameter';

/**
* A token that represents a value that's expected to be a secret, like
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk/lib/cloudformation/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { App } from '../app';
import { Construct, IConstruct, PATH_SEP } from '../core/construct';
import { Environment } from '../environment';
import { ISynthesisSession } from '../synthesis';
import { CfnParameter } from './cfn-parameter';
import { CfnReference } from './cfn-tokens';
import { HashedAddressingScheme, IAddressingScheme, LogicalIDs } from './logical-id';
import { CfnParameter } from './parameter';

export interface StackProps {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export * from './cloudformation/include';
export * from './cloudformation/logical-id';
export * from './cloudformation/mapping';
export * from './cloudformation/cfn-output';
export * from './cloudformation/parameter';
export * from './cloudformation/cfn-parameter';
export * from './cloudformation/pseudo';
export * from './cloudformation/cfn-resource';
export * from './cloudformation/resource-policy';
Expand Down

0 comments on commit c56f8d6

Please sign in to comment.