Socket
Socket
Sign inDemoInstall

@aws-cdk/core

Package Overview
Dependencies
Maintainers
5
Versions
248
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/core - npm Package Compare versions

Comparing version 1.16.1 to 1.16.2

4

lib/cfn-element.d.ts

@@ -52,3 +52,3 @@ import { Construct } from "./construct";

*/
readonly creationStack: string[];
get creationStack(): string[];
/**

@@ -78,4 +78,4 @@ * Called during synthesize to render the logical ID of this element. If

*/
readonly ref: string;
get ref(): string;
}
import { Stack } from './stack';

@@ -100,20 +100,20 @@ import { CfnElement } from './cfn-element';

*/
readonly noEcho: boolean;
get noEcho(): boolean;
/**
* The parameter value as a Token
*/
readonly value: IResolvable;
get value(): IResolvable;
/**
* The parameter value, if it represents a string.
*/
readonly valueAsString: string;
get valueAsString(): string;
/**
* The parameter value, if it represents a string list.
*/
readonly valueAsList: string[];
get valueAsList(): string[];
/**
* The parameter value, if it represents a number.
*/
readonly valueAsNumber: number;
get valueAsNumber(): number;
resolve(_context: IResolveContext): any;
}

@@ -29,10 +29,10 @@ import { Construct } from './construct';

constructor(scope: Construct);
readonly accountId: string;
readonly urlSuffix: string;
readonly notificationArns: string[];
readonly partition: string;
readonly region: string;
readonly stackId: string;
readonly stackName: string;
get accountId(): string;
get urlSuffix(): string;
get notificationArns(): string[];
get partition(): string;
get region(): string;
get stackId(): string;
get stackName(): string;
private asString;
}

@@ -130,3 +130,3 @@ import { CfnCondition } from './cfn-condition';

