@cdktn/provider-generator 0.22.0 → 0.23.0-pre.4
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/__tests__/__snapshots__/provider.test.ts.snap +444 -444
- package/lib/get/__tests__/generator/__snapshots__/complex-computed-types.test.ts.snap +1 -1
- package/lib/get/__tests__/generator/__snapshots__/export-sharding.test.ts.snap +228 -228
- package/lib/get/__tests__/generator/__snapshots__/nested-types.test.ts.snap +2 -2
- package/lib/get/__tests__/generator/__snapshots__/resource-types.test.ts.snap +20 -20
- package/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap +3 -3
- package/lib/get/__tests__/generator/__snapshots__/types.test.ts.snap +18 -18
- package/lib/get/generator/emitter/struct-emitter.js +7 -7
- package/package.json +5 -4
|
@@ -611,7 +611,7 @@ export class ChildOrganizationApiKeyList extends cdktn.ComplexList {
|
|
|
611
611
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
612
612
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
613
613
|
*/
|
|
614
|
-
constructor(
|
|
614
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
615
615
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
616
616
|
}
|
|
617
617
|
|
|
@@ -696,7 +696,7 @@ export class ChildOrganizationApplicationKeyList extends cdktn.ComplexList {
|
|
|
696
696
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
697
697
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
698
698
|
*/
|
|
699
|
-
constructor(
|
|
699
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
700
700
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
701
701
|
}
|
|
702
702
|
|
|
@@ -771,7 +771,7 @@ export class ChildOrganizationSettingsSamlList extends cdktn.ComplexList {
|
|
|
771
771
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
772
772
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
773
773
|
*/
|
|
774
|
-
constructor(
|
|
774
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
775
775
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
776
776
|
}
|
|
777
777
|
|
|
@@ -851,7 +851,7 @@ export class ChildOrganizationSettingsSamlAutocreateUsersDomainsList extends cdk
|
|
|
851
851
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
852
852
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
853
853
|
*/
|
|
854
|
-
constructor(
|
|
854
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
855
855
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
856
856
|
}
|
|
857
857
|
|
|
@@ -926,7 +926,7 @@ export class ChildOrganizationSettingsSamlIdpInitiatedLoginList extends cdktn.Co
|
|
|
926
926
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
927
927
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
928
928
|
*/
|
|
929
|
-
constructor(
|
|
929
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
930
930
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
931
931
|
}
|
|
932
932
|
|
|
@@ -1001,7 +1001,7 @@ export class ChildOrganizationSettingsSamlStrictModeList extends cdktn.ComplexLi
|
|
|
1001
1001
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1002
1002
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1003
1003
|
*/
|
|
1004
|
-
constructor(
|
|
1004
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
1005
1005
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
1006
1006
|
}
|
|
1007
1007
|
|
|
@@ -1125,7 +1125,7 @@ export class ChildOrganizationSettingsList extends cdktn.ComplexList {
|
|
|
1125
1125
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1126
1126
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1127
1127
|
*/
|
|
1128
|
-
constructor(
|
|
1128
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
1129
1129
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
1130
1130
|
}
|
|
1131
1131
|
|
|
@@ -1210,7 +1210,7 @@ export class ChildOrganizationUserList extends cdktn.ComplexList {
|
|
|
1210
1210
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1211
1211
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1212
1212
|
*/
|
|
1213
|
-
constructor(
|
|
1213
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
1214
1214
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
1215
1215
|
}
|
|
1216
1216
|
|
|
@@ -1993,7 +1993,7 @@ export class DashboardListDashItemList extends cdktn.ComplexList {
|
|
|
1993
1993
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1994
1994
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1995
1995
|
*/
|
|
1996
|
-
constructor(
|
|
1996
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
1997
1997
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
1998
1998
|
}
|
|
1999
1999
|
|
|
@@ -2373,7 +2373,7 @@ export class DashboardTemplateVariableList extends cdktn.ComplexList {
|
|
|
2373
2373
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2374
2374
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
2375
2375
|
*/
|
|
2376
|
-
constructor(
|
|
2376
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
2377
2377
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
2378
2378
|
}
|
|
2379
2379
|
|
|
@@ -2526,7 +2526,7 @@ export class DashboardTemplateVariablePresetTemplateVariableList extends cdktn.C
|
|
|
2526
2526
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2527
2527
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
2528
2528
|
*/
|
|
2529
|
-
constructor(
|
|
2529
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
2530
2530
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
2531
2531
|
}
|
|
2532
2532
|
|
|
@@ -2679,7 +2679,7 @@ export class DashboardTemplateVariablePresetList extends cdktn.ComplexList {
|
|
|
2679
2679
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2680
2680
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
2681
2681
|
*/
|
|
2682
|
-
constructor(
|
|
2682
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
2683
2683
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
2684
2684
|
}
|
|
2685
2685
|
|
|
@@ -3450,7 +3450,7 @@ export class DashboardWidgetChangeDefinitionCustomLinkList extends cdktn.Complex
|
|
|
3450
3450
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
3451
3451
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
3452
3452
|
*/
|
|
3453
|
-
constructor(
|
|
3453
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
3454
3454
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
3455
3455
|
}
|
|
3456
3456
|
|
|
@@ -3941,7 +3941,7 @@ export class DashboardWidgetChangeDefinitionRequestApmQueryGroupByList extends c
|
|
|
3941
3941
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
3942
3942
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
3943
3943
|
*/
|
|
3944
|
-
constructor(
|
|
3944
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
3945
3945
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
3946
3946
|
}
|
|
3947
3947
|
|
|
@@ -4126,7 +4126,7 @@ export class DashboardWidgetChangeDefinitionRequestApmQueryMultiComputeList exte
|
|
|
4126
4126
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
4127
4127
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
4128
4128
|
*/
|
|
4129
|
-
constructor(
|
|
4129
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
4130
4130
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
4131
4131
|
}
|
|
4132
4132
|
|
|
@@ -4738,7 +4738,7 @@ export class DashboardWidgetChangeDefinitionRequestFormulaConditionalFormatsList
|
|
|
4738
4738
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
4739
4739
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
4740
4740
|
*/
|
|
4741
|
-
constructor(
|
|
4741
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
4742
4742
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
4743
4743
|
}
|
|
4744
4744
|
|
|
@@ -5114,7 +5114,7 @@ export class DashboardWidgetChangeDefinitionRequestFormulaList extends cdktn.Com
|
|
|
5114
5114
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
5115
5115
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
5116
5116
|
*/
|
|
5117
|
-
constructor(
|
|
5117
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
5118
5118
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
5119
5119
|
}
|
|
5120
5120
|
|
|
@@ -5605,7 +5605,7 @@ export class DashboardWidgetChangeDefinitionRequestLogQueryGroupByList extends c
|
|
|
5605
5605
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
5606
5606
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
5607
5607
|
*/
|
|
5608
|
-
constructor(
|
|
5608
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
5609
5609
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
5610
5610
|
}
|
|
5611
5611
|
|
|
@@ -5790,7 +5790,7 @@ export class DashboardWidgetChangeDefinitionRequestLogQueryMultiComputeList exte
|
|
|
5790
5790
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
5791
5791
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
5792
5792
|
*/
|
|
5793
|
-
constructor(
|
|
5793
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
5794
5794
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
5795
5795
|
}
|
|
5796
5796
|
|
|
@@ -7152,7 +7152,7 @@ export class DashboardWidgetChangeDefinitionRequestQueryEventQueryComputeList ex
|
|
|
7152
7152
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
7153
7153
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
7154
7154
|
*/
|
|
7155
|
-
constructor(
|
|
7155
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
7156
7156
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
7157
7157
|
}
|
|
7158
7158
|
|
|
@@ -7490,7 +7490,7 @@ export class DashboardWidgetChangeDefinitionRequestQueryEventQueryGroupByList ex
|
|
|
7490
7490
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
7491
7491
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
7492
7492
|
*/
|
|
7493
|
-
constructor(
|
|
7493
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
7494
7494
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
7495
7495
|
}
|
|
7496
7496
|
|
|
@@ -8625,7 +8625,7 @@ export class DashboardWidgetChangeDefinitionRequestQueryList extends cdktn.Compl
|
|
|
8625
8625
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
8626
8626
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
8627
8627
|
*/
|
|
8628
|
-
constructor(
|
|
8628
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
8629
8629
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
8630
8630
|
}
|
|
8631
8631
|
|
|
@@ -9116,7 +9116,7 @@ export class DashboardWidgetChangeDefinitionRequestRumQueryGroupByList extends c
|
|
|
9116
9116
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
9117
9117
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
9118
9118
|
*/
|
|
9119
|
-
constructor(
|
|
9119
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
9120
9120
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
9121
9121
|
}
|
|
9122
9122
|
|
|
@@ -9301,7 +9301,7 @@ export class DashboardWidgetChangeDefinitionRequestRumQueryMultiComputeList exte
|
|
|
9301
9301
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
9302
9302
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
9303
9303
|
*/
|
|
9304
|
-
constructor(
|
|
9304
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
9305
9305
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
9306
9306
|
}
|
|
9307
9307
|
|
|
@@ -10015,7 +10015,7 @@ export class DashboardWidgetChangeDefinitionRequestSecurityQueryGroupByList exte
|
|
|
10015
10015
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
10016
10016
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
10017
10017
|
*/
|
|
10018
|
-
constructor(
|
|
10018
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
10019
10019
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
10020
10020
|
}
|
|
10021
10021
|
|
|
@@ -10200,7 +10200,7 @@ export class DashboardWidgetChangeDefinitionRequestSecurityQueryMultiComputeList
|
|
|
10200
10200
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
10201
10201
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
10202
10202
|
*/
|
|
10203
|
-
constructor(
|
|
10203
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
10204
10204
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
10205
10205
|
}
|
|
10206
10206
|
|
|
@@ -10996,7 +10996,7 @@ export class DashboardWidgetChangeDefinitionRequestList extends cdktn.ComplexLis
|
|
|
10996
10996
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
10997
10997
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
10998
10998
|
*/
|
|
10999
|
-
constructor(
|
|
10999
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
11000
11000
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
11001
11001
|
}
|
|
11002
11002
|
|
|
@@ -12108,7 +12108,7 @@ export class DashboardWidgetDistributionDefinitionRequestApmQueryGroupByList ext
|
|
|
12108
12108
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
12109
12109
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
12110
12110
|
*/
|
|
12111
|
-
constructor(
|
|
12111
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
12112
12112
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
12113
12113
|
}
|
|
12114
12114
|
|
|
@@ -12293,7 +12293,7 @@ export class DashboardWidgetDistributionDefinitionRequestApmQueryMultiComputeLis
|
|
|
12293
12293
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
12294
12294
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
12295
12295
|
*/
|
|
12296
|
-
constructor(
|
|
12296
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
12297
12297
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
12298
12298
|
}
|
|
12299
12299
|
|
|
@@ -12736,7 +12736,7 @@ export class DashboardWidgetDistributionDefinitionRequestApmStatsQueryColumnsLis
|
|
|
12736
12736
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
12737
12737
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
12738
12738
|
*/
|
|
12739
|
-
constructor(
|
|
12739
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
12740
12740
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
12741
12741
|
}
|
|
12742
12742
|
|
|
@@ -13508,7 +13508,7 @@ export class DashboardWidgetDistributionDefinitionRequestLogQueryGroupByList ext
|
|
|
13508
13508
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
13509
13509
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
13510
13510
|
*/
|
|
13511
|
-
constructor(
|
|
13511
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
13512
13512
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
13513
13513
|
}
|
|
13514
13514
|
|
|
@@ -13693,7 +13693,7 @@ export class DashboardWidgetDistributionDefinitionRequestLogQueryMultiComputeLis
|
|
|
13693
13693
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
13694
13694
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
13695
13695
|
*/
|
|
13696
|
-
constructor(
|
|
13696
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
13697
13697
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
13698
13698
|
}
|
|
13699
13699
|
|
|
@@ -14595,7 +14595,7 @@ export class DashboardWidgetDistributionDefinitionRequestRumQueryGroupByList ext
|
|
|
14595
14595
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
14596
14596
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
14597
14597
|
*/
|
|
14598
|
-
constructor(
|
|
14598
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
14599
14599
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
14600
14600
|
}
|
|
14601
14601
|
|
|
@@ -14780,7 +14780,7 @@ export class DashboardWidgetDistributionDefinitionRequestRumQueryMultiComputeLis
|
|
|
14780
14780
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
14781
14781
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
14782
14782
|
*/
|
|
14783
|
-
constructor(
|
|
14783
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
14784
14784
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
14785
14785
|
}
|
|
14786
14786
|
|
|
@@ -15494,7 +15494,7 @@ export class DashboardWidgetDistributionDefinitionRequestSecurityQueryGroupByLis
|
|
|
15494
15494
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
15495
15495
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
15496
15496
|
*/
|
|
15497
|
-
constructor(
|
|
15497
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
15498
15498
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
15499
15499
|
}
|
|
15500
15500
|
|
|
@@ -15679,7 +15679,7 @@ export class DashboardWidgetDistributionDefinitionRequestSecurityQueryMultiCompu
|
|
|
15679
15679
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
15680
15680
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
15681
15681
|
*/
|
|
15682
|
-
constructor(
|
|
15682
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
15683
15683
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
15684
15684
|
}
|
|
15685
15685
|
|
|
@@ -16351,7 +16351,7 @@ export class DashboardWidgetDistributionDefinitionRequestList extends cdktn.Comp
|
|
|
16351
16351
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
16352
16352
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
16353
16353
|
*/
|
|
16354
|
-
constructor(
|
|
16354
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
16355
16355
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
16356
16356
|
}
|
|
16357
16357
|
|
|
@@ -17609,7 +17609,7 @@ export class DashboardWidgetGeomapDefinitionCustomLinkList extends cdktn.Complex
|
|
|
17609
17609
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
17610
17610
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
17611
17611
|
*/
|
|
17612
|
-
constructor(
|
|
17612
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
17613
17613
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
17614
17614
|
}
|
|
17615
17615
|
|
|
@@ -17998,7 +17998,7 @@ export class DashboardWidgetGeomapDefinitionRequestFormulaConditionalFormatsList
|
|
|
17998
17998
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
17999
17999
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
18000
18000
|
*/
|
|
18001
|
-
constructor(
|
|
18001
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
18002
18002
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
18003
18003
|
}
|
|
18004
18004
|
|
|
@@ -18374,7 +18374,7 @@ export class DashboardWidgetGeomapDefinitionRequestFormulaList extends cdktn.Com
|
|
|
18374
18374
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
18375
18375
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
18376
18376
|
*/
|
|
18377
|
-
constructor(
|
|
18377
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
18378
18378
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
18379
18379
|
}
|
|
18380
18380
|
|
|
@@ -18865,7 +18865,7 @@ export class DashboardWidgetGeomapDefinitionRequestLogQueryGroupByList extends c
|
|
|
18865
18865
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
18866
18866
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
18867
18867
|
*/
|
|
18868
|
-
constructor(
|
|
18868
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
18869
18869
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
18870
18870
|
}
|
|
18871
18871
|
|
|
@@ -19050,7 +19050,7 @@ export class DashboardWidgetGeomapDefinitionRequestLogQueryMultiComputeList exte
|
|
|
19050
19050
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
19051
19051
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
19052
19052
|
*/
|
|
19053
|
-
constructor(
|
|
19053
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
19054
19054
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
19055
19055
|
}
|
|
19056
19056
|
|
|
@@ -20224,7 +20224,7 @@ export class DashboardWidgetGeomapDefinitionRequestQueryEventQueryComputeList ex
|
|
|
20224
20224
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
20225
20225
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
20226
20226
|
*/
|
|
20227
|
-
constructor(
|
|
20227
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
20228
20228
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
20229
20229
|
}
|
|
20230
20230
|
|
|
@@ -20562,7 +20562,7 @@ export class DashboardWidgetGeomapDefinitionRequestQueryEventQueryGroupByList ex
|
|
|
20562
20562
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
20563
20563
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
20564
20564
|
*/
|
|
20565
|
-
constructor(
|
|
20565
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
20566
20566
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
20567
20567
|
}
|
|
20568
20568
|
|
|
@@ -21697,7 +21697,7 @@ export class DashboardWidgetGeomapDefinitionRequestQueryList extends cdktn.Compl
|
|
|
21697
21697
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
21698
21698
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
21699
21699
|
*/
|
|
21700
|
-
constructor(
|
|
21700
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
21701
21701
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
21702
21702
|
}
|
|
21703
21703
|
|
|
@@ -22188,7 +22188,7 @@ export class DashboardWidgetGeomapDefinitionRequestRumQueryGroupByList extends c
|
|
|
22188
22188
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
22189
22189
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
22190
22190
|
*/
|
|
22191
|
-
constructor(
|
|
22191
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
22192
22192
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
22193
22193
|
}
|
|
22194
22194
|
|
|
@@ -22373,7 +22373,7 @@ export class DashboardWidgetGeomapDefinitionRequestRumQueryMultiComputeList exte
|
|
|
22373
22373
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
22374
22374
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
22375
22375
|
*/
|
|
22376
|
-
constructor(
|
|
22376
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
22377
22377
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
22378
22378
|
}
|
|
22379
22379
|
|
|
@@ -22854,7 +22854,7 @@ export class DashboardWidgetGeomapDefinitionRequestList extends cdktn.ComplexLis
|
|
|
22854
22854
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
22855
22855
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
22856
22856
|
*/
|
|
22857
|
-
constructor(
|
|
22857
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
22858
22858
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
22859
22859
|
}
|
|
22860
22860
|
|
|
@@ -24151,7 +24151,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionCustomLinkList
|
|
|
24151
24151
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
24152
24152
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
24153
24153
|
*/
|
|
24154
|
-
constructor(
|
|
24154
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
24155
24155
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
24156
24156
|
}
|
|
24157
24157
|
|
|
@@ -24642,7 +24642,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
|
|
|
24642
24642
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
24643
24643
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
24644
24644
|
*/
|
|
24645
|
-
constructor(
|
|
24645
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
24646
24646
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
24647
24647
|
}
|
|
24648
24648
|
|
|
@@ -24827,7 +24827,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
|
|
|
24827
24827
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
24828
24828
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
24829
24829
|
*/
|
|
24830
|
-
constructor(
|
|
24830
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
24831
24831
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
24832
24832
|
}
|
|
24833
24833
|
|
|
@@ -25439,7 +25439,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaC
|
|
|
25439
25439
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
25440
25440
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
25441
25441
|
*/
|
|
25442
|
-
constructor(
|
|
25442
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
25443
25443
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
25444
25444
|
}
|
|
25445
25445
|
|
|
@@ -25815,7 +25815,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaL
|
|
|
25815
25815
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
25816
25816
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
25817
25817
|
*/
|
|
25818
|
-
constructor(
|
|
25818
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
25819
25819
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
25820
25820
|
}
|
|
25821
25821
|
|
|
@@ -26306,7 +26306,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
|
|
|
26306
26306
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
26307
26307
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
26308
26308
|
*/
|
|
26309
|
-
constructor(
|
|
26309
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
26310
26310
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
26311
26311
|
}
|
|
26312
26312
|
|
|
@@ -26491,7 +26491,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
|
|
|
26491
26491
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
26492
26492
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
26493
26493
|
*/
|
|
26494
|
-
constructor(
|
|
26494
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
26495
26495
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
26496
26496
|
}
|
|
26497
26497
|
|
|
@@ -27811,7 +27811,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecu
|
|
|
27811
27811
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
27812
27812
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
27813
27813
|
*/
|
|
27814
|
-
constructor(
|
|
27814
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
27815
27815
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
27816
27816
|
}
|
|
27817
27817
|
|
|
@@ -27996,7 +27996,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecu
|
|
|
27996
27996
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
27997
27997
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
27998
27998
|
*/
|
|
27999
|
-
constructor(
|
|
27999
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
28000
28000
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
28001
28001
|
}
|
|
28002
28002
|
|
|
@@ -28687,7 +28687,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestList
|
|
|
28687
28687
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
28688
28688
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
28689
28689
|
*/
|
|
28690
|
-
constructor(
|
|
28690
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
28691
28691
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
28692
28692
|
}
|
|
28693
28693
|
|
|
@@ -29690,7 +29690,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink
|
|
|
29690
29690
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
29691
29691
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
29692
29692
|
*/
|
|
29693
|
-
constructor(
|
|
29693
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
29694
29694
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
29695
29695
|
}
|
|
29696
29696
|
|
|
@@ -29872,7 +29872,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestSca
|
|
|
29872
29872
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
29873
29873
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
29874
29874
|
*/
|
|
29875
|
-
constructor(
|
|
29875
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
29876
29876
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
29877
29877
|
}
|
|
29878
29878
|
|
|
@@ -30823,7 +30823,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestSca
|
|
|
30823
30823
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
30824
30824
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
30825
30825
|
*/
|
|
30826
|
-
constructor(
|
|
30826
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
30827
30827
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
30828
30828
|
}
|
|
30829
30829
|
|
|
@@ -31161,7 +31161,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestSca
|
|
|
31161
31161
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
31162
31162
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
31163
31163
|
*/
|
|
31164
|
-
constructor(
|
|
31164
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
31165
31165
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
31166
31166
|
}
|
|
31167
31167
|
|
|
@@ -32296,7 +32296,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestSca
|
|
|
32296
32296
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
32297
32297
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
32298
32298
|
*/
|
|
32299
|
-
constructor(
|
|
32299
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
32300
32300
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
32301
32301
|
}
|
|
32302
32302
|
|
|
@@ -32449,7 +32449,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestSca
|
|
|
32449
32449
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
32450
32450
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
32451
32451
|
*/
|
|
32452
|
-
constructor(
|
|
32452
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
32453
32453
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
32454
32454
|
}
|
|
32455
32455
|
|
|
@@ -32940,7 +32940,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXAp
|
|
|
32940
32940
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
32941
32941
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
32942
32942
|
*/
|
|
32943
|
-
constructor(
|
|
32943
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
32944
32944
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
32945
32945
|
}
|
|
32946
32946
|
|
|
@@ -33125,7 +33125,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXAp
|
|
|
33125
33125
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
33126
33126
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
33127
33127
|
*/
|
|
33128
|
-
constructor(
|
|
33128
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
33129
33129
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
33130
33130
|
}
|
|
33131
33131
|
|
|
@@ -33839,7 +33839,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLo
|
|
|
33839
33839
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
33840
33840
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
33841
33841
|
*/
|
|
33842
|
-
constructor(
|
|
33842
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
33843
33843
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
33844
33844
|
}
|
|
33845
33845
|
|
|
@@ -34024,7 +34024,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLo
|
|
|
34024
34024
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
34025
34025
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
34026
34026
|
*/
|
|
34027
|
-
constructor(
|
|
34027
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
34028
34028
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
34029
34029
|
}
|
|
34030
34030
|
|
|
@@ -34926,7 +34926,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRu
|
|
|
34926
34926
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
34927
34927
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
34928
34928
|
*/
|
|
34929
|
-
constructor(
|
|
34929
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
34930
34930
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
34931
34931
|
}
|
|
34932
34932
|
|
|
@@ -35111,7 +35111,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRu
|
|
|
35111
35111
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
35112
35112
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
35113
35113
|
*/
|
|
35114
|
-
constructor(
|
|
35114
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
35115
35115
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
35116
35116
|
}
|
|
35117
35117
|
|
|
@@ -35825,7 +35825,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSe
|
|
|
35825
35825
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
35826
35826
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
35827
35827
|
*/
|
|
35828
|
-
constructor(
|
|
35828
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
35829
35829
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
35830
35830
|
}
|
|
35831
35831
|
|
|
@@ -36010,7 +36010,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSe
|
|
|
36010
36010
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
36011
36011
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
36012
36012
|
*/
|
|
36013
|
-
constructor(
|
|
36013
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
36014
36014
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
36015
36015
|
}
|
|
36016
36016
|
|
|
@@ -36561,7 +36561,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLi
|
|
|
36561
36561
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
36562
36562
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
36563
36563
|
*/
|
|
36564
|
-
constructor(
|
|
36564
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
36565
36565
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
36566
36566
|
}
|
|
36567
36567
|
|
|
@@ -37052,7 +37052,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYAp
|
|
|
37052
37052
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
37053
37053
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
37054
37054
|
*/
|
|
37055
|
-
constructor(
|
|
37055
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
37056
37056
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
37057
37057
|
}
|
|
37058
37058
|
|
|
@@ -37237,7 +37237,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYAp
|
|
|
37237
37237
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
37238
37238
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
37239
37239
|
*/
|
|
37240
|
-
constructor(
|
|
37240
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
37241
37241
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
37242
37242
|
}
|
|
37243
37243
|
|
|
@@ -37951,7 +37951,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLo
|
|
|
37951
37951
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
37952
37952
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
37953
37953
|
*/
|
|
37954
|
-
constructor(
|
|
37954
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
37955
37955
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
37956
37956
|
}
|
|
37957
37957
|
|
|
@@ -38136,7 +38136,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLo
|
|
|
38136
38136
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
38137
38137
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
38138
38138
|
*/
|
|
38139
|
-
constructor(
|
|
38139
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
38140
38140
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
38141
38141
|
}
|
|
38142
38142
|
|
|
@@ -39038,7 +39038,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRu
|
|
|
39038
39038
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
39039
39039
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
39040
39040
|
*/
|
|
39041
|
-
constructor(
|
|
39041
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
39042
39042
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
39043
39043
|
}
|
|
39044
39044
|
|
|
@@ -39223,7 +39223,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRu
|
|
|
39223
39223
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
39224
39224
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
39225
39225
|
*/
|
|
39226
|
-
constructor(
|
|
39226
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
39227
39227
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
39228
39228
|
}
|
|
39229
39229
|
|
|
@@ -39937,7 +39937,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSe
|
|
|
39937
39937
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
39938
39938
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
39939
39939
|
*/
|
|
39940
|
-
constructor(
|
|
39940
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
39941
39941
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
39942
39942
|
}
|
|
39943
39943
|
|
|
@@ -40122,7 +40122,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSe
|
|
|
40122
40122
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
40123
40123
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
40124
40124
|
*/
|
|
40125
|
-
constructor(
|
|
40125
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
40126
40126
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
40127
40127
|
}
|
|
40128
40128
|
|
|
@@ -40673,7 +40673,7 @@ export class DashboardWidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLi
|
|
|
40673
40673
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
40674
40674
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
40675
40675
|
*/
|
|
40676
|
-
constructor(
|
|
40676
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
40677
40677
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
40678
40678
|
}
|
|
40679
40679
|
|
|
@@ -42224,7 +42224,7 @@ export class DashboardWidgetGroupDefinitionWidgetServicemapDefinitionCustomLinkL
|
|
|
42224
42224
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
42225
42225
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
42226
42226
|
*/
|
|
42227
|
-
constructor(
|
|
42227
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
42228
42228
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
42229
42229
|
}
|
|
42230
42230
|
|
|
@@ -42702,7 +42702,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionCustomLinkLis
|
|
|
42702
42702
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
42703
42703
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
42704
42704
|
*/
|
|
42705
|
-
constructor(
|
|
42705
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
42706
42706
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
42707
42707
|
}
|
|
42708
42708
|
|
|
@@ -43429,7 +43429,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQue
|
|
|
43429
43429
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
43430
43430
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
43431
43431
|
*/
|
|
43432
|
-
constructor(
|
|
43432
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
43433
43433
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
43434
43434
|
}
|
|
43435
43435
|
|
|
@@ -43614,7 +43614,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQue
|
|
|
43614
43614
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
43615
43615
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
43616
43616
|
*/
|
|
43617
|
-
constructor(
|
|
43617
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
43618
43618
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
43619
43619
|
}
|
|
43620
43620
|
|
|
@@ -44328,7 +44328,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQ
|
|
|
44328
44328
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
44329
44329
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
44330
44330
|
*/
|
|
44331
|
-
constructor(
|
|
44331
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
44332
44332
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
44333
44333
|
}
|
|
44334
44334
|
|
|
@@ -44513,7 +44513,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQ
|
|
|
44513
44513
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
44514
44514
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
44515
44515
|
*/
|
|
44516
|
-
constructor(
|
|
44516
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
44517
44517
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
44518
44518
|
}
|
|
44519
44519
|
|
|
@@ -45125,7 +45125,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestFormul
|
|
|
45125
45125
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
45126
45126
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
45127
45127
|
*/
|
|
45128
|
-
constructor(
|
|
45128
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
45129
45129
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
45130
45130
|
}
|
|
45131
45131
|
|
|
@@ -45501,7 +45501,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestFormul
|
|
|
45501
45501
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
45502
45502
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
45503
45503
|
*/
|
|
45504
|
-
constructor(
|
|
45504
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
45505
45505
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
45506
45506
|
}
|
|
45507
45507
|
|
|
@@ -45992,7 +45992,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQue
|
|
|
45992
45992
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
45993
45993
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
45994
45994
|
*/
|
|
45995
|
-
constructor(
|
|
45995
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
45996
45996
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
45997
45997
|
}
|
|
45998
45998
|
|
|
@@ -46177,7 +46177,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQue
|
|
|
46177
46177
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
46178
46178
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
46179
46179
|
*/
|
|
46180
|
-
constructor(
|
|
46180
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
46181
46181
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
46182
46182
|
}
|
|
46183
46183
|
|
|
@@ -46891,7 +46891,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestNetwor
|
|
|
46891
46891
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
46892
46892
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
46893
46893
|
*/
|
|
46894
|
-
constructor(
|
|
46894
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
46895
46895
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
46896
46896
|
}
|
|
46897
46897
|
|
|
@@ -47076,7 +47076,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestNetwor
|
|
|
47076
47076
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
47077
47077
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
47078
47078
|
*/
|
|
47079
|
-
constructor(
|
|
47079
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
47080
47080
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
47081
47081
|
}
|
|
47082
47082
|
|
|
@@ -48438,7 +48438,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestQueryE
|
|
|
48438
48438
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
48439
48439
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
48440
48440
|
*/
|
|
48441
|
-
constructor(
|
|
48441
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
48442
48442
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
48443
48443
|
}
|
|
48444
48444
|
|
|
@@ -48776,7 +48776,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestQueryE
|
|
|
48776
48776
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
48777
48777
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
48778
48778
|
*/
|
|
48779
|
-
constructor(
|
|
48779
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
48780
48780
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
48781
48781
|
}
|
|
48782
48782
|
|
|
@@ -49911,7 +49911,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestQueryL
|
|
|
49911
49911
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
49912
49912
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
49913
49913
|
*/
|
|
49914
|
-
constructor(
|
|
49914
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
49915
49915
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
49916
49916
|
}
|
|
49917
49917
|
|
|
@@ -50402,7 +50402,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQue
|
|
|
50402
50402
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
50403
50403
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
50404
50404
|
*/
|
|
50405
|
-
constructor(
|
|
50405
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
50406
50406
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
50407
50407
|
}
|
|
50408
50408
|
|
|
@@ -50587,7 +50587,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQue
|
|
|
50587
50587
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
50588
50588
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
50589
50589
|
*/
|
|
50590
|
-
constructor(
|
|
50590
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
50591
50591
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
50592
50592
|
}
|
|
50593
50593
|
|
|
@@ -51301,7 +51301,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestSecuri
|
|
|
51301
51301
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
51302
51302
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
51303
51303
|
*/
|
|
51304
|
-
constructor(
|
|
51304
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
51305
51305
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
51306
51306
|
}
|
|
51307
51307
|
|
|
@@ -51540,7 +51540,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestSecuri
|
|
|
51540
51540
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
51541
51541
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
51542
51542
|
*/
|
|
51543
|
-
constructor(
|
|
51543
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
51544
51544
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
51545
51545
|
}
|
|
51546
51546
|
|
|
@@ -52196,7 +52196,7 @@ export class DashboardWidgetGroupDefinitionWidgetSunburstDefinitionRequestList e
|
|
|
52196
52196
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
52197
52197
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
52198
52198
|
*/
|
|
52199
|
-
constructor(
|
|
52199
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
52200
52200
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
52201
52201
|
}
|
|
52202
52202
|
|
|
@@ -52785,7 +52785,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionCustomLinkL
|
|
|
52785
52785
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
52786
52786
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
52787
52787
|
*/
|
|
52788
|
-
constructor(
|
|
52788
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
52789
52789
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
52790
52790
|
}
|
|
52791
52791
|
|
|
@@ -52935,7 +52935,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionEventList e
|
|
|
52935
52935
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
52936
52936
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
52937
52937
|
*/
|
|
52938
|
-
constructor(
|
|
52938
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
52939
52939
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
52940
52940
|
}
|
|
52941
52941
|
|
|
@@ -53120,7 +53120,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionMarkerList
|
|
|
53120
53120
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
53121
53121
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
53122
53122
|
*/
|
|
53123
|
-
constructor(
|
|
53123
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
53124
53124
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
53125
53125
|
}
|
|
53126
53126
|
|
|
@@ -53611,7 +53611,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestApmQ
|
|
|
53611
53611
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
53612
53612
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
53613
53613
|
*/
|
|
53614
|
-
constructor(
|
|
53614
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
53615
53615
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
53616
53616
|
}
|
|
53617
53617
|
|
|
@@ -53796,7 +53796,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestApmQ
|
|
|
53796
53796
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
53797
53797
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
53798
53798
|
*/
|
|
53799
|
-
constructor(
|
|
53799
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
53800
53800
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
53801
53801
|
}
|
|
53802
53802
|
|
|
@@ -54510,7 +54510,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAudi
|
|
|
54510
54510
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
54511
54511
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
54512
54512
|
*/
|
|
54513
|
-
constructor(
|
|
54513
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
54514
54514
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
54515
54515
|
}
|
|
54516
54516
|
|
|
@@ -54695,7 +54695,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestAudi
|
|
|
54695
54695
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
54696
54696
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
54697
54697
|
*/
|
|
54698
|
-
constructor(
|
|
54698
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
54699
54699
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
54700
54700
|
}
|
|
54701
54701
|
|
|
@@ -55307,7 +55307,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestForm
|
|
|
55307
55307
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
55308
55308
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
55309
55309
|
*/
|
|
55310
|
-
constructor(
|
|
55310
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
55311
55311
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
55312
55312
|
}
|
|
55313
55313
|
|
|
@@ -55683,7 +55683,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestForm
|
|
|
55683
55683
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
55684
55684
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
55685
55685
|
*/
|
|
55686
|
-
constructor(
|
|
55686
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
55687
55687
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
55688
55688
|
}
|
|
55689
55689
|
|
|
@@ -56174,7 +56174,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestLogQ
|
|
|
56174
56174
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
56175
56175
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
56176
56176
|
*/
|
|
56177
|
-
constructor(
|
|
56177
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
56178
56178
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
56179
56179
|
}
|
|
56180
56180
|
|
|
@@ -56359,7 +56359,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestLogQ
|
|
|
56359
56359
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
56360
56360
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
56361
56361
|
*/
|
|
56362
|
-
constructor(
|
|
56362
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
56363
56363
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
56364
56364
|
}
|
|
56365
56365
|
|
|
@@ -56732,7 +56732,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestMeta
|
|
|
56732
56732
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
56733
56733
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
56734
56734
|
*/
|
|
56735
|
-
constructor(
|
|
56735
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
56736
56736
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
56737
56737
|
}
|
|
56738
56738
|
|
|
@@ -57223,7 +57223,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestNetw
|
|
|
57223
57223
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
57224
57224
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
57225
57225
|
*/
|
|
57226
|
-
constructor(
|
|
57226
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
57227
57227
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
57228
57228
|
}
|
|
57229
57229
|
|
|
@@ -57408,7 +57408,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestNetw
|
|
|
57408
57408
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
57409
57409
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
57410
57410
|
*/
|
|
57411
|
-
constructor(
|
|
57411
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
57412
57412
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
57413
57413
|
}
|
|
57414
57414
|
|
|
@@ -58770,7 +58770,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQuer
|
|
|
58770
58770
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
58771
58771
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
58772
58772
|
*/
|
|
58773
|
-
constructor(
|
|
58773
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
58774
58774
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
58775
58775
|
}
|
|
58776
58776
|
|
|
@@ -59108,7 +59108,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQuer
|
|
|
59108
59108
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
59109
59109
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
59110
59110
|
*/
|
|
59111
|
-
constructor(
|
|
59111
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
59112
59112
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
59113
59113
|
}
|
|
59114
59114
|
|
|
@@ -60243,7 +60243,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQuer
|
|
|
60243
60243
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
60244
60244
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
60245
60245
|
*/
|
|
60246
|
-
constructor(
|
|
60246
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
60247
60247
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
60248
60248
|
}
|
|
60249
60249
|
|
|
@@ -60734,7 +60734,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestRumQ
|
|
|
60734
60734
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
60735
60735
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
60736
60736
|
*/
|
|
60737
|
-
constructor(
|
|
60737
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
60738
60738
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
60739
60739
|
}
|
|
60740
60740
|
|
|
@@ -60919,7 +60919,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestRumQ
|
|
|
60919
60919
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
60920
60920
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
60921
60921
|
*/
|
|
60922
|
-
constructor(
|
|
60922
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
60923
60923
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
60924
60924
|
}
|
|
60925
60925
|
|
|
@@ -61633,7 +61633,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestSecu
|
|
|
61633
61633
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
61634
61634
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
61635
61635
|
*/
|
|
61636
|
-
constructor(
|
|
61636
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
61637
61637
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
61638
61638
|
}
|
|
61639
61639
|
|
|
@@ -61818,7 +61818,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestSecu
|
|
|
61818
61818
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
61819
61819
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
61820
61820
|
*/
|
|
61821
|
-
constructor(
|
|
61821
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
61822
61822
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
61823
61823
|
}
|
|
61824
61824
|
|
|
@@ -62770,7 +62770,7 @@ export class DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestList
|
|
|
62770
62770
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
62771
62771
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
62772
62772
|
*/
|
|
62773
|
-
constructor(
|
|
62773
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
62774
62774
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
62775
62775
|
}
|
|
62776
62776
|
|
|
@@ -63986,7 +63986,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionCustomLinkList
|
|
|
63986
63986
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
63987
63987
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
63988
63988
|
*/
|
|
63989
|
-
constructor(
|
|
63989
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
63990
63990
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
63991
63991
|
}
|
|
63992
63992
|
|
|
@@ -64477,7 +64477,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestApmQuer
|
|
|
64477
64477
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
64478
64478
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
64479
64479
|
*/
|
|
64480
|
-
constructor(
|
|
64480
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
64481
64481
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
64482
64482
|
}
|
|
64483
64483
|
|
|
@@ -64662,7 +64662,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestApmQuer
|
|
|
64662
64662
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
64663
64663
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
64664
64664
|
*/
|
|
64665
|
-
constructor(
|
|
64665
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
64666
64666
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
64667
64667
|
}
|
|
64668
64668
|
|
|
@@ -65376,7 +65376,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQu
|
|
|
65376
65376
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
65377
65377
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
65378
65378
|
*/
|
|
65379
|
-
constructor(
|
|
65379
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
65380
65380
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
65381
65381
|
}
|
|
65382
65382
|
|
|
@@ -65561,7 +65561,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestAuditQu
|
|
|
65561
65561
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
65562
65562
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
65563
65563
|
*/
|
|
65564
|
-
constructor(
|
|
65564
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
65565
65565
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
65566
65566
|
}
|
|
65567
65567
|
|
|
@@ -66173,7 +66173,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestConditi
|
|
|
66173
66173
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
66174
66174
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
66175
66175
|
*/
|
|
66176
|
-
constructor(
|
|
66176
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
66177
66177
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
66178
66178
|
}
|
|
66179
66179
|
|
|
@@ -66562,7 +66562,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormula
|
|
|
66562
66562
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
66563
66563
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
66564
66564
|
*/
|
|
66565
|
-
constructor(
|
|
66565
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
66566
66566
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
66567
66567
|
}
|
|
66568
66568
|
|
|
@@ -66938,7 +66938,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestFormula
|
|
|
66938
66938
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
66939
66939
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
66940
66940
|
*/
|
|
66941
|
-
constructor(
|
|
66941
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
66942
66942
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
66943
66943
|
}
|
|
66944
66944
|
|
|
@@ -67429,7 +67429,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestLogQuer
|
|
|
67429
67429
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
67430
67430
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
67431
67431
|
*/
|
|
67432
|
-
constructor(
|
|
67432
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
67433
67433
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
67434
67434
|
}
|
|
67435
67435
|
|
|
@@ -67614,7 +67614,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestLogQuer
|
|
|
67614
67614
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
67615
67615
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
67616
67616
|
*/
|
|
67617
|
-
constructor(
|
|
67617
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
67618
67618
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
67619
67619
|
}
|
|
67620
67620
|
|
|
@@ -68976,7 +68976,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryEv
|
|
|
68976
68976
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
68977
68977
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
68978
68978
|
*/
|
|
68979
|
-
constructor(
|
|
68979
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
68980
68980
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
68981
68981
|
}
|
|
68982
68982
|
|
|
@@ -69314,7 +69314,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryEv
|
|
|
69314
69314
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
69315
69315
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
69316
69316
|
*/
|
|
69317
|
-
constructor(
|
|
69317
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
69318
69318
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
69319
69319
|
}
|
|
69320
69320
|
|
|
@@ -70449,7 +70449,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryLi
|
|
|
70449
70449
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
70450
70450
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
70451
70451
|
*/
|
|
70452
|
-
constructor(
|
|
70452
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
70453
70453
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
70454
70454
|
}
|
|
70455
70455
|
|
|
@@ -70940,7 +70940,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestRumQuer
|
|
|
70940
70940
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
70941
70941
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
70942
70942
|
*/
|
|
70943
|
-
constructor(
|
|
70943
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
70944
70944
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
70945
70945
|
}
|
|
70946
70946
|
|
|
@@ -71125,7 +71125,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestRumQuer
|
|
|
71125
71125
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
71126
71126
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
71127
71127
|
*/
|
|
71128
|
-
constructor(
|
|
71128
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
71129
71129
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
71130
71130
|
}
|
|
71131
71131
|
|
|
@@ -71839,7 +71839,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestSecurit
|
|
|
71839
71839
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
71840
71840
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
71841
71841
|
*/
|
|
71842
|
-
constructor(
|
|
71842
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
71843
71843
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
71844
71844
|
}
|
|
71845
71845
|
|
|
@@ -72024,7 +72024,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestSecurit
|
|
|
72024
72024
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
72025
72025
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
72026
72026
|
*/
|
|
72027
|
-
constructor(
|
|
72027
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
72028
72028
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
72029
72029
|
}
|
|
72030
72030
|
|
|
@@ -72801,7 +72801,7 @@ export class DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestList ex
|
|
|
72801
72801
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
72802
72802
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
72803
72803
|
*/
|
|
72804
|
-
constructor(
|
|
72804
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
72805
72805
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
72806
72806
|
}
|
|
72807
72807
|
|
|
@@ -74018,7 +74018,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormula
|
|
|
74018
74018
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
74019
74019
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
74020
74020
|
*/
|
|
74021
|
-
constructor(
|
|
74021
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
74022
74022
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
74023
74023
|
}
|
|
74024
74024
|
|
|
@@ -74394,7 +74394,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestFormula
|
|
|
74394
74394
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
74395
74395
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
74396
74396
|
*/
|
|
74397
|
-
constructor(
|
|
74397
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
74398
74398
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
74399
74399
|
}
|
|
74400
74400
|
|
|
@@ -75345,7 +75345,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEv
|
|
|
75345
75345
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
75346
75346
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
75347
75347
|
*/
|
|
75348
|
-
constructor(
|
|
75348
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
75349
75349
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
75350
75350
|
}
|
|
75351
75351
|
|
|
@@ -75683,7 +75683,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryEv
|
|
|
75683
75683
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
75684
75684
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
75685
75685
|
*/
|
|
75686
|
-
constructor(
|
|
75686
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
75687
75687
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
75688
75688
|
}
|
|
75689
75689
|
|
|
@@ -76818,7 +76818,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestQueryLi
|
|
|
76818
76818
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
76819
76819
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
76820
76820
|
*/
|
|
76821
|
-
constructor(
|
|
76821
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
76822
76822
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
76823
76823
|
}
|
|
76824
76824
|
|
|
@@ -76971,7 +76971,7 @@ export class DashboardWidgetGroupDefinitionWidgetTreemapDefinitionRequestList ex
|
|
|
76971
76971
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
76972
76972
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
76973
76973
|
*/
|
|
76974
|
-
constructor(
|
|
76974
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
76975
76975
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
76976
76976
|
}
|
|
76977
76977
|
|
|
@@ -78445,7 +78445,7 @@ export class DashboardWidgetGroupDefinitionWidgetList extends cdktn.ComplexList
|
|
|
78445
78445
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
78446
78446
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
78447
78447
|
*/
|
|
78448
|
-
constructor(
|
|
78448
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
78449
78449
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
78450
78450
|
}
|
|
78451
78451
|
|
|
@@ -78923,7 +78923,7 @@ export class DashboardWidgetHeatmapDefinitionCustomLinkList extends cdktn.Comple
|
|
|
78923
78923
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
78924
78924
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
78925
78925
|
*/
|
|
78926
|
-
constructor(
|
|
78926
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
78927
78927
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
78928
78928
|
}
|
|
78929
78929
|
|
|
@@ -79073,7 +79073,7 @@ export class DashboardWidgetHeatmapDefinitionEventList extends cdktn.ComplexList
|
|
|
79073
79073
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
79074
79074
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
79075
79075
|
*/
|
|
79076
|
-
constructor(
|
|
79076
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
79077
79077
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
79078
79078
|
}
|
|
79079
79079
|
|
|
@@ -79564,7 +79564,7 @@ export class DashboardWidgetHeatmapDefinitionRequestApmQueryGroupByList extends
|
|
|
79564
79564
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
79565
79565
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
79566
79566
|
*/
|
|
79567
|
-
constructor(
|
|
79567
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
79568
79568
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
79569
79569
|
}
|
|
79570
79570
|
|
|
@@ -79749,7 +79749,7 @@ export class DashboardWidgetHeatmapDefinitionRequestApmQueryMultiComputeList ext
|
|
|
79749
79749
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
79750
79750
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
79751
79751
|
*/
|
|
79752
|
-
constructor(
|
|
79752
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
79753
79753
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
79754
79754
|
}
|
|
79755
79755
|
|
|
@@ -80463,7 +80463,7 @@ export class DashboardWidgetHeatmapDefinitionRequestLogQueryGroupByList extends
|
|
|
80463
80463
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
80464
80464
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
80465
80465
|
*/
|
|
80466
|
-
constructor(
|
|
80466
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
80467
80467
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
80468
80468
|
}
|
|
80469
80469
|
|
|
@@ -80648,7 +80648,7 @@ export class DashboardWidgetHeatmapDefinitionRequestLogQueryMultiComputeList ext
|
|
|
80648
80648
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
80649
80649
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
80650
80650
|
*/
|
|
80651
|
-
constructor(
|
|
80651
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
80652
80652
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
80653
80653
|
}
|
|
80654
80654
|
|
|
@@ -81550,7 +81550,7 @@ export class DashboardWidgetHeatmapDefinitionRequestRumQueryGroupByList extends
|
|
|
81550
81550
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
81551
81551
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
81552
81552
|
*/
|
|
81553
|
-
constructor(
|
|
81553
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
81554
81554
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
81555
81555
|
}
|
|
81556
81556
|
|
|
@@ -81735,7 +81735,7 @@ export class DashboardWidgetHeatmapDefinitionRequestRumQueryMultiComputeList ext
|
|
|
81735
81735
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
81736
81736
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
81737
81737
|
*/
|
|
81738
|
-
constructor(
|
|
81738
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
81739
81739
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
81740
81740
|
}
|
|
81741
81741
|
|
|
@@ -82449,7 +82449,7 @@ export class DashboardWidgetHeatmapDefinitionRequestSecurityQueryGroupByList ext
|
|
|
82449
82449
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
82450
82450
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
82451
82451
|
*/
|
|
82452
|
-
constructor(
|
|
82452
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
82453
82453
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
82454
82454
|
}
|
|
82455
82455
|
|
|
@@ -82634,7 +82634,7 @@ export class DashboardWidgetHeatmapDefinitionRequestSecurityQueryMultiComputeLis
|
|
|
82634
82634
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
82635
82635
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
82636
82636
|
*/
|
|
82637
|
-
constructor(
|
|
82637
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
82638
82638
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
82639
82639
|
}
|
|
82640
82640
|
|
|
@@ -83271,7 +83271,7 @@ export class DashboardWidgetHeatmapDefinitionRequestList extends cdktn.ComplexLi
|
|
|
83271
83271
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
83272
83272
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
83273
83273
|
*/
|
|
83274
|
-
constructor(
|
|
83274
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
83275
83275
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
83276
83276
|
}
|
|
83277
83277
|
|
|
@@ -84121,7 +84121,7 @@ export class DashboardWidgetHostmapDefinitionCustomLinkList extends cdktn.Comple
|
|
|
84121
84121
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
84122
84122
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
84123
84123
|
*/
|
|
84124
|
-
constructor(
|
|
84124
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
84125
84125
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
84126
84126
|
}
|
|
84127
84127
|
|
|
@@ -84612,7 +84612,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillApmQueryGroupByList exte
|
|
|
84612
84612
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
84613
84613
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
84614
84614
|
*/
|
|
84615
|
-
constructor(
|
|
84615
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
84616
84616
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
84617
84617
|
}
|
|
84618
84618
|
|
|
@@ -84797,7 +84797,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillApmQueryMultiComputeList
|
|
|
84797
84797
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
84798
84798
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
84799
84799
|
*/
|
|
84800
|
-
constructor(
|
|
84800
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
84801
84801
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
84802
84802
|
}
|
|
84803
84803
|
|
|
@@ -85511,7 +85511,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillLogQueryGroupByList exte
|
|
|
85511
85511
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
85512
85512
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
85513
85513
|
*/
|
|
85514
|
-
constructor(
|
|
85514
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
85515
85515
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
85516
85516
|
}
|
|
85517
85517
|
|
|
@@ -85696,7 +85696,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillLogQueryMultiComputeList
|
|
|
85696
85696
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
85697
85697
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
85698
85698
|
*/
|
|
85699
|
-
constructor(
|
|
85699
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
85700
85700
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
85701
85701
|
}
|
|
85702
85702
|
|
|
@@ -86598,7 +86598,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillRumQueryGroupByList exte
|
|
|
86598
86598
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
86599
86599
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
86600
86600
|
*/
|
|
86601
|
-
constructor(
|
|
86601
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
86602
86602
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
86603
86603
|
}
|
|
86604
86604
|
|
|
@@ -86783,7 +86783,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillRumQueryMultiComputeList
|
|
|
86783
86783
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
86784
86784
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
86785
86785
|
*/
|
|
86786
|
-
constructor(
|
|
86786
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
86787
86787
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
86788
86788
|
}
|
|
86789
86789
|
|
|
@@ -87497,7 +87497,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillSecurityQueryGroupByList
|
|
|
87497
87497
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
87498
87498
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
87499
87499
|
*/
|
|
87500
|
-
constructor(
|
|
87500
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
87501
87501
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
87502
87502
|
}
|
|
87503
87503
|
|
|
@@ -87682,7 +87682,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillSecurityQueryMultiComput
|
|
|
87682
87682
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
87683
87683
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
87684
87684
|
*/
|
|
87685
|
-
constructor(
|
|
87685
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
87686
87686
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
87687
87687
|
}
|
|
87688
87688
|
|
|
@@ -88198,7 +88198,7 @@ export class DashboardWidgetHostmapDefinitionRequestFillList extends cdktn.Compl
|
|
|
88198
88198
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
88199
88199
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
88200
88200
|
*/
|
|
88201
|
-
constructor(
|
|
88201
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
88202
88202
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
88203
88203
|
}
|
|
88204
88204
|
|
|
@@ -88689,7 +88689,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeApmQueryGroupByList exte
|
|
|
88689
88689
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
88690
88690
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
88691
88691
|
*/
|
|
88692
|
-
constructor(
|
|
88692
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
88693
88693
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
88694
88694
|
}
|
|
88695
88695
|
|
|
@@ -88874,7 +88874,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeApmQueryMultiComputeList
|
|
|
88874
88874
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
88875
88875
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
88876
88876
|
*/
|
|
88877
|
-
constructor(
|
|
88877
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
88878
88878
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
88879
88879
|
}
|
|
88880
88880
|
|
|
@@ -89588,7 +89588,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeLogQueryGroupByList exte
|
|
|
89588
89588
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
89589
89589
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
89590
89590
|
*/
|
|
89591
|
-
constructor(
|
|
89591
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
89592
89592
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
89593
89593
|
}
|
|
89594
89594
|
|
|
@@ -89773,7 +89773,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeLogQueryMultiComputeList
|
|
|
89773
89773
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
89774
89774
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
89775
89775
|
*/
|
|
89776
|
-
constructor(
|
|
89776
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
89777
89777
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
89778
89778
|
}
|
|
89779
89779
|
|
|
@@ -90675,7 +90675,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeRumQueryGroupByList exte
|
|
|
90675
90675
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
90676
90676
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
90677
90677
|
*/
|
|
90678
|
-
constructor(
|
|
90678
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
90679
90679
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
90680
90680
|
}
|
|
90681
90681
|
|
|
@@ -90860,7 +90860,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeRumQueryMultiComputeList
|
|
|
90860
90860
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
90861
90861
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
90862
90862
|
*/
|
|
90863
|
-
constructor(
|
|
90863
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
90864
90864
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
90865
90865
|
}
|
|
90866
90866
|
|
|
@@ -91574,7 +91574,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeSecurityQueryGroupByList
|
|
|
91574
91574
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
91575
91575
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
91576
91576
|
*/
|
|
91577
|
-
constructor(
|
|
91577
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
91578
91578
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
91579
91579
|
}
|
|
91580
91580
|
|
|
@@ -91759,7 +91759,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeSecurityQueryMultiComput
|
|
|
91759
91759
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
91760
91760
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
91761
91761
|
*/
|
|
91762
|
-
constructor(
|
|
91762
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
91763
91763
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
91764
91764
|
}
|
|
91765
91765
|
|
|
@@ -92275,7 +92275,7 @@ export class DashboardWidgetHostmapDefinitionRequestSizeList extends cdktn.Compl
|
|
|
92275
92275
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
92276
92276
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
92277
92277
|
*/
|
|
92278
|
-
constructor(
|
|
92278
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
92279
92279
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
92280
92280
|
}
|
|
92281
92281
|
|
|
@@ -94969,7 +94969,7 @@ export class DashboardWidgetQueryTableDefinitionCustomLinkList extends cdktn.Com
|
|
|
94969
94969
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
94970
94970
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
94971
94971
|
*/
|
|
94972
|
-
constructor(
|
|
94972
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
94973
94973
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
94974
94974
|
}
|
|
94975
94975
|
|
|
@@ -95460,7 +95460,7 @@ export class DashboardWidgetQueryTableDefinitionRequestApmQueryGroupByList exten
|
|
|
95460
95460
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
95461
95461
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
95462
95462
|
*/
|
|
95463
|
-
constructor(
|
|
95463
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
95464
95464
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
95465
95465
|
}
|
|
95466
95466
|
|
|
@@ -95645,7 +95645,7 @@ export class DashboardWidgetQueryTableDefinitionRequestApmQueryMultiComputeList
|
|
|
95645
95645
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
95646
95646
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
95647
95647
|
*/
|
|
95648
|
-
constructor(
|
|
95648
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
95649
95649
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
95650
95650
|
}
|
|
95651
95651
|
|
|
@@ -96088,7 +96088,7 @@ export class DashboardWidgetQueryTableDefinitionRequestApmStatsQueryColumnsList
|
|
|
96088
96088
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
96089
96089
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
96090
96090
|
*/
|
|
96091
|
-
constructor(
|
|
96091
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
96092
96092
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
96093
96093
|
}
|
|
96094
96094
|
|
|
@@ -96758,7 +96758,7 @@ export class DashboardWidgetQueryTableDefinitionRequestConditionalFormatsList ex
|
|
|
96758
96758
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
96759
96759
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
96760
96760
|
*/
|
|
96761
|
-
constructor(
|
|
96761
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
96762
96762
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
96763
96763
|
}
|
|
96764
96764
|
|
|
@@ -97147,7 +97147,7 @@ export class DashboardWidgetQueryTableDefinitionRequestFormulaConditionalFormats
|
|
|
97147
97147
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
97148
97148
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
97149
97149
|
*/
|
|
97150
|
-
constructor(
|
|
97150
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
97151
97151
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
97152
97152
|
}
|
|
97153
97153
|
|
|
@@ -97523,7 +97523,7 @@ export class DashboardWidgetQueryTableDefinitionRequestFormulaList extends cdktn
|
|
|
97523
97523
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
97524
97524
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
97525
97525
|
*/
|
|
97526
|
-
constructor(
|
|
97526
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
97527
97527
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
97528
97528
|
}
|
|
97529
97529
|
|
|
@@ -98014,7 +98014,7 @@ export class DashboardWidgetQueryTableDefinitionRequestLogQueryGroupByList exten
|
|
|
98014
98014
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
98015
98015
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
98016
98016
|
*/
|
|
98017
|
-
constructor(
|
|
98017
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
98018
98018
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
98019
98019
|
}
|
|
98020
98020
|
|
|
@@ -98199,7 +98199,7 @@ export class DashboardWidgetQueryTableDefinitionRequestLogQueryMultiComputeList
|
|
|
98199
98199
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
98200
98200
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
98201
98201
|
*/
|
|
98202
|
-
constructor(
|
|
98202
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
98203
98203
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
98204
98204
|
}
|
|
98205
98205
|
|
|
@@ -99561,7 +99561,7 @@ export class DashboardWidgetQueryTableDefinitionRequestQueryEventQueryComputeLis
|
|
|
99561
99561
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
99562
99562
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
99563
99563
|
*/
|
|
99564
|
-
constructor(
|
|
99564
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
99565
99565
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
99566
99566
|
}
|
|
99567
99567
|
|
|
@@ -99899,7 +99899,7 @@ export class DashboardWidgetQueryTableDefinitionRequestQueryEventQueryGroupByLis
|
|
|
99899
99899
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
99900
99900
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
99901
99901
|
*/
|
|
99902
|
-
constructor(
|
|
99902
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
99903
99903
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
99904
99904
|
}
|
|
99905
99905
|
|
|
@@ -101034,7 +101034,7 @@ export class DashboardWidgetQueryTableDefinitionRequestQueryList extends cdktn.C
|
|
|
101034
101034
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
101035
101035
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
101036
101036
|
*/
|
|
101037
|
-
constructor(
|
|
101037
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
101038
101038
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
101039
101039
|
}
|
|
101040
101040
|
|
|
@@ -101525,7 +101525,7 @@ export class DashboardWidgetQueryTableDefinitionRequestRumQueryGroupByList exten
|
|
|
101525
101525
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
101526
101526
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
101527
101527
|
*/
|
|
101528
|
-
constructor(
|
|
101528
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
101529
101529
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
101530
101530
|
}
|
|
101531
101531
|
|
|
@@ -101710,7 +101710,7 @@ export class DashboardWidgetQueryTableDefinitionRequestRumQueryMultiComputeList
|
|
|
101710
101710
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
101711
101711
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
101712
101712
|
*/
|
|
101713
|
-
constructor(
|
|
101713
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
101714
101714
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
101715
101715
|
}
|
|
101716
101716
|
|
|
@@ -102466,7 +102466,7 @@ export class DashboardWidgetQueryTableDefinitionRequestSecurityQueryGroupByList
|
|
|
102466
102466
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
102467
102467
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
102468
102468
|
*/
|
|
102469
|
-
constructor(
|
|
102469
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
102470
102470
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
102471
102471
|
}
|
|
102472
102472
|
|
|
@@ -102651,7 +102651,7 @@ export class DashboardWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute
|
|
|
102651
102651
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
102652
102652
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
102653
102653
|
*/
|
|
102654
|
-
constructor(
|
|
102654
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
102655
102655
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
102656
102656
|
}
|
|
102657
102657
|
|
|
@@ -103482,7 +103482,7 @@ export class DashboardWidgetQueryTableDefinitionRequestList extends cdktn.Comple
|
|
|
103482
103482
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
103483
103483
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
103484
103484
|
*/
|
|
103485
|
-
constructor(
|
|
103485
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
103486
103486
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
103487
103487
|
}
|
|
103488
103488
|
|
|
@@ -104001,7 +104001,7 @@ export class DashboardWidgetQueryValueDefinitionCustomLinkList extends cdktn.Com
|
|
|
104001
104001
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
104002
104002
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
104003
104003
|
*/
|
|
104004
|
-
constructor(
|
|
104004
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
104005
104005
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
104006
104006
|
}
|
|
104007
104007
|
|
|
@@ -104492,7 +104492,7 @@ export class DashboardWidgetQueryValueDefinitionRequestApmQueryGroupByList exten
|
|
|
104492
104492
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
104493
104493
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
104494
104494
|
*/
|
|
104495
|
-
constructor(
|
|
104495
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
104496
104496
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
104497
104497
|
}
|
|
104498
104498
|
|
|
@@ -104677,7 +104677,7 @@ export class DashboardWidgetQueryValueDefinitionRequestApmQueryMultiComputeList
|
|
|
104677
104677
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
104678
104678
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
104679
104679
|
*/
|
|
104680
|
-
constructor(
|
|
104680
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
104681
104681
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
104682
104682
|
}
|
|
104683
104683
|
|
|
@@ -105391,7 +105391,7 @@ export class DashboardWidgetQueryValueDefinitionRequestAuditQueryGroupByList ext
|
|
|
105391
105391
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
105392
105392
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
105393
105393
|
*/
|
|
105394
|
-
constructor(
|
|
105394
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
105395
105395
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
105396
105396
|
}
|
|
105397
105397
|
|
|
@@ -105576,7 +105576,7 @@ export class DashboardWidgetQueryValueDefinitionRequestAuditQueryMultiComputeLis
|
|
|
105576
105576
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
105577
105577
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
105578
105578
|
*/
|
|
105579
|
-
constructor(
|
|
105579
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
105580
105580
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
105581
105581
|
}
|
|
105582
105582
|
|
|
@@ -106188,7 +106188,7 @@ export class DashboardWidgetQueryValueDefinitionRequestConditionalFormatsList ex
|
|
|
106188
106188
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
106189
106189
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
106190
106190
|
*/
|
|
106191
|
-
constructor(
|
|
106191
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
106192
106192
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
106193
106193
|
}
|
|
106194
106194
|
|
|
@@ -106577,7 +106577,7 @@ export class DashboardWidgetQueryValueDefinitionRequestFormulaConditionalFormats
|
|
|
106577
106577
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
106578
106578
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
106579
106579
|
*/
|
|
106580
|
-
constructor(
|
|
106580
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
106581
106581
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
106582
106582
|
}
|
|
106583
106583
|
|
|
@@ -106953,7 +106953,7 @@ export class DashboardWidgetQueryValueDefinitionRequestFormulaList extends cdktn
|
|
|
106953
106953
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
106954
106954
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
106955
106955
|
*/
|
|
106956
|
-
constructor(
|
|
106956
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
106957
106957
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
106958
106958
|
}
|
|
106959
106959
|
|
|
@@ -107444,7 +107444,7 @@ export class DashboardWidgetQueryValueDefinitionRequestLogQueryGroupByList exten
|
|
|
107444
107444
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
107445
107445
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
107446
107446
|
*/
|
|
107447
|
-
constructor(
|
|
107447
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
107448
107448
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
107449
107449
|
}
|
|
107450
107450
|
|
|
@@ -107629,7 +107629,7 @@ export class DashboardWidgetQueryValueDefinitionRequestLogQueryMultiComputeList
|
|
|
107629
107629
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
107630
107630
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
107631
107631
|
*/
|
|
107632
|
-
constructor(
|
|
107632
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
107633
107633
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
107634
107634
|
}
|
|
107635
107635
|
|
|
@@ -108991,7 +108991,7 @@ export class DashboardWidgetQueryValueDefinitionRequestQueryEventQueryComputeLis
|
|
|
108991
108991
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
108992
108992
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
108993
108993
|
*/
|
|
108994
|
-
constructor(
|
|
108994
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
108995
108995
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
108996
108996
|
}
|
|
108997
108997
|
|
|
@@ -109329,7 +109329,7 @@ export class DashboardWidgetQueryValueDefinitionRequestQueryEventQueryGroupByLis
|
|
|
109329
109329
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
109330
109330
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
109331
109331
|
*/
|
|
109332
|
-
constructor(
|
|
109332
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
109333
109333
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
109334
109334
|
}
|
|
109335
109335
|
|
|
@@ -110464,7 +110464,7 @@ export class DashboardWidgetQueryValueDefinitionRequestQueryList extends cdktn.C
|
|
|
110464
110464
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
110465
110465
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
110466
110466
|
*/
|
|
110467
|
-
constructor(
|
|
110467
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
110468
110468
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
110469
110469
|
}
|
|
110470
110470
|
|
|
@@ -110955,7 +110955,7 @@ export class DashboardWidgetQueryValueDefinitionRequestRumQueryGroupByList exten
|
|
|
110955
110955
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
110956
110956
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
110957
110957
|
*/
|
|
110958
|
-
constructor(
|
|
110958
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
110959
110959
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
110960
110960
|
}
|
|
110961
110961
|
|
|
@@ -111140,7 +111140,7 @@ export class DashboardWidgetQueryValueDefinitionRequestRumQueryMultiComputeList
|
|
|
111140
111140
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
111141
111141
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
111142
111142
|
*/
|
|
111143
|
-
constructor(
|
|
111143
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
111144
111144
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
111145
111145
|
}
|
|
111146
111146
|
|
|
@@ -111854,7 +111854,7 @@ export class DashboardWidgetQueryValueDefinitionRequestSecurityQueryGroupByList
|
|
|
111854
111854
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
111855
111855
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
111856
111856
|
*/
|
|
111857
|
-
constructor(
|
|
111857
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
111858
111858
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
111859
111859
|
}
|
|
111860
111860
|
|
|
@@ -112039,7 +112039,7 @@ export class DashboardWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute
|
|
|
112039
112039
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
112040
112040
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
112041
112041
|
*/
|
|
112042
|
-
constructor(
|
|
112042
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
112043
112043
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
112044
112044
|
}
|
|
112045
112045
|
|
|
@@ -112730,7 +112730,7 @@ export class DashboardWidgetQueryValueDefinitionRequestList extends cdktn.Comple
|
|
|
112730
112730
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
112731
112731
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
112732
112732
|
*/
|
|
112733
|
-
constructor(
|
|
112733
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
112734
112734
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
112735
112735
|
}
|
|
112736
112736
|
|
|
@@ -113733,7 +113733,7 @@ export class DashboardWidgetScatterplotDefinitionCustomLinkList extends cdktn.Co
|
|
|
113733
113733
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
113734
113734
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
113735
113735
|
*/
|
|
113736
|
-
constructor(
|
|
113736
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
113737
113737
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
113738
113738
|
}
|
|
113739
113739
|
|
|
@@ -113915,7 +113915,7 @@ export class DashboardWidgetScatterplotDefinitionRequestScatterplotTableFormulaL
|
|
|
113915
113915
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
113916
113916
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
113917
113917
|
*/
|
|
113918
|
-
constructor(
|
|
113918
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
113919
113919
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
113920
113920
|
}
|
|
113921
113921
|
|
|
@@ -114866,7 +114866,7 @@ export class DashboardWidgetScatterplotDefinitionRequestScatterplotTableQueryEve
|
|
|
114866
114866
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
114867
114867
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
114868
114868
|
*/
|
|
114869
|
-
constructor(
|
|
114869
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
114870
114870
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
114871
114871
|
}
|
|
114872
114872
|
|
|
@@ -115204,7 +115204,7 @@ export class DashboardWidgetScatterplotDefinitionRequestScatterplotTableQueryEve
|
|
|
115204
115204
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
115205
115205
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
115206
115206
|
*/
|
|
115207
|
-
constructor(
|
|
115207
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
115208
115208
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
115209
115209
|
}
|
|
115210
115210
|
|
|
@@ -116339,7 +116339,7 @@ export class DashboardWidgetScatterplotDefinitionRequestScatterplotTableQueryLis
|
|
|
116339
116339
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
116340
116340
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
116341
116341
|
*/
|
|
116342
|
-
constructor(
|
|
116342
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
116343
116343
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
116344
116344
|
}
|
|
116345
116345
|
|
|
@@ -116492,7 +116492,7 @@ export class DashboardWidgetScatterplotDefinitionRequestScatterplotTableList ext
|
|
|
116492
116492
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
116493
116493
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
116494
116494
|
*/
|
|
116495
|
-
constructor(
|
|
116495
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
116496
116496
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
116497
116497
|
}
|
|
116498
116498
|
|
|
@@ -116983,7 +116983,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXApmQueryGroupByList ext
|
|
|
116983
116983
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
116984
116984
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
116985
116985
|
*/
|
|
116986
|
-
constructor(
|
|
116986
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
116987
116987
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
116988
116988
|
}
|
|
116989
116989
|
|
|
@@ -117168,7 +117168,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXApmQueryMultiComputeLis
|
|
|
117168
117168
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
117169
117169
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
117170
117170
|
*/
|
|
117171
|
-
constructor(
|
|
117171
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
117172
117172
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
117173
117173
|
}
|
|
117174
117174
|
|
|
@@ -117882,7 +117882,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXLogQueryGroupByList ext
|
|
|
117882
117882
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
117883
117883
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
117884
117884
|
*/
|
|
117885
|
-
constructor(
|
|
117885
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
117886
117886
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
117887
117887
|
}
|
|
117888
117888
|
|
|
@@ -118067,7 +118067,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXLogQueryMultiComputeLis
|
|
|
118067
118067
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
118068
118068
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
118069
118069
|
*/
|
|
118070
|
-
constructor(
|
|
118070
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
118071
118071
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
118072
118072
|
}
|
|
118073
118073
|
|
|
@@ -118969,7 +118969,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXRumQueryGroupByList ext
|
|
|
118969
118969
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
118970
118970
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
118971
118971
|
*/
|
|
118972
|
-
constructor(
|
|
118972
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
118973
118973
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
118974
118974
|
}
|
|
118975
118975
|
|
|
@@ -119154,7 +119154,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXRumQueryMultiComputeLis
|
|
|
119154
119154
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
119155
119155
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
119156
119156
|
*/
|
|
119157
|
-
constructor(
|
|
119157
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
119158
119158
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
119159
119159
|
}
|
|
119160
119160
|
|
|
@@ -119868,7 +119868,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXSecurityQueryGroupByLis
|
|
|
119868
119868
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
119869
119869
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
119870
119870
|
*/
|
|
119871
|
-
constructor(
|
|
119871
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
119872
119872
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
119873
119873
|
}
|
|
119874
119874
|
|
|
@@ -120053,7 +120053,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompu
|
|
|
120053
120053
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
120054
120054
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
120055
120055
|
*/
|
|
120056
|
-
constructor(
|
|
120056
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
120057
120057
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
120058
120058
|
}
|
|
120059
120059
|
|
|
@@ -120604,7 +120604,7 @@ export class DashboardWidgetScatterplotDefinitionRequestXList extends cdktn.Comp
|
|
|
120604
120604
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
120605
120605
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
120606
120606
|
*/
|
|
120607
|
-
constructor(
|
|
120607
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
120608
120608
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
120609
120609
|
}
|
|
120610
120610
|
|
|
@@ -121095,7 +121095,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYApmQueryGroupByList ext
|
|
|
121095
121095
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
121096
121096
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
121097
121097
|
*/
|
|
121098
|
-
constructor(
|
|
121098
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
121099
121099
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
121100
121100
|
}
|
|
121101
121101
|
|
|
@@ -121280,7 +121280,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYApmQueryMultiComputeLis
|
|
|
121280
121280
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
121281
121281
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
121282
121282
|
*/
|
|
121283
|
-
constructor(
|
|
121283
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
121284
121284
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
121285
121285
|
}
|
|
121286
121286
|
|
|
@@ -121994,7 +121994,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYLogQueryGroupByList ext
|
|
|
121994
121994
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
121995
121995
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
121996
121996
|
*/
|
|
121997
|
-
constructor(
|
|
121997
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
121998
121998
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
121999
121999
|
}
|
|
122000
122000
|
|
|
@@ -122179,7 +122179,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYLogQueryMultiComputeLis
|
|
|
122179
122179
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
122180
122180
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
122181
122181
|
*/
|
|
122182
|
-
constructor(
|
|
122182
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
122183
122183
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
122184
122184
|
}
|
|
122185
122185
|
|
|
@@ -123081,7 +123081,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYRumQueryGroupByList ext
|
|
|
123081
123081
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
123082
123082
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
123083
123083
|
*/
|
|
123084
|
-
constructor(
|
|
123084
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
123085
123085
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
123086
123086
|
}
|
|
123087
123087
|
|
|
@@ -123266,7 +123266,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYRumQueryMultiComputeLis
|
|
|
123266
123266
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
123267
123267
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
123268
123268
|
*/
|
|
123269
|
-
constructor(
|
|
123269
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
123270
123270
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
123271
123271
|
}
|
|
123272
123272
|
|
|
@@ -123980,7 +123980,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYSecurityQueryGroupByLis
|
|
|
123980
123980
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
123981
123981
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
123982
123982
|
*/
|
|
123983
|
-
constructor(
|
|
123983
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
123984
123984
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
123985
123985
|
}
|
|
123986
123986
|
|
|
@@ -124165,7 +124165,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompu
|
|
|
124165
124165
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
124166
124166
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
124167
124167
|
*/
|
|
124168
|
-
constructor(
|
|
124168
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
124169
124169
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
124170
124170
|
}
|
|
124171
124171
|
|
|
@@ -124716,7 +124716,7 @@ export class DashboardWidgetScatterplotDefinitionRequestYList extends cdktn.Comp
|
|
|
124716
124716
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
124717
124717
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
124718
124718
|
*/
|
|
124719
|
-
constructor(
|
|
124719
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
124720
124720
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
124721
124721
|
}
|
|
124722
124722
|
|
|
@@ -126267,7 +126267,7 @@ export class DashboardWidgetServicemapDefinitionCustomLinkList extends cdktn.Com
|
|
|
126267
126267
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
126268
126268
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
126269
126269
|
*/
|
|
126270
|
-
constructor(
|
|
126270
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
126271
126271
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
126272
126272
|
}
|
|
126273
126273
|
|
|
@@ -126745,7 +126745,7 @@ export class DashboardWidgetSunburstDefinitionCustomLinkList extends cdktn.Compl
|
|
|
126745
126745
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
126746
126746
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
126747
126747
|
*/
|
|
126748
|
-
constructor(
|
|
126748
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
126749
126749
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
126750
126750
|
}
|
|
126751
126751
|
|
|
@@ -127482,7 +127482,7 @@ export class DashboardWidgetSunburstDefinitionRequestApmQueryGroupByList extends
|
|
|
127482
127482
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
127483
127483
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
127484
127484
|
*/
|
|
127485
|
-
constructor(
|
|
127485
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
127486
127486
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
127487
127487
|
}
|
|
127488
127488
|
|
|
@@ -127667,7 +127667,7 @@ export class DashboardWidgetSunburstDefinitionRequestApmQueryMultiComputeList ex
|
|
|
127667
127667
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
127668
127668
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
127669
127669
|
*/
|
|
127670
|
-
constructor(
|
|
127670
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
127671
127671
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
127672
127672
|
}
|
|
127673
127673
|
|
|
@@ -128381,7 +128381,7 @@ export class DashboardWidgetSunburstDefinitionRequestAuditQueryGroupByList exten
|
|
|
128381
128381
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
128382
128382
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
128383
128383
|
*/
|
|
128384
|
-
constructor(
|
|
128384
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
128385
128385
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
128386
128386
|
}
|
|
128387
128387
|
|
|
@@ -128566,7 +128566,7 @@ export class DashboardWidgetSunburstDefinitionRequestAuditQueryMultiComputeList
|
|
|
128566
128566
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
128567
128567
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
128568
128568
|
*/
|
|
128569
|
-
constructor(
|
|
128569
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
128570
128570
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
128571
128571
|
}
|
|
128572
128572
|
|
|
@@ -129178,7 +129178,7 @@ export class DashboardWidgetSunburstDefinitionRequestFormulaConditionalFormatsLi
|
|
|
129178
129178
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
129179
129179
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
129180
129180
|
*/
|
|
129181
|
-
constructor(
|
|
129181
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
129182
129182
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
129183
129183
|
}
|
|
129184
129184
|
|
|
@@ -129554,7 +129554,7 @@ export class DashboardWidgetSunburstDefinitionRequestFormulaList extends cdktn.C
|
|
|
129554
129554
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
129555
129555
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
129556
129556
|
*/
|
|
129557
|
-
constructor(
|
|
129557
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
129558
129558
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
129559
129559
|
}
|
|
129560
129560
|
|
|
@@ -130045,7 +130045,7 @@ export class DashboardWidgetSunburstDefinitionRequestLogQueryGroupByList extends
|
|
|
130045
130045
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
130046
130046
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
130047
130047
|
*/
|
|
130048
|
-
constructor(
|
|
130048
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
130049
130049
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
130050
130050
|
}
|
|
130051
130051
|
|
|
@@ -130230,7 +130230,7 @@ export class DashboardWidgetSunburstDefinitionRequestLogQueryMultiComputeList ex
|
|
|
130230
130230
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
130231
130231
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
130232
130232
|
*/
|
|
130233
|
-
constructor(
|
|
130233
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
130234
130234
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
130235
130235
|
}
|
|
130236
130236
|
|
|
@@ -130944,7 +130944,7 @@ export class DashboardWidgetSunburstDefinitionRequestNetworkQueryGroupByList ext
|
|
|
130944
130944
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
130945
130945
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
130946
130946
|
*/
|
|
130947
|
-
constructor(
|
|
130947
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
130948
130948
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
130949
130949
|
}
|
|
130950
130950
|
|
|
@@ -131129,7 +131129,7 @@ export class DashboardWidgetSunburstDefinitionRequestNetworkQueryMultiComputeLis
|
|
|
131129
131129
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
131130
131130
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
131131
131131
|
*/
|
|
131132
|
-
constructor(
|
|
131132
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
131133
131133
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
131134
131134
|
}
|
|
131135
131135
|
|
|
@@ -132491,7 +132491,7 @@ export class DashboardWidgetSunburstDefinitionRequestQueryEventQueryComputeList
|
|
|
132491
132491
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
132492
132492
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
132493
132493
|
*/
|
|
132494
|
-
constructor(
|
|
132494
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
132495
132495
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
132496
132496
|
}
|
|
132497
132497
|
|
|
@@ -132829,7 +132829,7 @@ export class DashboardWidgetSunburstDefinitionRequestQueryEventQueryGroupByList
|
|
|
132829
132829
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
132830
132830
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
132831
132831
|
*/
|
|
132832
|
-
constructor(
|
|
132832
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
132833
132833
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
132834
132834
|
}
|
|
132835
132835
|
|
|
@@ -133964,7 +133964,7 @@ export class DashboardWidgetSunburstDefinitionRequestQueryList extends cdktn.Com
|
|
|
133964
133964
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
133965
133965
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
133966
133966
|
*/
|
|
133967
|
-
constructor(
|
|
133967
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
133968
133968
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
133969
133969
|
}
|
|
133970
133970
|
|
|
@@ -134455,7 +134455,7 @@ export class DashboardWidgetSunburstDefinitionRequestRumQueryGroupByList extends
|
|
|
134455
134455
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
134456
134456
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
134457
134457
|
*/
|
|
134458
|
-
constructor(
|
|
134458
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
134459
134459
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
134460
134460
|
}
|
|
134461
134461
|
|
|
@@ -134640,7 +134640,7 @@ export class DashboardWidgetSunburstDefinitionRequestRumQueryMultiComputeList ex
|
|
|
134640
134640
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
134641
134641
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
134642
134642
|
*/
|
|
134643
|
-
constructor(
|
|
134643
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
134644
134644
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
134645
134645
|
}
|
|
134646
134646
|
|
|
@@ -135354,7 +135354,7 @@ export class DashboardWidgetSunburstDefinitionRequestSecurityQueryGroupByList ex
|
|
|
135354
135354
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
135355
135355
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
135356
135356
|
*/
|
|
135357
|
-
constructor(
|
|
135357
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
135358
135358
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
135359
135359
|
}
|
|
135360
135360
|
|
|
@@ -135539,7 +135539,7 @@ export class DashboardWidgetSunburstDefinitionRequestSecurityQueryMultiComputeLi
|
|
|
135539
135539
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
135540
135540
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
135541
135541
|
*/
|
|
135542
|
-
constructor(
|
|
135542
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
135543
135543
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
135544
135544
|
}
|
|
135545
135545
|
|
|
@@ -136195,7 +136195,7 @@ export class DashboardWidgetSunburstDefinitionRequestList extends cdktn.ComplexL
|
|
|
136195
136195
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
136196
136196
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
136197
136197
|
*/
|
|
136198
|
-
constructor(
|
|
136198
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
136199
136199
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
136200
136200
|
}
|
|
136201
136201
|
|
|
@@ -136784,7 +136784,7 @@ export class DashboardWidgetTimeseriesDefinitionCustomLinkList extends cdktn.Com
|
|
|
136784
136784
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
136785
136785
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
136786
136786
|
*/
|
|
136787
|
-
constructor(
|
|
136787
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
136788
136788
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
136789
136789
|
}
|
|
136790
136790
|
|
|
@@ -136934,7 +136934,7 @@ export class DashboardWidgetTimeseriesDefinitionEventList extends cdktn.ComplexL
|
|
|
136934
136934
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
136935
136935
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
136936
136936
|
*/
|
|
136937
|
-
constructor(
|
|
136937
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
136938
136938
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
136939
136939
|
}
|
|
136940
136940
|
|
|
@@ -137119,7 +137119,7 @@ export class DashboardWidgetTimeseriesDefinitionMarkerList extends cdktn.Complex
|
|
|
137119
137119
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
137120
137120
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
137121
137121
|
*/
|
|
137122
|
-
constructor(
|
|
137122
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
137123
137123
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
137124
137124
|
}
|
|
137125
137125
|
|
|
@@ -137610,7 +137610,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestApmQueryGroupByList exten
|
|
|
137610
137610
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
137611
137611
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
137612
137612
|
*/
|
|
137613
|
-
constructor(
|
|
137613
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
137614
137614
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
137615
137615
|
}
|
|
137616
137616
|
|
|
@@ -137795,7 +137795,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestApmQueryMultiComputeList
|
|
|
137795
137795
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
137796
137796
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
137797
137797
|
*/
|
|
137798
|
-
constructor(
|
|
137798
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
137799
137799
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
137800
137800
|
}
|
|
137801
137801
|
|
|
@@ -138509,7 +138509,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestAuditQueryGroupByList ext
|
|
|
138509
138509
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
138510
138510
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
138511
138511
|
*/
|
|
138512
|
-
constructor(
|
|
138512
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
138513
138513
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
138514
138514
|
}
|
|
138515
138515
|
|
|
@@ -138694,7 +138694,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestAuditQueryMultiComputeLis
|
|
|
138694
138694
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
138695
138695
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
138696
138696
|
*/
|
|
138697
|
-
constructor(
|
|
138697
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
138698
138698
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
138699
138699
|
}
|
|
138700
138700
|
|
|
@@ -139306,7 +139306,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestFormulaConditionalFormats
|
|
|
139306
139306
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
139307
139307
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
139308
139308
|
*/
|
|
139309
|
-
constructor(
|
|
139309
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
139310
139310
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
139311
139311
|
}
|
|
139312
139312
|
|
|
@@ -139682,7 +139682,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestFormulaList extends cdktn
|
|
|
139682
139682
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
139683
139683
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
139684
139684
|
*/
|
|
139685
|
-
constructor(
|
|
139685
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
139686
139686
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
139687
139687
|
}
|
|
139688
139688
|
|
|
@@ -140173,7 +140173,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestLogQueryGroupByList exten
|
|
|
140173
140173
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
140174
140174
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
140175
140175
|
*/
|
|
140176
|
-
constructor(
|
|
140176
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
140177
140177
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
140178
140178
|
}
|
|
140179
140179
|
|
|
@@ -140358,7 +140358,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestLogQueryMultiComputeList
|
|
|
140358
140358
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
140359
140359
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
140360
140360
|
*/
|
|
140361
|
-
constructor(
|
|
140361
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
140362
140362
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
140363
140363
|
}
|
|
140364
140364
|
|
|
@@ -140731,7 +140731,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestMetadataList extends cdkt
|
|
|
140731
140731
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
140732
140732
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
140733
140733
|
*/
|
|
140734
|
-
constructor(
|
|
140734
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
140735
140735
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
140736
140736
|
}
|
|
140737
140737
|
|
|
@@ -141222,7 +141222,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestNetworkQueryGroupByList e
|
|
|
141222
141222
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
141223
141223
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
141224
141224
|
*/
|
|
141225
|
-
constructor(
|
|
141225
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
141226
141226
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
141227
141227
|
}
|
|
141228
141228
|
|
|
@@ -141407,7 +141407,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestNetworkQueryMultiComputeL
|
|
|
141407
141407
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
141408
141408
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
141409
141409
|
*/
|
|
141410
|
-
constructor(
|
|
141410
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
141411
141411
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
141412
141412
|
}
|
|
141413
141413
|
|
|
@@ -142769,7 +142769,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestQueryEventQueryComputeLis
|
|
|
142769
142769
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
142770
142770
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
142771
142771
|
*/
|
|
142772
|
-
constructor(
|
|
142772
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
142773
142773
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
142774
142774
|
}
|
|
142775
142775
|
|
|
@@ -143107,7 +143107,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestQueryEventQueryGroupByLis
|
|
|
143107
143107
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
143108
143108
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
143109
143109
|
*/
|
|
143110
|
-
constructor(
|
|
143110
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
143111
143111
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
143112
143112
|
}
|
|
143113
143113
|
|
|
@@ -144242,7 +144242,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestQueryList extends cdktn.C
|
|
|
144242
144242
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
144243
144243
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
144244
144244
|
*/
|
|
144245
|
-
constructor(
|
|
144245
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
144246
144246
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
144247
144247
|
}
|
|
144248
144248
|
|
|
@@ -144733,7 +144733,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestRumQueryGroupByList exten
|
|
|
144733
144733
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
144734
144734
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
144735
144735
|
*/
|
|
144736
|
-
constructor(
|
|
144736
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
144737
144737
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
144738
144738
|
}
|
|
144739
144739
|
|
|
@@ -144918,7 +144918,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestRumQueryMultiComputeList
|
|
|
144918
144918
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
144919
144919
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
144920
144920
|
*/
|
|
144921
|
-
constructor(
|
|
144921
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
144922
144922
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
144923
144923
|
}
|
|
144924
144924
|
|
|
@@ -145632,7 +145632,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestSecurityQueryGroupByList
|
|
|
145632
145632
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
145633
145633
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
145634
145634
|
*/
|
|
145635
|
-
constructor(
|
|
145635
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
145636
145636
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
145637
145637
|
}
|
|
145638
145638
|
|
|
@@ -145817,7 +145817,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestSecurityQueryMultiCompute
|
|
|
145817
145817
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
145818
145818
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
145819
145819
|
*/
|
|
145820
|
-
constructor(
|
|
145820
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
145821
145821
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
145822
145822
|
}
|
|
145823
145823
|
|
|
@@ -146769,7 +146769,7 @@ export class DashboardWidgetTimeseriesDefinitionRequestList extends cdktn.Comple
|
|
|
146769
146769
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
146770
146770
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
146771
146771
|
*/
|
|
146772
|
-
constructor(
|
|
146772
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
146773
146773
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
146774
146774
|
}
|
|
146775
146775
|
|
|
@@ -147985,7 +147985,7 @@ export class DashboardWidgetToplistDefinitionCustomLinkList extends cdktn.Comple
|
|
|
147985
147985
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
147986
147986
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
147987
147987
|
*/
|
|
147988
|
-
constructor(
|
|
147988
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
147989
147989
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
147990
147990
|
}
|
|
147991
147991
|
|
|
@@ -148476,7 +148476,7 @@ export class DashboardWidgetToplistDefinitionRequestApmQueryGroupByList extends
|
|
|
148476
148476
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
148477
148477
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
148478
148478
|
*/
|
|
148479
|
-
constructor(
|
|
148479
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
148480
148480
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
148481
148481
|
}
|
|
148482
148482
|
|
|
@@ -148661,7 +148661,7 @@ export class DashboardWidgetToplistDefinitionRequestApmQueryMultiComputeList ext
|
|
|
148661
148661
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
148662
148662
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
148663
148663
|
*/
|
|
148664
|
-
constructor(
|
|
148664
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
148665
148665
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
148666
148666
|
}
|
|
148667
148667
|
|
|
@@ -149375,7 +149375,7 @@ export class DashboardWidgetToplistDefinitionRequestAuditQueryGroupByList extend
|
|
|
149375
149375
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
149376
149376
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
149377
149377
|
*/
|
|
149378
|
-
constructor(
|
|
149378
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
149379
149379
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
149380
149380
|
}
|
|
149381
149381
|
|
|
@@ -149560,7 +149560,7 @@ export class DashboardWidgetToplistDefinitionRequestAuditQueryMultiComputeList e
|
|
|
149560
149560
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
149561
149561
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
149562
149562
|
*/
|
|
149563
|
-
constructor(
|
|
149563
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
149564
149564
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
149565
149565
|
}
|
|
149566
149566
|
|
|
@@ -150172,7 +150172,7 @@ export class DashboardWidgetToplistDefinitionRequestConditionalFormatsList exten
|
|
|
150172
150172
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
150173
150173
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
150174
150174
|
*/
|
|
150175
|
-
constructor(
|
|
150175
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
150176
150176
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
150177
150177
|
}
|
|
150178
150178
|
|
|
@@ -150561,7 +150561,7 @@ export class DashboardWidgetToplistDefinitionRequestFormulaConditionalFormatsLis
|
|
|
150561
150561
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
150562
150562
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
150563
150563
|
*/
|
|
150564
|
-
constructor(
|
|
150564
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
150565
150565
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
150566
150566
|
}
|
|
150567
150567
|
|
|
@@ -150937,7 +150937,7 @@ export class DashboardWidgetToplistDefinitionRequestFormulaList extends cdktn.Co
|
|
|
150937
150937
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
150938
150938
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
150939
150939
|
*/
|
|
150940
|
-
constructor(
|
|
150940
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
150941
150941
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
150942
150942
|
}
|
|
150943
150943
|
|
|
@@ -151554,7 +151554,7 @@ export class DashboardWidgetToplistDefinitionRequestLogQueryGroupByList extends
|
|
|
151554
151554
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
151555
151555
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
151556
151556
|
*/
|
|
151557
|
-
constructor(
|
|
151557
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
151558
151558
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
151559
151559
|
}
|
|
151560
151560
|
|
|
@@ -151739,7 +151739,7 @@ export class DashboardWidgetToplistDefinitionRequestLogQueryMultiComputeList ext
|
|
|
151739
151739
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
151740
151740
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
151741
151741
|
*/
|
|
151742
|
-
constructor(
|
|
151742
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
151743
151743
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
151744
151744
|
}
|
|
151745
151745
|
|
|
@@ -153101,7 +153101,7 @@ export class DashboardWidgetToplistDefinitionRequestQueryEventQueryComputeList e
|
|
|
153101
153101
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
153102
153102
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
153103
153103
|
*/
|
|
153104
|
-
constructor(
|
|
153104
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
153105
153105
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
153106
153106
|
}
|
|
153107
153107
|
|
|
@@ -153439,7 +153439,7 @@ export class DashboardWidgetToplistDefinitionRequestQueryEventQueryGroupByList e
|
|
|
153439
153439
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
153440
153440
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
153441
153441
|
*/
|
|
153442
|
-
constructor(
|
|
153442
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
153443
153443
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
153444
153444
|
}
|
|
153445
153445
|
|
|
@@ -154574,7 +154574,7 @@ export class DashboardWidgetToplistDefinitionRequestQueryList extends cdktn.Comp
|
|
|
154574
154574
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
154575
154575
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
154576
154576
|
*/
|
|
154577
|
-
constructor(
|
|
154577
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
154578
154578
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
154579
154579
|
}
|
|
154580
154580
|
|
|
@@ -155065,7 +155065,7 @@ export class DashboardWidgetToplistDefinitionRequestRumQueryGroupByList extends
|
|
|
155065
155065
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
155066
155066
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
155067
155067
|
*/
|
|
155068
|
-
constructor(
|
|
155068
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
155069
155069
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
155070
155070
|
}
|
|
155071
155071
|
|
|
@@ -155250,7 +155250,7 @@ export class DashboardWidgetToplistDefinitionRequestRumQueryMultiComputeList ext
|
|
|
155250
155250
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
155251
155251
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
155252
155252
|
*/
|
|
155253
|
-
constructor(
|
|
155253
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
155254
155254
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
155255
155255
|
}
|
|
155256
155256
|
|
|
@@ -155964,7 +155964,7 @@ export class DashboardWidgetToplistDefinitionRequestSecurityQueryGroupByList ext
|
|
|
155964
155964
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
155965
155965
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
155966
155966
|
*/
|
|
155967
|
-
constructor(
|
|
155967
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
155968
155968
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
155969
155969
|
}
|
|
155970
155970
|
|
|
@@ -156149,7 +156149,7 @@ export class DashboardWidgetToplistDefinitionRequestSecurityQueryMultiComputeLis
|
|
|
156149
156149
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
156150
156150
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
156151
156151
|
*/
|
|
156152
|
-
constructor(
|
|
156152
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
156153
156153
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
156154
156154
|
}
|
|
156155
156155
|
|
|
@@ -156926,7 +156926,7 @@ export class DashboardWidgetToplistDefinitionRequestList extends cdktn.ComplexLi
|
|
|
156926
156926
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
156927
156927
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
156928
156928
|
*/
|
|
156929
|
-
constructor(
|
|
156929
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
156930
156930
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
156931
156931
|
}
|
|
156932
156932
|
|
|
@@ -158143,7 +158143,7 @@ export class DashboardWidgetTreemapDefinitionRequestFormulaConditionalFormatsLis
|
|
|
158143
158143
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
158144
158144
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
158145
158145
|
*/
|
|
158146
|
-
constructor(
|
|
158146
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
158147
158147
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
158148
158148
|
}
|
|
158149
158149
|
|
|
@@ -158519,7 +158519,7 @@ export class DashboardWidgetTreemapDefinitionRequestFormulaList extends cdktn.Co
|
|
|
158519
158519
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
158520
158520
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
158521
158521
|
*/
|
|
158522
|
-
constructor(
|
|
158522
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
158523
158523
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
158524
158524
|
}
|
|
158525
158525
|
|
|
@@ -159470,7 +159470,7 @@ export class DashboardWidgetTreemapDefinitionRequestQueryEventQueryComputeList e
|
|
|
159470
159470
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
159471
159471
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
159472
159472
|
*/
|
|
159473
|
-
constructor(
|
|
159473
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
159474
159474
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
159475
159475
|
}
|
|
159476
159476
|
|
|
@@ -159808,7 +159808,7 @@ export class DashboardWidgetTreemapDefinitionRequestQueryEventQueryGroupByList e
|
|
|
159808
159808
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
159809
159809
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
159810
159810
|
*/
|
|
159811
|
-
constructor(
|
|
159811
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
159812
159812
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
159813
159813
|
}
|
|
159814
159814
|
|
|
@@ -160943,7 +160943,7 @@ export class DashboardWidgetTreemapDefinitionRequestQueryList extends cdktn.Comp
|
|
|
160943
160943
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
160944
160944
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
160945
160945
|
*/
|
|
160946
|
-
constructor(
|
|
160946
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
160947
160947
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
160948
160948
|
}
|
|
160949
160949
|
|
|
@@ -161096,7 +161096,7 @@ export class DashboardWidgetTreemapDefinitionRequestList extends cdktn.ComplexLi
|
|
|
161096
161096
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
161097
161097
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
161098
161098
|
*/
|
|
161099
|
-
constructor(
|
|
161099
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
161100
161100
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
161101
161101
|
}
|
|
161102
161102
|
|
|
@@ -162499,7 +162499,7 @@ export class DashboardWidgetList extends cdktn.ComplexList {
|
|
|
162499
162499
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
162500
162500
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
162501
162501
|
*/
|
|
162502
|
-
constructor(
|
|
162502
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
162503
162503
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
162504
162504
|
}
|
|
162505
162505
|
|
|
@@ -163096,7 +163096,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEve
|
|
|
163096
163096
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
163097
163097
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
163098
163098
|
*/
|
|
163099
|
-
constructor(
|
|
163099
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
163100
163100
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
163101
163101
|
}
|
|
163102
163102
|
|
|
@@ -163434,7 +163434,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEve
|
|
|
163434
163434
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
163435
163435
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
163436
163436
|
*/
|
|
163437
|
-
constructor(
|
|
163437
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
163438
163438
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
163439
163439
|
}
|
|
163440
163440
|
|
|
@@ -164569,7 +164569,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestQueryLis
|
|
|
164569
164569
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
164570
164570
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
164571
164571
|
*/
|
|
164572
|
-
constructor(
|
|
164572
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
164573
164573
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
164574
164574
|
}
|
|
164575
164575
|
|
|
@@ -165060,7 +165060,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
|
|
|
165060
165060
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
165061
165061
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
165062
165062
|
*/
|
|
165063
|
-
constructor(
|
|
165063
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
165064
165064
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
165065
165065
|
}
|
|
165066
165066
|
|
|
@@ -165245,7 +165245,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
|
|
|
165245
165245
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
165246
165246
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
165247
165247
|
*/
|
|
165248
|
-
constructor(
|
|
165248
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
165249
165249
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
165250
165250
|
}
|
|
165251
165251
|
|
|
@@ -165959,7 +165959,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestSecurity
|
|
|
165959
165959
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
165960
165960
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
165961
165961
|
*/
|
|
165962
|
-
constructor(
|
|
165962
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
165963
165963
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
165964
165964
|
}
|
|
165965
165965
|
|
|
@@ -166144,7 +166144,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestSecurity
|
|
|
166144
166144
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
166145
166145
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
166146
166146
|
*/
|
|
166147
|
-
constructor(
|
|
166147
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
166148
166148
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
166149
166149
|
}
|
|
166150
166150
|
|
|
@@ -166940,7 +166940,7 @@ export class DashboardWidgetGroupDefinitionWidgetChangeDefinitionRequestList ext
|
|
|
166940
166940
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
166941
166941
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
166942
166942
|
*/
|
|
166943
|
-
constructor(
|
|
166943
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
166944
166944
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
166945
166945
|
}
|
|
166946
166946
|
|
|
@@ -168052,7 +168052,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestAp
|
|
|
168052
168052
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
168053
168053
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
168054
168054
|
*/
|
|
168055
|
-
constructor(
|
|
168055
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
168056
168056
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
168057
168057
|
}
|
|
168058
168058
|
|
|
@@ -168237,7 +168237,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestAp
|
|
|
168237
168237
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
168238
168238
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
168239
168239
|
*/
|
|
168240
|
-
constructor(
|
|
168240
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
168241
168241
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
168242
168242
|
}
|
|
168243
168243
|
|
|
@@ -168680,7 +168680,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestAp
|
|
|
168680
168680
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
168681
168681
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
168682
168682
|
*/
|
|
168683
|
-
constructor(
|
|
168683
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
168684
168684
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
168685
168685
|
}
|
|
168686
168686
|
|
|
@@ -169452,7 +169452,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLo
|
|
|
169452
169452
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
169453
169453
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
169454
169454
|
*/
|
|
169455
|
-
constructor(
|
|
169455
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
169456
169456
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
169457
169457
|
}
|
|
169458
169458
|
|
|
@@ -169637,7 +169637,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLo
|
|
|
169637
169637
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
169638
169638
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
169639
169639
|
*/
|
|
169640
|
-
constructor(
|
|
169640
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
169641
169641
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
169642
169642
|
}
|
|
169643
169643
|
|
|
@@ -170539,7 +170539,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestRu
|
|
|
170539
170539
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
170540
170540
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
170541
170541
|
*/
|
|
170542
|
-
constructor(
|
|
170542
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
170543
170543
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
170544
170544
|
}
|
|
170545
170545
|
|
|
@@ -170724,7 +170724,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestRu
|
|
|
170724
170724
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
170725
170725
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
170726
170726
|
*/
|
|
170727
|
-
constructor(
|
|
170727
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
170728
170728
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
170729
170729
|
}
|
|
170730
170730
|
|
|
@@ -171438,7 +171438,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestSe
|
|
|
171438
171438
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
171439
171439
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
171440
171440
|
*/
|
|
171441
|
-
constructor(
|
|
171441
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
171442
171442
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
171443
171443
|
}
|
|
171444
171444
|
|
|
@@ -171623,7 +171623,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestSe
|
|
|
171623
171623
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
171624
171624
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
171625
171625
|
*/
|
|
171626
|
-
constructor(
|
|
171626
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
171627
171627
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
171628
171628
|
}
|
|
171629
171629
|
|
|
@@ -172295,7 +172295,7 @@ export class DashboardWidgetGroupDefinitionWidgetDistributionDefinitionRequestLi
|
|
|
172295
172295
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
172296
172296
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
172297
172297
|
*/
|
|
172298
|
-
constructor(
|
|
172298
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
172299
172299
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
172300
172300
|
}
|
|
172301
172301
|
|
|
@@ -173553,7 +173553,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionCustomLinkList
|
|
|
173553
173553
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
173554
173554
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
173555
173555
|
*/
|
|
173556
|
-
constructor(
|
|
173556
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
173557
173557
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
173558
173558
|
}
|
|
173559
173559
|
|
|
@@ -173942,7 +173942,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaC
|
|
|
173942
173942
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
173943
173943
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
173944
173944
|
*/
|
|
173945
|
-
constructor(
|
|
173945
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
173946
173946
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
173947
173947
|
}
|
|
173948
173948
|
|
|
@@ -174318,7 +174318,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaL
|
|
|
174318
174318
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
174319
174319
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
174320
174320
|
*/
|
|
174321
|
-
constructor(
|
|
174321
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
174322
174322
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
174323
174323
|
}
|
|
174324
174324
|
|
|
@@ -174809,7 +174809,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
|
|
|
174809
174809
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
174810
174810
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
174811
174811
|
*/
|
|
174812
|
-
constructor(
|
|
174812
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
174813
174813
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
174814
174814
|
}
|
|
174815
174815
|
|
|
@@ -174994,7 +174994,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
|
|
|
174994
174994
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
174995
174995
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
174996
174996
|
*/
|
|
174997
|
-
constructor(
|
|
174997
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
174998
174998
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
174999
174999
|
}
|
|
175000
175000
|
|
|
@@ -176168,7 +176168,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEve
|
|
|
176168
176168
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
176169
176169
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
176170
176170
|
*/
|
|
176171
|
-
constructor(
|
|
176171
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
176172
176172
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
176173
176173
|
}
|
|
176174
176174
|
|
|
@@ -176506,7 +176506,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEve
|
|
|
176506
176506
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
176507
176507
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
176508
176508
|
*/
|
|
176509
|
-
constructor(
|
|
176509
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
176510
176510
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
176511
176511
|
}
|
|
176512
176512
|
|
|
@@ -177641,7 +177641,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryLis
|
|
|
177641
177641
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
177642
177642
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
177643
177643
|
*/
|
|
177644
|
-
constructor(
|
|
177644
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
177645
177645
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
177646
177646
|
}
|
|
177647
177647
|
|
|
@@ -178132,7 +178132,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
|
|
|
178132
178132
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
178133
178133
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
178134
178134
|
*/
|
|
178135
|
-
constructor(
|
|
178135
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
178136
178136
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
178137
178137
|
}
|
|
178138
178138
|
|
|
@@ -178317,7 +178317,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
|
|
|
178317
178317
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
178318
178318
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
178319
178319
|
*/
|
|
178320
|
-
constructor(
|
|
178320
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
178321
178321
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
178322
178322
|
}
|
|
178323
178323
|
|
|
@@ -178798,7 +178798,7 @@ export class DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestList ext
|
|
|
178798
178798
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
178799
178799
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
178800
178800
|
*/
|
|
178801
|
-
constructor(
|
|
178801
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
178802
178802
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
178803
178803
|
}
|
|
178804
178804
|
|
|
@@ -179547,7 +179547,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionCustomLinkList
|
|
|
179547
179547
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
179548
179548
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
179549
179549
|
*/
|
|
179550
|
-
constructor(
|
|
179550
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
179551
179551
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
179552
179552
|
}
|
|
179553
179553
|
|
|
@@ -179697,7 +179697,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionEventList exte
|
|
|
179697
179697
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
179698
179698
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
179699
179699
|
*/
|
|
179700
|
-
constructor(
|
|
179700
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
179701
179701
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
179702
179702
|
}
|
|
179703
179703
|
|
|
@@ -180188,7 +180188,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuer
|
|
|
180188
180188
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
180189
180189
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
180190
180190
|
*/
|
|
180191
|
-
constructor(
|
|
180191
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
180192
180192
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
180193
180193
|
}
|
|
180194
180194
|
|
|
@@ -180373,7 +180373,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuer
|
|
|
180373
180373
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
180374
180374
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
180375
180375
|
*/
|
|
180376
|
-
constructor(
|
|
180376
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
180377
180377
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
180378
180378
|
}
|
|
180379
180379
|
|
|
@@ -181087,7 +181087,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuer
|
|
|
181087
181087
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
181088
181088
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
181089
181089
|
*/
|
|
181090
|
-
constructor(
|
|
181090
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
181091
181091
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
181092
181092
|
}
|
|
181093
181093
|
|
|
@@ -181272,7 +181272,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuer
|
|
|
181272
181272
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
181273
181273
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
181274
181274
|
*/
|
|
181275
|
-
constructor(
|
|
181275
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
181276
181276
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
181277
181277
|
}
|
|
181278
181278
|
|
|
@@ -182174,7 +182174,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuer
|
|
|
182174
182174
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
182175
182175
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
182176
182176
|
*/
|
|
182177
|
-
constructor(
|
|
182177
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
182178
182178
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
182179
182179
|
}
|
|
182180
182180
|
|
|
@@ -182359,7 +182359,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuer
|
|
|
182359
182359
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
182360
182360
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
182361
182361
|
*/
|
|
182362
|
-
constructor(
|
|
182362
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
182363
182363
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
182364
182364
|
}
|
|
182365
182365
|
|
|
@@ -183073,7 +183073,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurit
|
|
|
183073
183073
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
183074
183074
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
183075
183075
|
*/
|
|
183076
|
-
constructor(
|
|
183076
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
183077
183077
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
183078
183078
|
}
|
|
183079
183079
|
|
|
@@ -183258,7 +183258,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurit
|
|
|
183258
183258
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
183259
183259
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
183260
183260
|
*/
|
|
183261
|
-
constructor(
|
|
183261
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
183262
183262
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
183263
183263
|
}
|
|
183264
183264
|
|
|
@@ -183895,7 +183895,7 @@ export class DashboardWidgetGroupDefinitionWidgetHeatmapDefinitionRequestList ex
|
|
|
183895
183895
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
183896
183896
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
183897
183897
|
*/
|
|
183898
|
-
constructor(
|
|
183898
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
183899
183899
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
183900
183900
|
}
|
|
183901
183901
|
|
|
@@ -184745,7 +184745,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionCustomLinkList
|
|
|
184745
184745
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
184746
184746
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
184747
184747
|
*/
|
|
184748
|
-
constructor(
|
|
184748
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
184749
184749
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
184750
184750
|
}
|
|
184751
184751
|
|
|
@@ -185236,7 +185236,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApm
|
|
|
185236
185236
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
185237
185237
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
185238
185238
|
*/
|
|
185239
|
-
constructor(
|
|
185239
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
185240
185240
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
185241
185241
|
}
|
|
185242
185242
|
|
|
@@ -185421,7 +185421,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApm
|
|
|
185421
185421
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
185422
185422
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
185423
185423
|
*/
|
|
185424
|
-
constructor(
|
|
185424
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
185425
185425
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
185426
185426
|
}
|
|
185427
185427
|
|
|
@@ -186135,7 +186135,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLog
|
|
|
186135
186135
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
186136
186136
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
186137
186137
|
*/
|
|
186138
|
-
constructor(
|
|
186138
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
186139
186139
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
186140
186140
|
}
|
|
186141
186141
|
|
|
@@ -186320,7 +186320,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLog
|
|
|
186320
186320
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
186321
186321
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
186322
186322
|
*/
|
|
186323
|
-
constructor(
|
|
186323
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
186324
186324
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
186325
186325
|
}
|
|
186326
186326
|
|
|
@@ -187240,7 +187240,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRum
|
|
|
187240
187240
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
187241
187241
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
187242
187242
|
*/
|
|
187243
|
-
constructor(
|
|
187243
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
187244
187244
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
187245
187245
|
}
|
|
187246
187246
|
|
|
@@ -187425,7 +187425,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRum
|
|
|
187425
187425
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
187426
187426
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
187427
187427
|
*/
|
|
187428
|
-
constructor(
|
|
187428
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
187429
187429
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
187430
187430
|
}
|
|
187431
187431
|
|
|
@@ -188139,7 +188139,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSec
|
|
|
188139
188139
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
188140
188140
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
188141
188141
|
*/
|
|
188142
|
-
constructor(
|
|
188142
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
188143
188143
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
188144
188144
|
}
|
|
188145
188145
|
|
|
@@ -188324,7 +188324,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSec
|
|
|
188324
188324
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
188325
188325
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
188326
188326
|
*/
|
|
188327
|
-
constructor(
|
|
188327
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
188328
188328
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
188329
188329
|
}
|
|
188330
188330
|
|
|
@@ -188840,7 +188840,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLis
|
|
|
188840
188840
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
188841
188841
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
188842
188842
|
*/
|
|
188843
|
-
constructor(
|
|
188843
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
188844
188844
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
188845
188845
|
}
|
|
188846
188846
|
|
|
@@ -189331,7 +189331,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApm
|
|
|
189331
189331
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
189332
189332
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
189333
189333
|
*/
|
|
189334
|
-
constructor(
|
|
189334
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
189335
189335
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
189336
189336
|
}
|
|
189337
189337
|
|
|
@@ -189516,7 +189516,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApm
|
|
|
189516
189516
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
189517
189517
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
189518
189518
|
*/
|
|
189519
|
-
constructor(
|
|
189519
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
189520
189520
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
189521
189521
|
}
|
|
189522
189522
|
|
|
@@ -190230,7 +190230,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLog
|
|
|
190230
190230
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
190231
190231
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
190232
190232
|
*/
|
|
190233
|
-
constructor(
|
|
190233
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
190234
190234
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
190235
190235
|
}
|
|
190236
190236
|
|
|
@@ -190415,7 +190415,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLog
|
|
|
190415
190415
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
190416
190416
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
190417
190417
|
*/
|
|
190418
|
-
constructor(
|
|
190418
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
190419
190419
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
190420
190420
|
}
|
|
190421
190421
|
|
|
@@ -191317,7 +191317,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRum
|
|
|
191317
191317
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
191318
191318
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
191319
191319
|
*/
|
|
191320
|
-
constructor(
|
|
191320
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
191321
191321
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
191322
191322
|
}
|
|
191323
191323
|
|
|
@@ -191502,7 +191502,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRum
|
|
|
191502
191502
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
191503
191503
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
191504
191504
|
*/
|
|
191505
|
-
constructor(
|
|
191505
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
191506
191506
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
191507
191507
|
}
|
|
191508
191508
|
|
|
@@ -192216,7 +192216,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSec
|
|
|
192216
192216
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
192217
192217
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
192218
192218
|
*/
|
|
192219
|
-
constructor(
|
|
192219
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
192220
192220
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
192221
192221
|
}
|
|
192222
192222
|
|
|
@@ -192401,7 +192401,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSec
|
|
|
192401
192401
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
192402
192402
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
192403
192403
|
*/
|
|
192404
|
-
constructor(
|
|
192404
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
192405
192405
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
192406
192406
|
}
|
|
192407
192407
|
|
|
@@ -192917,7 +192917,7 @@ export class DashboardWidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLis
|
|
|
192917
192917
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
192918
192918
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
192919
192919
|
*/
|
|
192920
|
-
constructor(
|
|
192920
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
192921
192921
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
192922
192922
|
}
|
|
192923
192923
|
|
|
@@ -195611,7 +195611,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionCustomLinkL
|
|
|
195611
195611
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
195612
195612
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
195613
195613
|
*/
|
|
195614
|
-
constructor(
|
|
195614
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
195615
195615
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
195616
195616
|
}
|
|
195617
195617
|
|
|
@@ -196102,7 +196102,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQ
|
|
|
196102
196102
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
196103
196103
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
196104
196104
|
*/
|
|
196105
|
-
constructor(
|
|
196105
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
196106
196106
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
196107
196107
|
}
|
|
196108
196108
|
|
|
@@ -196287,7 +196287,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQ
|
|
|
196287
196287
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
196288
196288
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
196289
196289
|
*/
|
|
196290
|
-
constructor(
|
|
196290
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
196291
196291
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
196292
196292
|
}
|
|
196293
196293
|
|
|
@@ -196730,7 +196730,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmS
|
|
|
196730
196730
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
196731
196731
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
196732
196732
|
*/
|
|
196733
|
-
constructor(
|
|
196733
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
196734
196734
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
196735
196735
|
}
|
|
196736
196736
|
|
|
@@ -197400,7 +197400,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestCond
|
|
|
197400
197400
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
197401
197401
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
197402
197402
|
*/
|
|
197403
|
-
constructor(
|
|
197403
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
197404
197404
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
197405
197405
|
}
|
|
197406
197406
|
|
|
@@ -197789,7 +197789,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestForm
|
|
|
197789
197789
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
197790
197790
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
197791
197791
|
*/
|
|
197792
|
-
constructor(
|
|
197792
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
197793
197793
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
197794
197794
|
}
|
|
197795
197795
|
|
|
@@ -198165,7 +198165,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestForm
|
|
|
198165
198165
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
198166
198166
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
198167
198167
|
*/
|
|
198168
|
-
constructor(
|
|
198168
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
198169
198169
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
198170
198170
|
}
|
|
198171
198171
|
|
|
@@ -198656,7 +198656,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQ
|
|
|
198656
198656
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
198657
198657
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
198658
198658
|
*/
|
|
198659
|
-
constructor(
|
|
198659
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
198660
198660
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
198661
198661
|
}
|
|
198662
198662
|
|
|
@@ -198841,7 +198841,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQ
|
|
|
198841
198841
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
198842
198842
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
198843
198843
|
*/
|
|
198844
|
-
constructor(
|
|
198844
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
198845
198845
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
198846
198846
|
}
|
|
198847
198847
|
|
|
@@ -200203,7 +200203,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuer
|
|
|
200203
200203
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
200204
200204
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
200205
200205
|
*/
|
|
200206
|
-
constructor(
|
|
200206
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
200207
200207
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
200208
200208
|
}
|
|
200209
200209
|
|
|
@@ -200541,7 +200541,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuer
|
|
|
200541
200541
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
200542
200542
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
200543
200543
|
*/
|
|
200544
|
-
constructor(
|
|
200544
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
200545
200545
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
200546
200546
|
}
|
|
200547
200547
|
|
|
@@ -201676,7 +201676,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuer
|
|
|
201676
201676
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
201677
201677
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
201678
201678
|
*/
|
|
201679
|
-
constructor(
|
|
201679
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
201680
201680
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
201681
201681
|
}
|
|
201682
201682
|
|
|
@@ -202167,7 +202167,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQ
|
|
|
202167
202167
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
202168
202168
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
202169
202169
|
*/
|
|
202170
|
-
constructor(
|
|
202170
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
202171
202171
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
202172
202172
|
}
|
|
202173
202173
|
|
|
@@ -202352,7 +202352,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQ
|
|
|
202352
202352
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
202353
202353
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
202354
202354
|
*/
|
|
202355
|
-
constructor(
|
|
202355
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
202356
202356
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
202357
202357
|
}
|
|
202358
202358
|
|
|
@@ -203066,7 +203066,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecu
|
|
|
203066
203066
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
203067
203067
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
203068
203068
|
*/
|
|
203069
|
-
constructor(
|
|
203069
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
203070
203070
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
203071
203071
|
}
|
|
203072
203072
|
|
|
@@ -203251,7 +203251,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecu
|
|
|
203251
203251
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
203252
203252
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
203253
203253
|
*/
|
|
203254
|
-
constructor(
|
|
203254
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
203255
203255
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
203256
203256
|
}
|
|
203257
203257
|
|
|
@@ -204082,7 +204082,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestList
|
|
|
204082
204082
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
204083
204083
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
204084
204084
|
*/
|
|
204085
|
-
constructor(
|
|
204085
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
204086
204086
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
204087
204087
|
}
|
|
204088
204088
|
|
|
@@ -204601,7 +204601,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionCustomLinkL
|
|
|
204601
204601
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
204602
204602
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
204603
204603
|
*/
|
|
204604
|
-
constructor(
|
|
204604
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
204605
204605
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
204606
204606
|
}
|
|
204607
204607
|
|
|
@@ -205092,7 +205092,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQ
|
|
|
205092
205092
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
205093
205093
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
205094
205094
|
*/
|
|
205095
|
-
constructor(
|
|
205095
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
205096
205096
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
205097
205097
|
}
|
|
205098
205098
|
|
|
@@ -205277,7 +205277,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQ
|
|
|
205277
205277
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
205278
205278
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
205279
205279
|
*/
|
|
205280
|
-
constructor(
|
|
205280
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
205281
205281
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
205282
205282
|
}
|
|
205283
205283
|
|
|
@@ -205991,7 +205991,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAudi
|
|
|
205991
205991
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
205992
205992
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
205993
205993
|
*/
|
|
205994
|
-
constructor(
|
|
205994
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
205995
205995
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
205996
205996
|
}
|
|
205997
205997
|
|
|
@@ -206176,7 +206176,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestAudi
|
|
|
206176
206176
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
206177
206177
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
206178
206178
|
*/
|
|
206179
|
-
constructor(
|
|
206179
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
206180
206180
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
206181
206181
|
}
|
|
206182
206182
|
|
|
@@ -206788,7 +206788,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestCond
|
|
|
206788
206788
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
206789
206789
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
206790
206790
|
*/
|
|
206791
|
-
constructor(
|
|
206791
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
206792
206792
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
206793
206793
|
}
|
|
206794
206794
|
|
|
@@ -207177,7 +207177,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestForm
|
|
|
207177
207177
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
207178
207178
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
207179
207179
|
*/
|
|
207180
|
-
constructor(
|
|
207180
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
207181
207181
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
207182
207182
|
}
|
|
207183
207183
|
|
|
@@ -207553,7 +207553,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestForm
|
|
|
207553
207553
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
207554
207554
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
207555
207555
|
*/
|
|
207556
|
-
constructor(
|
|
207556
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
207557
207557
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
207558
207558
|
}
|
|
207559
207559
|
|
|
@@ -208044,7 +208044,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQ
|
|
|
208044
208044
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
208045
208045
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
208046
208046
|
*/
|
|
208047
|
-
constructor(
|
|
208047
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
208048
208048
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
208049
208049
|
}
|
|
208050
208050
|
|
|
@@ -208229,7 +208229,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQ
|
|
|
208229
208229
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
208230
208230
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
208231
208231
|
*/
|
|
208232
|
-
constructor(
|
|
208232
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
208233
208233
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
208234
208234
|
}
|
|
208235
208235
|
|
|
@@ -209591,7 +209591,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuer
|
|
|
209591
209591
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
209592
209592
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
209593
209593
|
*/
|
|
209594
|
-
constructor(
|
|
209594
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
209595
209595
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
209596
209596
|
}
|
|
209597
209597
|
|
|
@@ -209929,7 +209929,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuer
|
|
|
209929
209929
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
209930
209930
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
209931
209931
|
*/
|
|
209932
|
-
constructor(
|
|
209932
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
209933
209933
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
209934
209934
|
}
|
|
209935
209935
|
|
|
@@ -211064,7 +211064,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuer
|
|
|
211064
211064
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
211065
211065
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
211066
211066
|
*/
|
|
211067
|
-
constructor(
|
|
211067
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
211068
211068
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
211069
211069
|
}
|
|
211070
211070
|
|
|
@@ -211555,7 +211555,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQ
|
|
|
211555
211555
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
211556
211556
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
211557
211557
|
*/
|
|
211558
|
-
constructor(
|
|
211558
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
211559
211559
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
211560
211560
|
}
|
|
211561
211561
|
|
|
@@ -211740,7 +211740,7 @@ export class DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQ
|
|
|
211740
211740
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
211741
211741
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
211742
211742
|
*/
|
|
211743
|
-
constructor(
|
|
211743
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
211744
211744
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
211745
211745
|
}
|
|
211746
211746
|
|
|
@@ -212881,7 +212881,7 @@ export class DataDatadogCloudWorkloadSecurityAgentRulesAgentRulesList extends cd
|
|
|
212881
212881
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
212882
212882
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
212883
212883
|
*/
|
|
212884
|
-
constructor(
|
|
212884
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
212885
212885
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
212886
212886
|
}
|
|
212887
212887
|
|
|
@@ -213723,7 +213723,7 @@ export class DataDatadogLogsIndexesLogsIndexesExclusionFilterFilterList extends
|
|
|
213723
213723
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
213724
213724
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
213725
213725
|
*/
|
|
213726
|
-
constructor(
|
|
213726
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
213727
213727
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
213728
213728
|
}
|
|
213729
213729
|
|
|
@@ -213809,7 +213809,7 @@ export class DataDatadogLogsIndexesLogsIndexesExclusionFilterList extends cdktn.
|
|
|
213809
213809
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
213810
213810
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
213811
213811
|
*/
|
|
213812
|
-
constructor(
|
|
213812
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
213813
213813
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
213814
213814
|
}
|
|
213815
213815
|
|
|
@@ -213884,7 +213884,7 @@ export class DataDatadogLogsIndexesLogsIndexesFilterList extends cdktn.ComplexLi
|
|
|
213884
213884
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
213885
213885
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
213886
213886
|
*/
|
|
213887
|
-
constructor(
|
|
213887
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
213888
213888
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
213889
213889
|
}
|
|
213890
213890
|
|
|
@@ -213981,7 +213981,7 @@ export class DataDatadogLogsIndexesLogsIndexesList extends cdktn.ComplexList {
|
|
|
213981
213981
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
213982
213982
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
213983
213983
|
*/
|
|
213984
|
-
constructor(
|
|
213984
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
213985
213985
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
213986
213986
|
}
|
|
213987
213987
|
|
|
@@ -214206,7 +214206,7 @@ export class DataDatadogMonitorMonitorThresholdWindowsList extends cdktn.Complex
|
|
|
214206
214206
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
214207
214207
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
214208
214208
|
*/
|
|
214209
|
-
constructor(
|
|
214209
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
214210
214210
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
214211
214211
|
}
|
|
214212
214212
|
|
|
@@ -214306,7 +214306,7 @@ export class DataDatadogMonitorMonitorThresholdsList extends cdktn.ComplexList {
|
|
|
214306
214306
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
214307
214307
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
214308
214308
|
*/
|
|
214309
|
-
constructor(
|
|
214309
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
214310
214310
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
214311
214311
|
}
|
|
214312
214312
|
|
|
@@ -214724,7 +214724,7 @@ export class DataDatadogMonitorsMonitorsList extends cdktn.ComplexList {
|
|
|
214724
214724
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
214725
214725
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
214726
214726
|
*/
|
|
214727
|
-
constructor(
|
|
214727
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
214728
214728
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
214729
214729
|
}
|
|
214730
214730
|
|
|
@@ -215299,7 +215299,7 @@ export class DataDatadogRolesRolesList extends cdktn.ComplexList {
|
|
|
215299
215299
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
215300
215300
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
215301
215301
|
*/
|
|
215302
|
-
constructor(
|
|
215302
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
215303
215303
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
215304
215304
|
}
|
|
215305
215305
|
|
|
@@ -215530,7 +215530,7 @@ export class DataDatadogSecurityMonitoringFiltersFiltersExclusionFilterList exte
|
|
|
215530
215530
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
215531
215531
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
215532
215532
|
*/
|
|
215533
|
-
constructor(
|
|
215533
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
215534
215534
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
215535
215535
|
}
|
|
215536
215536
|
|
|
@@ -215631,7 +215631,7 @@ export class DataDatadogSecurityMonitoringFiltersFiltersList extends cdktn.Compl
|
|
|
215631
215631
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
215632
215632
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
215633
215633
|
*/
|
|
215634
|
-
constructor(
|
|
215634
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
215635
215635
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
215636
215636
|
}
|
|
215637
215637
|
|
|
@@ -215877,7 +215877,7 @@ export class DataDatadogSecurityMonitoringRulesRulesCaseList extends cdktn.Compl
|
|
|
215877
215877
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
215878
215878
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
215879
215879
|
*/
|
|
215880
|
-
constructor(
|
|
215880
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
215881
215881
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
215882
215882
|
}
|
|
215883
215883
|
|
|
@@ -215957,7 +215957,7 @@ export class DataDatadogSecurityMonitoringRulesRulesFilterList extends cdktn.Com
|
|
|
215957
215957
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
215958
215958
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
215959
215959
|
*/
|
|
215960
|
-
constructor(
|
|
215960
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
215961
215961
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
215962
215962
|
}
|
|
215963
215963
|
|
|
@@ -216032,7 +216032,7 @@ export class DataDatadogSecurityMonitoringRulesRulesOptionsImpossibleTravelOptio
|
|
|
216032
216032
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216033
216033
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216034
216034
|
*/
|
|
216035
|
-
constructor(
|
|
216035
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216036
216036
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216037
216037
|
}
|
|
216038
216038
|
|
|
@@ -216112,7 +216112,7 @@ export class DataDatadogSecurityMonitoringRulesRulesOptionsNewValueOptionsList e
|
|
|
216112
216112
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216113
216113
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216114
216114
|
*/
|
|
216115
|
-
constructor(
|
|
216115
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216116
216116
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216117
216117
|
}
|
|
216118
216118
|
|
|
@@ -216214,7 +216214,7 @@ export class DataDatadogSecurityMonitoringRulesRulesOptionsList extends cdktn.Co
|
|
|
216214
216214
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216215
216215
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216216
216216
|
*/
|
|
216217
|
-
constructor(
|
|
216217
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216218
216218
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216219
216219
|
}
|
|
216220
216220
|
|
|
@@ -216294,7 +216294,7 @@ export class DataDatadogSecurityMonitoringRulesRulesQueryAgentRuleList extends c
|
|
|
216294
216294
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216295
216295
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216296
216296
|
*/
|
|
216297
|
-
constructor(
|
|
216297
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216298
216298
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216299
216299
|
}
|
|
216300
216300
|
|
|
@@ -216400,7 +216400,7 @@ export class DataDatadogSecurityMonitoringRulesRulesQueryList extends cdktn.Comp
|
|
|
216400
216400
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216401
216401
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216402
216402
|
*/
|
|
216403
|
-
constructor(
|
|
216403
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216404
216404
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216405
216405
|
}
|
|
216406
216406
|
|
|
@@ -216524,7 +216524,7 @@ export class DataDatadogSecurityMonitoringRulesRulesList extends cdktn.ComplexLi
|
|
|
216524
216524
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
216525
216525
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
216526
216526
|
*/
|
|
216527
|
-
constructor(
|
|
216527
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
216528
216528
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
216529
216529
|
}
|
|
216530
216530
|
|
|
@@ -217084,7 +217084,7 @@ export class DataDatadogServiceLevelObjectivesSlosList extends cdktn.ComplexList
|
|
|
217084
217084
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
217085
217085
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
217086
217086
|
*/
|
|
217087
|
-
constructor(
|
|
217087
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
217088
217088
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
217089
217089
|
}
|
|
217090
217090
|
|
|
@@ -222340,7 +222340,7 @@ export class LogsCustomPipelineFilterList extends cdktn.ComplexList {
|
|
|
222340
222340
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
222341
222341
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
222342
222342
|
*/
|
|
222343
|
-
constructor(
|
|
222343
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
222344
222344
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
222345
222345
|
}
|
|
222346
222346
|
|
|
@@ -223142,7 +223142,7 @@ export class LogsCustomPipelineProcessorCategoryProcessorCategoryList extends cd
|
|
|
223142
223142
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
223143
223143
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
223144
223144
|
*/
|
|
223145
|
-
constructor(
|
|
223145
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
223146
223146
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
223147
223147
|
}
|
|
223148
223148
|
|
|
@@ -224520,7 +224520,7 @@ export class LogsCustomPipelineProcessorPipelineFilterList extends cdktn.Complex
|
|
|
224520
224520
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
224521
224521
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
224522
224522
|
*/
|
|
224523
|
-
constructor(
|
|
224523
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
224524
224524
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
224525
224525
|
}
|
|
224526
224526
|
|
|
@@ -225322,7 +225322,7 @@ export class LogsCustomPipelineProcessorPipelineProcessorCategoryProcessorCatego
|
|
|
225322
225322
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
225323
225323
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
225324
225324
|
*/
|
|
225325
|
-
constructor(
|
|
225325
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
225326
225326
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
225327
225327
|
}
|
|
225328
225328
|
|
|
@@ -228277,7 +228277,7 @@ export class LogsCustomPipelineProcessorPipelineProcessorList extends cdktn.Comp
|
|
|
228277
228277
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
228278
228278
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
228279
228279
|
*/
|
|
228280
|
-
constructor(
|
|
228280
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
228281
228281
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
228282
228282
|
}
|
|
228283
228283
|
|
|
@@ -230185,7 +230185,7 @@ export class LogsCustomPipelineProcessorList extends cdktn.ComplexList {
|
|
|
230185
230185
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
230186
230186
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
230187
230187
|
*/
|
|
230188
|
-
constructor(
|
|
230188
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
230189
230189
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
230190
230190
|
}
|
|
230191
230191
|
|
|
@@ -230760,7 +230760,7 @@ export class LogsIndexExclusionFilterFilterList extends cdktn.ComplexList {
|
|
|
230760
230760
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
230761
230761
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
230762
230762
|
*/
|
|
230763
|
-
constructor(
|
|
230763
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
230764
230764
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
230765
230765
|
}
|
|
230766
230766
|
|
|
@@ -230948,7 +230948,7 @@ export class LogsIndexExclusionFilterList extends cdktn.ComplexList {
|
|
|
230948
230948
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
230949
230949
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
230950
230950
|
*/
|
|
230951
|
-
constructor(
|
|
230951
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
230952
230952
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
230953
230953
|
}
|
|
230954
230954
|
|
|
@@ -231813,7 +231813,7 @@ export class LogsMetricGroupByList extends cdktn.ComplexList {
|
|
|
231813
231813
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
231814
231814
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
231815
231815
|
*/
|
|
231816
|
-
constructor(
|
|
231816
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
231817
231817
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
231818
231818
|
}
|
|
231819
231819
|
|
|
@@ -232701,7 +232701,7 @@ export class MetricTagConfigurationAggregationsList extends cdktn.ComplexList {
|
|
|
232701
232701
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
232702
232702
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
232703
232703
|
*/
|
|
232704
|
-
constructor(
|
|
232704
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
232705
232705
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
232706
232706
|
}
|
|
232707
232707
|
|
|
@@ -235692,7 +235692,7 @@ export class RolePermissionList extends cdktn.ComplexList {
|
|
|
235692
235692
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
235693
235693
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
235694
235694
|
*/
|
|
235695
|
-
constructor(
|
|
235695
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
235696
235696
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
235697
235697
|
}
|
|
235698
235698
|
|
|
@@ -236028,7 +236028,7 @@ export class SecurityMonitoringDefaultRuleCaseList extends cdktn.ComplexList {
|
|
|
236028
236028
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
236029
236029
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
236030
236030
|
*/
|
|
236031
|
-
constructor(
|
|
236031
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
236032
236032
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
236033
236033
|
}
|
|
236034
236034
|
|
|
@@ -236175,7 +236175,7 @@ export class SecurityMonitoringDefaultRuleFilterList extends cdktn.ComplexList {
|
|
|
236175
236175
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
236176
236176
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
236177
236177
|
*/
|
|
236178
|
-
constructor(
|
|
236178
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
236179
236179
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
236180
236180
|
}
|
|
236181
236181
|
|
|
@@ -236545,7 +236545,7 @@ export class SecurityMonitoringFilterExclusionFilterList extends cdktn.ComplexLi
|
|
|
236545
236545
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
236546
236546
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
236547
236547
|
*/
|
|
236548
|
-
constructor(
|
|
236548
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
236549
236549
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
236550
236550
|
}
|
|
236551
236551
|
|
|
@@ -237062,7 +237062,7 @@ export class SecurityMonitoringRuleCaseList extends cdktn.ComplexList {
|
|
|
237062
237062
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
237063
237063
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
237064
237064
|
*/
|
|
237065
|
-
constructor(
|
|
237065
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
237066
237066
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
237067
237067
|
}
|
|
237068
237068
|
|
|
@@ -237209,7 +237209,7 @@ export class SecurityMonitoringRuleFilterList extends cdktn.ComplexList {
|
|
|
237209
237209
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
237210
237210
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
237211
237211
|
*/
|
|
237212
|
-
constructor(
|
|
237212
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
237213
237213
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
237214
237214
|
}
|
|
237215
237215
|
|
|
@@ -237812,7 +237812,7 @@ export class SecurityMonitoringRuleQueryAgentRuleList extends cdktn.ComplexList
|
|
|
237812
237812
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
237813
237813
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
237814
237814
|
*/
|
|
237815
|
-
constructor(
|
|
237815
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
237816
237816
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
237817
237817
|
}
|
|
237818
237818
|
|
|
@@ -238137,7 +238137,7 @@ export class SecurityMonitoringRuleQueryList extends cdktn.ComplexList {
|
|
|
238137
238137
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
238138
238138
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
238139
238139
|
*/
|
|
238140
|
-
constructor(
|
|
238140
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
238141
238141
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
238142
238142
|
}
|
|
238143
238143
|
|
|
@@ -238853,7 +238853,7 @@ export class ServiceLevelObjectiveThresholdsList extends cdktn.ComplexList {
|
|
|
238853
238853
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
238854
238854
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
238855
238855
|
*/
|
|
238856
|
-
constructor(
|
|
238856
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
238857
238857
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
238858
238858
|
}
|
|
238859
238859
|
|
|
@@ -241034,7 +241034,7 @@ export class SyntheticsTestApiStepAssertionList extends cdktn.ComplexList {
|
|
|
241034
241034
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
241035
241035
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
241036
241036
|
*/
|
|
241037
|
-
constructor(
|
|
241037
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
241038
241038
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
241039
241039
|
}
|
|
241040
241040
|
|
|
@@ -241364,7 +241364,7 @@ export class SyntheticsTestApiStepExtractedValueList extends cdktn.ComplexList {
|
|
|
241364
241364
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
241365
241365
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
241366
241366
|
*/
|
|
241367
|
-
constructor(
|
|
241367
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
241368
241368
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
241369
241369
|
}
|
|
241370
241370
|
|
|
@@ -243466,7 +243466,7 @@ export class SyntheticsTestApiStepList extends cdktn.ComplexList {
|
|
|
243466
243466
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
243467
243467
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
243468
243468
|
*/
|
|
243469
|
-
constructor(
|
|
243469
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
243470
243470
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
243471
243471
|
}
|
|
243472
243472
|
|
|
@@ -243865,7 +243865,7 @@ export class SyntheticsTestAssertionList extends cdktn.ComplexList {
|
|
|
243865
243865
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
243866
243866
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
243867
243867
|
*/
|
|
243868
|
-
constructor(
|
|
243868
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
243869
243869
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
243870
243870
|
}
|
|
243871
243871
|
|
|
@@ -245251,7 +245251,7 @@ export class SyntheticsTestBrowserStepList extends cdktn.ComplexList {
|
|
|
245251
245251
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
245252
245252
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
245253
245253
|
*/
|
|
245254
|
-
constructor(
|
|
245254
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
245255
245255
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
245256
245256
|
}
|
|
245257
245257
|
|
|
@@ -245506,7 +245506,7 @@ export class SyntheticsTestBrowserVariableList extends cdktn.ComplexList {
|
|
|
245506
245506
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
245507
245507
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
245508
245508
|
*/
|
|
245509
|
-
constructor(
|
|
245509
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
245510
245510
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
245511
245511
|
}
|
|
245512
245512
|
|
|
@@ -245761,7 +245761,7 @@ export class SyntheticsTestConfigVariableList extends cdktn.ComplexList {
|
|
|
245761
245761
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
245762
245762
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
245763
245763
|
*/
|
|
245764
|
-
constructor(
|
|
245764
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
245765
245765
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
245766
245766
|
}
|
|
245767
245767
|
|
|
@@ -249395,7 +249395,7 @@ export class BranchRestrictionGroupsList extends cdktn.ComplexList {
|
|
|
249395
249395
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
249396
249396
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
249397
249397
|
*/
|
|
249398
|
-
constructor(
|
|
249398
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
249399
249399
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
249400
249400
|
}
|
|
249401
249401
|
|
|
@@ -252145,7 +252145,7 @@ export class BranchRestrictionGroupsList extends cdktn.ComplexList {
|
|
|
252145
252145
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
252146
252146
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
252147
252147
|
*/
|
|
252148
|
-
constructor(
|
|
252148
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) {
|
|
252149
252149
|
super(terraformResource, terraformAttribute, wrapsSet)
|
|
252150
252150
|
}
|
|
252151
252151
|
|