@awboost/cfn-resource-types 0.1.285 → 0.1.286
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.
|
@@ -54,6 +54,16 @@ export type RedshiftServerlessWorkgroupProperties = {
|
|
|
54
54
|
* @maxLength `200`
|
|
55
55
|
*/
|
|
56
56
|
Tags?: Tag[];
|
|
57
|
+
/**
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `256`
|
|
60
|
+
* @pattern `^[a-zA-Z0-9_]+$`
|
|
61
|
+
*/
|
|
62
|
+
TrackName?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Definition for workgroup resource
|
|
65
|
+
*/
|
|
66
|
+
Workgroup?: Workgroup;
|
|
57
67
|
/**
|
|
58
68
|
* The name of the workgroup.
|
|
59
69
|
* @minLength `3`
|
|
@@ -87,7 +97,6 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
|
87
97
|
* Definition for workgroup resource
|
|
88
98
|
*/
|
|
89
99
|
Workgroup: {
|
|
90
|
-
BaseCapacity: number;
|
|
91
100
|
ConfigParameters: {
|
|
92
101
|
/**
|
|
93
102
|
* @minLength `0`
|
|
@@ -116,25 +125,22 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
|
116
125
|
}[];
|
|
117
126
|
};
|
|
118
127
|
EnhancedVpcRouting: boolean;
|
|
119
|
-
MaxCapacity: number;
|
|
120
128
|
/**
|
|
121
129
|
* @minLength `3`
|
|
122
130
|
* @maxLength `64`
|
|
123
131
|
* @pattern `^[a-z0-9-]+$`
|
|
124
132
|
*/
|
|
125
133
|
NamespaceName: string;
|
|
126
|
-
PricePerformanceTarget: {
|
|
127
|
-
/**
|
|
128
|
-
* @min `1`
|
|
129
|
-
* @max `100`
|
|
130
|
-
*/
|
|
131
|
-
Level: number;
|
|
132
|
-
Status: PerformanceTargetStatus;
|
|
133
|
-
};
|
|
134
134
|
PubliclyAccessible: boolean;
|
|
135
135
|
SecurityGroupIds: string[];
|
|
136
136
|
Status: WorkgroupStatus;
|
|
137
137
|
SubnetIds: string[];
|
|
138
|
+
/**
|
|
139
|
+
* @minLength `1`
|
|
140
|
+
* @maxLength `256`
|
|
141
|
+
* @pattern `^[a-zA-Z0-9_]+$`
|
|
142
|
+
*/
|
|
143
|
+
TrackName: string;
|
|
138
144
|
WorkgroupArn: string;
|
|
139
145
|
WorkgroupId: string;
|
|
140
146
|
/**
|
|
@@ -183,6 +189,8 @@ export type Tag = {
|
|
|
183
189
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
|
|
184
190
|
*/
|
|
185
191
|
export type Workgroup = {
|
|
192
|
+
BaseCapacity?: number;
|
|
193
|
+
MaxCapacity?: number;
|
|
186
194
|
PricePerformanceTarget?: PerformanceTarget;
|
|
187
195
|
};
|
|
188
196
|
/**
|