Skip to content

Commit 18c41c0

Browse files
authored
update CF description (#143)
1 parent c5393dc commit 18c41c0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

source/src/molecular-unfolding/cdk/stack-batch-evaluation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class BatchEvaluationNestStack extends NestedStack {
6262

6363
super(scope, id, props);
6464
const featureName = 'Batch Evaluation';
65-
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-batch-eval) ${MainStack.SOLUTION_NAME} ${MainStack.SOLUTION_VERSION} ${featureName}`;
65+
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-batch-eval) ${MainStack.SOLUTION_NAME} - ${featureName} (Version ${MainStack.SOLUTION_VERSION})`;
6666

6767
const crossEventRegionCondition = new CfnCondition(this, 'CrossEventRegionCondition', {
6868
expression: Fn.conditionNot(

source/src/molecular-unfolding/cdk/stack-main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class MainStack extends SolutionStack {
5252
static SOLUTION_ID = 'SO8027'
5353
static SOLUTION_NAME = 'Quantum Computing Exploration for Drug Discovery on AWS'
5454
static SOLUTION_VERSION = process.env.SOLUTION_VERSION || 'v1.0.0'
55-
static DESCRIPTION = `(${MainStack.SOLUTION_ID}) ${MainStack.SOLUTION_NAME} ${MainStack.SOLUTION_VERSION}`;
55+
static DESCRIPTION = `(${MainStack.SOLUTION_ID}) ${MainStack.SOLUTION_NAME} (Version ${MainStack.SOLUTION_VERSION})`;
5656

5757
// constructor
5858
constructor(scope: Construct, id: string, props: StackProps = {}) {

source/src/molecular-unfolding/cdk/stack-notebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class NotebookNestStack extends NestedStack {
4646

4747
super(scope, id, props);
4848
const featureName = 'Notebook';
49-
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-notebook) ${MainStack.SOLUTION_NAME} ${MainStack.SOLUTION_VERSION} ${featureName}`;
49+
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-notebook) ${MainStack.SOLUTION_NAME} - ${featureName} (Version ${MainStack.SOLUTION_VERSION})`;
5050

5151
// Notebook //////////////////////////
5252
const notebook = new Notebook(this, 'Notebook', {

source/src/molecular-unfolding/cdk/stack-visualization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class VisualizationNestStack extends NestedStack {
5454

5555
super(scope, id, props);
5656
const featureName = 'Visualization';
57-
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-visualization) ${MainStack.SOLUTION_NAME} ${MainStack.SOLUTION_VERSION} ${featureName}`;
57+
this.templateOptions.description = `(${MainStack.SOLUTION_ID}-visualization) ${MainStack.SOLUTION_NAME} - ${featureName} (Version ${MainStack.SOLUTION_VERSION})`;
5858

5959
new CfnRule(this, 'VisualizationParameterRule', {
6060
assertions: [{

0 commit comments

Comments
 (0)