@aws-cdk/aws-imagebuilder-alpha 2.230.0-alpha.0 → 2.231.0-alpha.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/lib/workflow.js CHANGED
@@ -201,7 +201,7 @@ var WorkflowType;
201
201
  * Helper class for referencing and uploading workflow data
202
202
  */
203
203
  class WorkflowData {
204
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.WorkflowData", version: "2.230.0-alpha.0" };
204
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.WorkflowData", version: "2.231.0-alpha.0" };
205
205
  /**
206
206
  * Uploads workflow data from a local file to S3 to use as the workflow data
207
207
  *
@@ -246,7 +246,7 @@ exports.WorkflowData = WorkflowData;
246
246
  * Helper class for S3-based workflow data references, containing additional permission grant methods on the S3 object
247
247
  */
248
248
  class S3WorkflowData extends WorkflowData {
249
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.S3WorkflowData", version: "2.230.0-alpha.0" };
249
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.S3WorkflowData", version: "2.231.0-alpha.0" };
250
250
  bucket;
251
251
  key;
252
252
  constructor(bucket, key) {
@@ -305,7 +305,7 @@ class S3WorkflowDataFromAsset extends S3WorkflowData {
305
305
  * The parameter value for a workflow parameter
306
306
  */
307
307
  class WorkflowParameterValue {
308
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.WorkflowParameterValue", version: "2.230.0-alpha.0" };
308
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.WorkflowParameterValue", version: "2.231.0-alpha.0" };
309
309
  /**
310
310
  * The value of the parameter as a boolean
311
311
  *
@@ -350,7 +350,7 @@ exports.WorkflowParameterValue = WorkflowParameterValue;
350
350
  * Helper class for working with AWS-managed workflows
351
351
  */
352
352
  class AwsManagedWorkflow {
353
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.AwsManagedWorkflow", version: "2.230.0-alpha.0" };
353
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.AwsManagedWorkflow", version: "2.231.0-alpha.0" };
354
354
  /**
355
355
  * Imports the build-container AWS-managed workflow
356
356
  *
@@ -486,7 +486,7 @@ let Workflow = (() => {
486
486
  Workflow = _classThis = _classDescriptor.value;
487
487
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
488
488
  }
489
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.Workflow", version: "2.230.0-alpha.0" };
489
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-imagebuilder-alpha.Workflow", version: "2.231.0-alpha.0" };
490
490
  /** Uniquely identifies this class. */
491
491
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-imagebuilder-alpha.Workflow';
492
492
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-cdk/aws-imagebuilder-alpha",
3
- "version": "2.230.0-alpha.0",
3
+ "version": "2.231.0-alpha.0",
4
4
  "private": false,
5
5
  "description": "The CDK Construct Library for EC2 Image Builder",
6
6
  "main": "lib/index.js",
@@ -77,11 +77,11 @@
77
77
  },
78
78
  "license": "Apache-2.0",
79
79
  "devDependencies": {
80
- "aws-cdk-lib": "2.230.0",
81
- "@aws-cdk/cdk-build-tools": "2.230.0-alpha.0",
80
+ "aws-cdk-lib": "2.231.0",
81
+ "@aws-cdk/cdk-build-tools": "2.231.0-alpha.0",
82
82
  "@aws-cdk/integ-runner": "^2.192.2",
83
- "@aws-cdk/pkglint": "2.230.0-alpha.0",
84
- "@aws-cdk/integ-tests-alpha": "2.230.0-alpha.0",
83
+ "@aws-cdk/pkglint": "2.231.0-alpha.0",
84
+ "@aws-cdk/integ-tests-alpha": "2.231.0-alpha.0",
85
85
  "@types/jest": "^29.5.14",
86
86
  "constructs": "^10.0.0",
87
87
  "jest": "^29.7.0"
@@ -94,7 +94,7 @@
94
94
  ],
95
95
  "homepage": "https://github.com/aws/aws-cdk",
96
96
  "peerDependencies": {
97
- "aws-cdk-lib": "^2.230.0",
97
+ "aws-cdk-lib": "^2.231.0",
98
98
  "constructs": "^10.0.0"
99
99
  },
100
100
  "engines": {
@@ -52,6 +52,10 @@ class Fixture extends Stack {
52
52
  )
53
53
  });
54
54
 
55
+ const exampleImage = new imagebuilder.Image(this, 'Image', {
56
+ recipe: exampleImageRecipe
57
+ });
58
+
55
59
  const examplePipeline = new imagebuilder.ImagePipeline(this, 'Pipeline', {
56
60
  recipe: exampleImageRecipe
57
61
  });