@@ -24,30 +24,22 @@ describe("SsmParametersConstruct", () => {
2424 id : "MockParam1" ,
2525 nameSuffix : "MockParam1" ,
2626 description : "Description for mock parameter 1" ,
27- value : "mock-value-1" ,
28- outputExportSuffix : "MockParam1Parameter" ,
29- outputDescription : "Name of the SSM parameter holding MockParam1"
27+ value : "mock-value-1"
3028 } ,
3129 {
3230 id : "MockParam2" ,
3331 nameSuffix : "MockParam2" ,
3432 description : "Description for mock parameter 2" ,
35- value : "mock-value-2" ,
36- outputExportSuffix : "MockParam2Parameter" ,
37- outputDescription : "Name of the SSM parameter holding MockParam2"
33+ value : "mock-value-2"
3834 } ,
3935 {
4036 id : "MockParam3" ,
4137 nameSuffix : "MockParam3" ,
4238 description : "Description for mock parameter 3" ,
43- value : "mock-value-3" ,
44- outputExportSuffix : "MockParam3Parameter" ,
45- outputDescription : "Name of the SSM parameter holding MockParam3"
39+ value : "mock-value-3"
4640 }
4741 ] ,
48- readPolicyDescription : "Mock policy description" ,
49- readPolicyOutputDescription : "Mock read policy output description" ,
50- readPolicyExportSuffix : "MockGetParametersPolicy"
42+ readPolicyDescription : "Mock policy description"
5143 } )
5244 // Sonarcloud complains that the construct is not used, so we add an assertion to sidestep that.
5345 assert ( params , "SsmParametersConstruct should be created successfully" )
@@ -114,8 +106,7 @@ describe("SsmParametersConstruct uses defaults when optional fields are omitted"
114106 description : "Mock SSM parameter description" ,
115107 value : "mock-value-1"
116108 }
117- ] ,
118- readPolicyExportSuffix : "MockGetParametersPolicy"
109+ ]
119110 } )
120111 // Get sonar to shup up about the construct not being used
121112 assert ( params , "SsmParametersConstruct should be created successfully" )
0 commit comments