toString(): string;
protected readonly cfnProperties: {
protected get cfnProperties(): {
[key: string]: any;

@@ -145,3 +145,3 @@ };

*/
protected readonly updatedProperites: {
protected get updatedProperites(): {
[key: string]: any;

@@ -148,0 +148,0 @@ };

@@ -66,3 +66,3 @@ import cxapi = require('@aws-cdk/cx-api');

*/
readonly path: string;
get path(): string;
/**

@@ -72,3 +72,3 @@ * A tree-global unique alphanumeric identifier for this construct.

*/
readonly uniqueId: string;
get uniqueId(): string;
/**

@@ -98,17 +98,18 @@ * Return a direct child by id, or undefined

*/
get defaultChild(): IConstruct | undefined;
/**
* Override the defaultChild property.
*
* This should only be used in the cases where the correct
* default child is not named 'Resource' or 'Default' as it
* should be.
*
* If you set this to undefined, the default behavior of finding
* the child named 'Resource' or 'Default' will be used.
*/
defaultChild: IConstruct | undefined;
* Override the defaultChild property.
*
* This should only be used in the cases where the correct
* default child is not named 'Resource' or 'Default' as it
* should be.
*
* If you set this to undefined, the default behavior of finding
* the child named 'Resource' or 'Default' will be used.
*/
set defaultChild(value: IConstruct | undefined);
/**
* All direct children of this construct.
*/
readonly children: IConstruct[];
get children(): IConstruct[];
/**

@@ -139,3 +140,3 @@ * Return this construct and all of its children in the given order

*/
readonly metadata: cxapi.MetadataEntry[];
get metadata(): cxapi.MetadataEntry[];
/**

@@ -182,7 +183,7 @@ * Adds a metadata entry to this construct.

*/
readonly scopes: IConstruct[];
get scopes(): IConstruct[];
/**
* @returns The root of the construct tree.
*/
readonly root: IConstruct;
get root(): IConstruct;
/**

@@ -192,3 +193,3 @@ * Returns true if this construct or the scopes in which it is defined are

*/
readonly locked: boolean;
get locked(): boolean;
/**

@@ -204,3 +205,3 @@ * Add an ordering dependency on another Construct.

*/
readonly dependencies: Dependency[];
get dependencies(): Dependency[];
/**

@@ -207,0 +208,0 @@ * Adds a child construct to this node.

@@ -37,3 +37,3 @@ import { IConstruct } from '../construct';

resolveString(s: TokenizedStringFragments, context: IResolveContext): any;
readonly tokens: IResolvable[];
get tokens(): IResolvable[];
}

@@ -39,3 +39,3 @@ import { Construct } from './construct';

constructor(errorMessage?: string, results?: ValidationResults);
readonly isSuccess: boolean;
get isSuccess(): boolean;
/**

@@ -61,3 +61,3 @@ * Turn a failed validation into an exception

collect(result: ValidationResult): void;
readonly isSuccess: boolean;
get isSuccess(): boolean;
errorTreeList(): string;

@@ -64,0 +64,0 @@ /**

@@ -214,3 +214,3 @@ import cxapi = require('@aws-cdk/cx-api');

*/
readonly dependencies: Stack[];
get dependencies(): Stack[];
/**

@@ -228,11 +228,11 @@ * The concrete CloudFormation physical stack name.

*/
readonly stackName: string;
get stackName(): string;
/**
* The partition in which this stack is defined
*/
readonly partition: string;
get partition(): string;
/**
* The Amazon domain suffix for the region in which this stack is defined
*/
readonly urlSuffix: string;
get urlSuffix(): string;
/**

@@ -243,11 +243,11 @@ * The ID of the stack

*/
readonly stackId: string;
get stackId(): string;
/**
* Returns the list of notification Amazon Resource Names (ARNs) for the current stack.
*/
readonly notificationArns: string[];
get notificationArns(): string[];
/**
* Indicates if this is a nested stack, in which case `parentStack` will include a reference to it's parent.
*/
readonly nested: boolean;
get nested(): boolean;
/**

@@ -323,3 +323,3 @@ * Creates an ARN from components.

*/
readonly availabilityZones: string[];
get availabilityZones(): string[];
addFileAsset(asset: FileAssetSource): FileAssetLocation;

@@ -402,3 +402,3 @@ addDockerImageAsset(asset: DockerImageAssetSource): DockerImageAssetLocation;

private generateExportName;
private readonly assetParameters;
private get assetParameters();
private determineCrossReferenceFactory;

@@ -405,0 +405,0 @@ /**

@@ -7,5 +7,5 @@ import { IFragmentConcatenator, IResolvable } from "./resolvable";

private readonly fragments;
readonly firstToken: IResolvable | undefined;
readonly firstValue: any;
readonly length: number;
get firstToken(): IResolvable | undefined;
get firstValue(): any;
get length(): number;
addLiteral(lit: any): void;

@@ -17,3 +17,3 @@ addToken(token: IResolvable): void;

*/
readonly tokens: IResolvable[];
get tokens(): IResolvable[];
/**

@@ -20,0 +20,0 @@ * Apply a transformation function to all tokens in the string

{
"name": "@aws-cdk/core",
"version": "1.16.1",
"version": "1.16.2",
"description": "AWS Cloud Development Kit Core Library",

@@ -153,14 +153,14 @@ "main": "lib/index.js",

"@types/lodash": "^4.14.146",
"cdk-build-tools": "1.16.1",
"cfn2ts": "1.16.1",
"cdk-build-tools": "1.16.2",
"cfn2ts": "1.16.2",
"fast-check": "^1.18.1",
"lodash": "^4.17.15",
"pkglint": "1.16.1"
"pkglint": "1.16.2"
},
"dependencies": {
"@aws-cdk/cx-api": "1.16.1"
"@aws-cdk/cx-api": "1.16.2"
},
"homepage": "https://github.com/aws/aws-cdk",
"peerDependencies": {
"@aws-cdk/cx-api": "1.16.1"
"@aws-cdk/cx-api": "1.16.2"
},

@@ -167,0 +167,0 @@ "engines": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc