aws-cdk 2.1017.1 → 2.1018.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRD_PARTY_LICENSES +87 -87
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/cli/cdk-toolkit.d.ts +4 -4
- package/lib/cli/cdk-toolkit.js +16 -8
- package/lib/cli/io-host/cli-io-host.d.ts +9 -1
- package/lib/cli/io-host/cli-io-host.js +1 -1
- package/lib/cli/user-configuration.d.ts +1 -1
- package/lib/cli/user-configuration.js +2 -2
- package/lib/cli/util/console-formatters.d.ts +1 -1
- package/lib/cli/util/console-formatters.js +2 -2
- package/lib/cli/util/yargs-helpers.d.ts +2 -2
- package/lib/cli/util/yargs-helpers.js +3 -3
- package/lib/commands/init/init.d.ts +3 -3
- package/lib/commands/init/init.js +7 -7
- package/lib/commands/list-stacks.d.ts +2 -2
- package/lib/commands/list-stacks.js +3 -3
- package/lib/commands/migrate.d.ts +62 -62
- package/lib/commands/migrate.js +54 -54
- package/lib/cxapp/cloud-executable.d.ts +1 -1
- package/lib/cxapp/cloud-executable.js +2 -2
- package/lib/cxapp/environments.js +2 -2
- package/lib/index.js +4523 -2868
- package/lib/index_bg.wasm +0 -0
- package/lib/init-templates/.init-version.json +1 -1
- package/lib/legacy-logging-source.d.ts +2 -2
- package/lib/legacy-logging-source.js +3 -3
- package/package.json +19 -19
package/build-info.json
CHANGED
package/db.json.gz
CHANGED
|
Binary file
|
package/lib/cli/cdk-toolkit.d.ts
CHANGED
|
@@ -118,20 +118,20 @@ export declare class CdkToolkit {
|
|
|
118
118
|
/**
|
|
119
119
|
* Bootstrap the CDK Toolkit stack in the accounts used by the specified stack(s).
|
|
120
120
|
*
|
|
121
|
-
* @param userEnvironmentSpecs environment names that need to have toolkit support
|
|
121
|
+
* @param userEnvironmentSpecs - environment names that need to have toolkit support
|
|
122
122
|
* provisioned, as a glob filter. If none is provided, all stacks are implicitly selected.
|
|
123
|
-
* @param options The name, role ARN, bootstrapping parameters, etc. to be used for the CDK Toolkit stack.
|
|
123
|
+
* @param options - The name, role ARN, bootstrapping parameters, etc. to be used for the CDK Toolkit stack.
|
|
124
124
|
*/
|
|
125
125
|
bootstrap(userEnvironmentSpecs: string[], options: BootstrapEnvironmentOptions): Promise<void>;
|
|
126
126
|
/**
|
|
127
127
|
* Garbage collects assets from a CDK app's environment
|
|
128
|
-
* @param options Options for Garbage Collection
|
|
128
|
+
* @param options - Options for Garbage Collection
|
|
129
129
|
*/
|
|
130
130
|
garbageCollect(userEnvironmentSpecs: string[], options: GarbageCollectionOptions): Promise<void>;
|
|
131
131
|
private defineEnvironments;
|
|
132
132
|
/**
|
|
133
133
|
* Migrates a CloudFormation stack/template to a CDK app
|
|
134
|
-
* @param options Options for CDK app creation
|
|
134
|
+
* @param options - Options for CDK app creation
|
|
135
135
|
*/
|
|
136
136
|
migrate(options: MigrateOptions): Promise<void>;
|
|
137
137
|
refactor(options: RefactorOptions): Promise<number>;
|