@awboost/cfn-resource-types 0.1.213 → 0.1.215
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/AWS-ApplicationAutoScaling-ScalingPolicy.d.ts +98 -12
- package/lib/AWS-CleanRooms-ConfiguredTable.d.ts +84 -0
- package/lib/AWS-CleanRooms-ConfiguredTableAssociation.d.ts +1 -1
- package/lib/AWS-CloudFront-Distribution.d.ts +16 -1
- package/lib/AWS-Connect-Rule.d.ts +43 -43
- package/lib/AWS-Connect-Rule.js +1 -1
- package/lib/AWS-Connect-TaskTemplate.d.ts +5 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +20 -2
- package/lib/AWS-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-CustomerGateway.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -0
- package/lib/AWS-ECS-TaskDefinition.d.ts +4 -0
- package/lib/AWS-EMRServerless-Application.d.ts +19 -0
- package/lib/AWS-IoT-Command.d.ts +160 -0
- package/lib/AWS-IoT-Command.js +13 -0
- package/lib/AWS-Logs-LogGroup.d.ts +1 -0
- package/lib/AWS-Logs-MetricFilter.d.ts +1 -0
- package/lib/AWS-Logs-QueryDefinition.d.ts +4 -0
- package/lib/AWS-Logs-SubscriptionFilter.d.ts +1 -0
- package/lib/AWS-Logs-Transformer.d.ts +375 -0
- package/lib/AWS-Logs-Transformer.js +13 -0
- package/lib/AWS-M2-Environment.d.ts +6 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts +144 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.js +12 -0
- package/lib/AWS-Organizations-Policy.d.ts +2 -2
- package/lib/AWS-RAM-ResourceShare.d.ts +40 -3
- package/lib/AWS-RAM-ResourceShare.js +1 -1
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +38 -28
- package/lib/AWS-RDS-CustomDBEngineVersion.js +2 -1
- package/lib/AWS-RedshiftServerless-Workgroup.d.ts +36 -0
- package/lib/AWS-S3Express-DirectoryBucket.d.ts +5 -5
- package/package.json +1 -1
|
@@ -16,6 +16,10 @@ export type LogsQueryDefinitionProperties = {
|
|
|
16
16
|
* @maxLength `255`
|
|
17
17
|
*/
|
|
18
18
|
Name: string;
|
|
19
|
+
/**
|
|
20
|
+
* Query language of the query string. Possible values are CWLI, SQL, PPL, with CWLI being the default.
|
|
21
|
+
*/
|
|
22
|
+
QueryLanguage?: "CWLI" | "SQL" | "PPL";
|
|
19
23
|
/**
|
|
20
24
|
* The query string to use for this definition
|
|
21
25
|
* @minLength `1`
|
|
@@ -11,6 +11,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
11
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html}
|
|
12
12
|
*/
|
|
13
13
|
export type LogsSubscriptionFilterProperties = {
|
|
14
|
+
ApplyOnTransformedLogs?: boolean;
|
|
14
15
|
/**
|
|
15
16
|
* The Amazon Resource Name (ARN) of the destination.
|
|
16
17
|
*/
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
|
5
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
7
|
+
*/
|
|
8
|
+
export type LogsTransformerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Existing log group that you want to associate with this transformer.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `2048`
|
|
13
|
+
* @pattern `[\w#+=/:,.@-]*`
|
|
14
|
+
*/
|
|
15
|
+
LogGroupIdentifier: string;
|
|
16
|
+
/**
|
|
17
|
+
* List of processors in a transformer
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `20`
|
|
20
|
+
*/
|
|
21
|
+
TransformerConfig: Processor[];
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Type definition for `AWS::Logs::Transformer.AddKeyEntry`.
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-addkeyentry.html}
|
|
26
|
+
*/
|
|
27
|
+
export type AddKeyEntry = {
|
|
28
|
+
/**
|
|
29
|
+
* @maxLength `128`
|
|
30
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
31
|
+
*/
|
|
32
|
+
Key: string;
|
|
33
|
+
OverwriteIfExists?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `1`
|
|
36
|
+
* @maxLength `256`
|
|
37
|
+
*/
|
|
38
|
+
Value: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Type definition for `AWS::Logs::Transformer.CopyValueEntry`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-copyvalueentry.html}
|
|
43
|
+
*/
|
|
44
|
+
export type CopyValueEntry = {
|
|
45
|
+
OverwriteIfExists?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
48
|
+
*/
|
|
49
|
+
Source: string;
|
|
50
|
+
/**
|
|
51
|
+
* @maxLength `128`
|
|
52
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
53
|
+
*/
|
|
54
|
+
Target: string;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
|
59
|
+
*/
|
|
60
|
+
export type MoveKeyEntry = {
|
|
61
|
+
OverwriteIfExists?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
64
|
+
*/
|
|
65
|
+
Source: string;
|
|
66
|
+
/**
|
|
67
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
68
|
+
*/
|
|
69
|
+
Target: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
|
74
|
+
*/
|
|
75
|
+
export type ParseCloudfront = {
|
|
76
|
+
/**
|
|
77
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
78
|
+
*/
|
|
79
|
+
Source?: string;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::Logs::Transformer.ParsePostgres`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsepostgres.html}
|
|
84
|
+
*/
|
|
85
|
+
export type ParsePostgres = {
|
|
86
|
+
/**
|
|
87
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
88
|
+
*/
|
|
89
|
+
Source?: string;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::Logs::Transformer.ParseRoute53`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parseroute53.html}
|
|
94
|
+
*/
|
|
95
|
+
export type ParseRoute53 = {
|
|
96
|
+
/**
|
|
97
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
98
|
+
*/
|
|
99
|
+
Source?: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
|
104
|
+
*/
|
|
105
|
+
export type ParseVPC = {
|
|
106
|
+
/**
|
|
107
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
108
|
+
*/
|
|
109
|
+
Source?: string;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Type definition for `AWS::Logs::Transformer.ParseWAF`.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsewaf.html}
|
|
114
|
+
*/
|
|
115
|
+
export type ParseWAF = {
|
|
116
|
+
/**
|
|
117
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
118
|
+
*/
|
|
119
|
+
Source?: string;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::Logs::Transformer.Processor`.
|
|
123
|
+
* Individual processor configuration
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-processor.html}
|
|
125
|
+
*/
|
|
126
|
+
export type Processor = {
|
|
127
|
+
AddKeys?: {
|
|
128
|
+
/**
|
|
129
|
+
* @minLength `1`
|
|
130
|
+
* @maxLength `5`
|
|
131
|
+
*/
|
|
132
|
+
Entries: AddKeyEntry[];
|
|
133
|
+
};
|
|
134
|
+
CopyValue?: {
|
|
135
|
+
/**
|
|
136
|
+
* @minLength `1`
|
|
137
|
+
* @maxLength `5`
|
|
138
|
+
*/
|
|
139
|
+
Entries: CopyValueEntry[];
|
|
140
|
+
};
|
|
141
|
+
Csv?: {
|
|
142
|
+
/**
|
|
143
|
+
* @minLength `1`
|
|
144
|
+
* @maxLength `100`
|
|
145
|
+
*/
|
|
146
|
+
Columns?: string[];
|
|
147
|
+
/**
|
|
148
|
+
* @maxLength `1`
|
|
149
|
+
*/
|
|
150
|
+
Delimiter?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @maxLength `1`
|
|
153
|
+
*/
|
|
154
|
+
QuoteCharacter?: string;
|
|
155
|
+
Source?: string;
|
|
156
|
+
};
|
|
157
|
+
DateTimeConverter?: {
|
|
158
|
+
Locale?: string;
|
|
159
|
+
/**
|
|
160
|
+
* @minLength `1`
|
|
161
|
+
* @maxLength `5`
|
|
162
|
+
*/
|
|
163
|
+
MatchPatterns: string[];
|
|
164
|
+
/**
|
|
165
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
166
|
+
*/
|
|
167
|
+
Source: string;
|
|
168
|
+
SourceTimezone?: string;
|
|
169
|
+
/**
|
|
170
|
+
* @maxLength `128`
|
|
171
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
172
|
+
*/
|
|
173
|
+
Target: string;
|
|
174
|
+
TargetFormat?: string;
|
|
175
|
+
TargetTimezone?: string;
|
|
176
|
+
};
|
|
177
|
+
DeleteKeys?: {
|
|
178
|
+
/**
|
|
179
|
+
* @minLength `1`
|
|
180
|
+
* @maxLength `5`
|
|
181
|
+
*/
|
|
182
|
+
WithKeys: string[];
|
|
183
|
+
};
|
|
184
|
+
Grok?: {
|
|
185
|
+
/**
|
|
186
|
+
* @maxLength `128`
|
|
187
|
+
*/
|
|
188
|
+
Match: string;
|
|
189
|
+
/**
|
|
190
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
191
|
+
*/
|
|
192
|
+
Source?: string;
|
|
193
|
+
};
|
|
194
|
+
ListToMap?: {
|
|
195
|
+
Flatten?: boolean;
|
|
196
|
+
FlattenedElement?: "first" | "last";
|
|
197
|
+
/**
|
|
198
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
199
|
+
*/
|
|
200
|
+
Key: string;
|
|
201
|
+
/**
|
|
202
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
203
|
+
*/
|
|
204
|
+
Source: string;
|
|
205
|
+
/**
|
|
206
|
+
* @maxLength `128`
|
|
207
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
208
|
+
*/
|
|
209
|
+
Target?: string;
|
|
210
|
+
/**
|
|
211
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
212
|
+
*/
|
|
213
|
+
ValueKey?: string;
|
|
214
|
+
};
|
|
215
|
+
LowerCaseString?: {
|
|
216
|
+
/**
|
|
217
|
+
* @minLength `1`
|
|
218
|
+
* @maxLength `10`
|
|
219
|
+
*/
|
|
220
|
+
WithKeys: string[];
|
|
221
|
+
};
|
|
222
|
+
MoveKeys?: {
|
|
223
|
+
/**
|
|
224
|
+
* @minLength `1`
|
|
225
|
+
* @maxLength `5`
|
|
226
|
+
*/
|
|
227
|
+
Entries: MoveKeyEntry[];
|
|
228
|
+
};
|
|
229
|
+
ParseCloudfront?: ParseCloudfront;
|
|
230
|
+
ParseJSON?: {
|
|
231
|
+
/**
|
|
232
|
+
* @maxLength `128`
|
|
233
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
234
|
+
*/
|
|
235
|
+
Destination?: string;
|
|
236
|
+
Source?: string;
|
|
237
|
+
};
|
|
238
|
+
ParseKeyValue?: {
|
|
239
|
+
/**
|
|
240
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
241
|
+
*/
|
|
242
|
+
Destination?: string;
|
|
243
|
+
FieldDelimiter?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
246
|
+
*/
|
|
247
|
+
KeyPrefix?: string;
|
|
248
|
+
KeyValueDelimiter?: string;
|
|
249
|
+
/**
|
|
250
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
251
|
+
*/
|
|
252
|
+
NonMatchValue?: string;
|
|
253
|
+
OverwriteIfExists?: boolean;
|
|
254
|
+
/**
|
|
255
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
256
|
+
*/
|
|
257
|
+
Source?: string;
|
|
258
|
+
};
|
|
259
|
+
ParsePostgres?: ParsePostgres;
|
|
260
|
+
ParseRoute53?: ParseRoute53;
|
|
261
|
+
ParseVPC?: ParseVPC;
|
|
262
|
+
ParseWAF?: ParseWAF;
|
|
263
|
+
RenameKeys?: {
|
|
264
|
+
/**
|
|
265
|
+
* @minLength `1`
|
|
266
|
+
* @maxLength `5`
|
|
267
|
+
*/
|
|
268
|
+
Entries: RenameKeyEntry[];
|
|
269
|
+
};
|
|
270
|
+
SplitString?: {
|
|
271
|
+
/**
|
|
272
|
+
* @minLength `1`
|
|
273
|
+
* @maxLength `10`
|
|
274
|
+
*/
|
|
275
|
+
Entries: SplitStringEntry[];
|
|
276
|
+
};
|
|
277
|
+
SubstituteString?: {
|
|
278
|
+
/**
|
|
279
|
+
* @minLength `1`
|
|
280
|
+
* @maxLength `10`
|
|
281
|
+
*/
|
|
282
|
+
Entries: SubstituteStringEntry[];
|
|
283
|
+
};
|
|
284
|
+
TrimString?: {
|
|
285
|
+
/**
|
|
286
|
+
* @minLength `1`
|
|
287
|
+
* @maxLength `10`
|
|
288
|
+
*/
|
|
289
|
+
WithKeys: string[];
|
|
290
|
+
};
|
|
291
|
+
TypeConverter?: {
|
|
292
|
+
/**
|
|
293
|
+
* @minLength `1`
|
|
294
|
+
* @maxLength `5`
|
|
295
|
+
*/
|
|
296
|
+
Entries: TypeConverterEntry[];
|
|
297
|
+
};
|
|
298
|
+
UpperCaseString?: {
|
|
299
|
+
/**
|
|
300
|
+
* @minLength `1`
|
|
301
|
+
* @maxLength `10`
|
|
302
|
+
*/
|
|
303
|
+
WithKeys: string[];
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* Type definition for `AWS::Logs::Transformer.RenameKeyEntry`.
|
|
308
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-renamekeyentry.html}
|
|
309
|
+
*/
|
|
310
|
+
export type RenameKeyEntry = {
|
|
311
|
+
/**
|
|
312
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
313
|
+
*/
|
|
314
|
+
Key: string;
|
|
315
|
+
OverwriteIfExists?: boolean;
|
|
316
|
+
/**
|
|
317
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
318
|
+
*/
|
|
319
|
+
RenameTo: string;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Type definition for `AWS::Logs::Transformer.SplitStringEntry`.
|
|
323
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstringentry.html}
|
|
324
|
+
*/
|
|
325
|
+
export type SplitStringEntry = {
|
|
326
|
+
/**
|
|
327
|
+
* @maxLength `1`
|
|
328
|
+
*/
|
|
329
|
+
Delimiter: string;
|
|
330
|
+
/**
|
|
331
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
332
|
+
*/
|
|
333
|
+
Source: string;
|
|
334
|
+
};
|
|
335
|
+
/**
|
|
336
|
+
* Type definition for `AWS::Logs::Transformer.SubstituteStringEntry`.
|
|
337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-substitutestringentry.html}
|
|
338
|
+
*/
|
|
339
|
+
export type SubstituteStringEntry = {
|
|
340
|
+
/**
|
|
341
|
+
* @maxLength `128`
|
|
342
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
343
|
+
*/
|
|
344
|
+
From: string;
|
|
345
|
+
/**
|
|
346
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
347
|
+
*/
|
|
348
|
+
Source: string;
|
|
349
|
+
/**
|
|
350
|
+
* @maxLength `128`
|
|
351
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
352
|
+
*/
|
|
353
|
+
To: string;
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Type definition for `AWS::Logs::Transformer.TypeConverterEntry`.
|
|
357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-typeconverterentry.html}
|
|
358
|
+
*/
|
|
359
|
+
export type TypeConverterEntry = {
|
|
360
|
+
/**
|
|
361
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
362
|
+
*/
|
|
363
|
+
Key: string;
|
|
364
|
+
Type: "boolean" | "integer" | "double" | "string";
|
|
365
|
+
};
|
|
366
|
+
/**
|
|
367
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
|
368
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
369
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
370
|
+
*/
|
|
371
|
+
export declare class LogsTransformer extends $Resource<"AWS::Logs::Transformer", LogsTransformerProperties, Record<string, never>> {
|
|
372
|
+
static readonly Type = "AWS::Logs::Transformer";
|
|
373
|
+
constructor(logicalId: string, properties: LogsTransformerProperties, options?: $ResourceOptions);
|
|
374
|
+
}
|
|
375
|
+
//# sourceMappingURL=AWS-Logs-Transformer.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
|
4
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
6
|
+
*/
|
|
7
|
+
export class LogsTransformer extends $Resource {
|
|
8
|
+
static Type = "AWS::Logs::Transformer";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, LogsTransformer.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Logs-Transformer.js.map
|
|
@@ -40,6 +40,7 @@ export type M2EnvironmentProperties = {
|
|
|
40
40
|
* @pattern `^[A-Za-z0-9][A-Za-z0-9_\-]{1,59}$`
|
|
41
41
|
*/
|
|
42
42
|
Name: string;
|
|
43
|
+
NetworkType?: NetworkType;
|
|
43
44
|
/**
|
|
44
45
|
* Configures a desired maintenance window for the environment. If you do not provide a value, a random system-generated value will be assigned.
|
|
45
46
|
* @pattern `^\S{1,50}$`
|
|
@@ -134,6 +135,11 @@ export type HighAvailabilityConfig = {
|
|
|
134
135
|
*/
|
|
135
136
|
DesiredCapacity: number;
|
|
136
137
|
};
|
|
138
|
+
/**
|
|
139
|
+
* Type definition for `AWS::M2::Environment.NetworkType`.
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-environment-networktype.html}
|
|
141
|
+
*/
|
|
142
|
+
export type NetworkType = "ipv4" | "dual";
|
|
137
143
|
/**
|
|
138
144
|
* Type definition for `AWS::M2::Environment.StorageConfiguration`.
|
|
139
145
|
* Defines the storage configuration for an environment.
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
|
|
6
|
+
*/
|
|
7
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The ID of a core network for the Direct Connect Gateway attachment.
|
|
10
|
+
*/
|
|
11
|
+
CoreNetworkId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The ARN of the Direct Connect Gateway.
|
|
14
|
+
*/
|
|
15
|
+
DirectConnectGatewayArn: string;
|
|
16
|
+
/**
|
|
17
|
+
* The Regions where the edges are located.
|
|
18
|
+
*/
|
|
19
|
+
EdgeLocations: string[];
|
|
20
|
+
/**
|
|
21
|
+
* The attachment to move from one network function group to another.
|
|
22
|
+
*/
|
|
23
|
+
ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
|
|
24
|
+
/**
|
|
25
|
+
* The attachment to move from one segment to another.
|
|
26
|
+
*/
|
|
27
|
+
ProposedSegmentChange?: ProposedSegmentChange;
|
|
28
|
+
/**
|
|
29
|
+
* Tags for the attachment.
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html#aws-resource-networkmanager-directconnectgatewayattachment-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* Id of the attachment.
|
|
40
|
+
*/
|
|
41
|
+
AttachmentId: string;
|
|
42
|
+
/**
|
|
43
|
+
* The policy rule number associated with the attachment.
|
|
44
|
+
*/
|
|
45
|
+
AttachmentPolicyRuleNumber: number;
|
|
46
|
+
/**
|
|
47
|
+
* Attachment type.
|
|
48
|
+
*/
|
|
49
|
+
AttachmentType: string;
|
|
50
|
+
/**
|
|
51
|
+
* The ARN of a core network for the Direct Connect Gateway attachment.
|
|
52
|
+
*/
|
|
53
|
+
CoreNetworkArn: string;
|
|
54
|
+
/**
|
|
55
|
+
* Creation time of the attachment.
|
|
56
|
+
*/
|
|
57
|
+
CreatedAt: string;
|
|
58
|
+
/**
|
|
59
|
+
* The name of the network function group attachment.
|
|
60
|
+
*/
|
|
61
|
+
NetworkFunctionGroupName: string;
|
|
62
|
+
/**
|
|
63
|
+
* Owner account of the attachment.
|
|
64
|
+
*/
|
|
65
|
+
OwnerAccountId: string;
|
|
66
|
+
/**
|
|
67
|
+
* The ARN of the Resource.
|
|
68
|
+
*/
|
|
69
|
+
ResourceArn: string;
|
|
70
|
+
/**
|
|
71
|
+
* The name of the segment attachment..
|
|
72
|
+
*/
|
|
73
|
+
SegmentName: string;
|
|
74
|
+
/**
|
|
75
|
+
* State of the attachment.
|
|
76
|
+
*/
|
|
77
|
+
State: string;
|
|
78
|
+
/**
|
|
79
|
+
* Last update time of the attachment.
|
|
80
|
+
*/
|
|
81
|
+
UpdatedAt: string;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChange`.
|
|
85
|
+
* The attachment to move from one network function group to another.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposednetworkfunctiongroupchange.html}
|
|
87
|
+
*/
|
|
88
|
+
export type ProposedNetworkFunctionGroupChange = {
|
|
89
|
+
/**
|
|
90
|
+
* The rule number in the policy document that applies to this change.
|
|
91
|
+
*/
|
|
92
|
+
AttachmentPolicyRuleNumber?: number;
|
|
93
|
+
/**
|
|
94
|
+
* The name of the network function group to change.
|
|
95
|
+
*/
|
|
96
|
+
NetworkFunctionGroupName?: string;
|
|
97
|
+
/**
|
|
98
|
+
* The key-value tags that changed for the network function group.
|
|
99
|
+
*/
|
|
100
|
+
Tags?: Tag[];
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedSegmentChange`.
|
|
104
|
+
* The attachment to move from one segment to another.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposedsegmentchange.html}
|
|
106
|
+
*/
|
|
107
|
+
export type ProposedSegmentChange = {
|
|
108
|
+
/**
|
|
109
|
+
* The rule number in the policy document that applies to this change.
|
|
110
|
+
*/
|
|
111
|
+
AttachmentPolicyRuleNumber?: number;
|
|
112
|
+
/**
|
|
113
|
+
* The name of the segment to change.
|
|
114
|
+
*/
|
|
115
|
+
SegmentName?: string;
|
|
116
|
+
/**
|
|
117
|
+
* The key-value tags that changed for the segment.
|
|
118
|
+
*/
|
|
119
|
+
Tags?: Tag[];
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.Tag`.
|
|
123
|
+
* A key-value pair to associate with a resource.
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-tag.html}
|
|
125
|
+
*/
|
|
126
|
+
export type Tag = {
|
|
127
|
+
/**
|
|
128
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
129
|
+
*/
|
|
130
|
+
Key: string;
|
|
131
|
+
/**
|
|
132
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
133
|
+
*/
|
|
134
|
+
Value: string;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
|
|
139
|
+
*/
|
|
140
|
+
export declare class NetworkManagerDirectConnectGatewayAttachment extends $Resource<"AWS::NetworkManager::DirectConnectGatewayAttachment", NetworkManagerDirectConnectGatewayAttachmentProperties, NetworkManagerDirectConnectGatewayAttachmentAttributes> {
|
|
141
|
+
static readonly Type = "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
|
142
|
+
constructor(logicalId: string, properties: NetworkManagerDirectConnectGatewayAttachmentProperties, options?: $ResourceOptions);
|
|
143
|
+
}
|
|
144
|
+
//# sourceMappingURL=AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
|
|
5
|
+
*/
|
|
6
|
+
export class NetworkManagerDirectConnectGatewayAttachment extends $Resource {
|
|
7
|
+
static Type = "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, NetworkManagerDirectConnectGatewayAttachment.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-NetworkManager-DirectConnectGatewayAttachment.js.map
|
|
@@ -32,9 +32,9 @@ export type OrganizationsPolicyProperties = {
|
|
|
32
32
|
*/
|
|
33
33
|
TargetIds?: string[];
|
|
34
34
|
/**
|
|
35
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY
|
|
35
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2
|
|
36
36
|
*/
|
|
37
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY";
|
|
37
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2";
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
|
@@ -1,16 +1,47 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for AWS::RAM::ResourceShare
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
|
|
6
6
|
*/
|
|
7
7
|
export type RAMResourceShareProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Specifies whether principals outside your organization in AWS Organizations can be associated with a resource share. A value of `true` lets you share with individual AWS accounts that are not in your organization. A value of `false` only has meaning if your account is a member of an AWS Organization. The default value is `true`.
|
|
10
|
+
*/
|
|
8
11
|
AllowExternalPrincipals?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Specifies the name of the resource share.
|
|
14
|
+
*/
|
|
9
15
|
Name: string;
|
|
16
|
+
/**
|
|
17
|
+
* Specifies the [Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) of the AWS RAM permission to associate with the resource share. If you do not specify an ARN for the permission, AWS RAM automatically attaches the default version of the permission for each resource type. You can associate only one permission with each resource type included in the resource share.
|
|
18
|
+
*/
|
|
10
19
|
PermissionArns?: string[];
|
|
20
|
+
/**
|
|
21
|
+
* Specifies the principals to associate with the resource share. The possible values are:
|
|
22
|
+
|
|
23
|
+
- An AWS account ID
|
|
24
|
+
|
|
25
|
+
- An Amazon Resource Name (ARN) of an organization in AWS Organizations
|
|
26
|
+
|
|
27
|
+
- An ARN of an organizational unit (OU) in AWS Organizations
|
|
28
|
+
|
|
29
|
+
- An ARN of an IAM role
|
|
30
|
+
|
|
31
|
+
- An ARN of an IAM user
|
|
32
|
+
*/
|
|
11
33
|
Principals?: string[];
|
|
34
|
+
/**
|
|
35
|
+
* Specifies a list of one or more ARNs of the resources to associate with the resource share.
|
|
36
|
+
*/
|
|
12
37
|
ResourceArns?: string[];
|
|
38
|
+
/**
|
|
39
|
+
* Specifies from which source accounts the service principal has access to the resources in this resource share.
|
|
40
|
+
*/
|
|
13
41
|
Sources?: string[];
|
|
42
|
+
/**
|
|
43
|
+
* Specifies one or more tags to attach to the resource share itself. It doesn't attach the tags to the resources associated with the resource share.
|
|
44
|
+
*/
|
|
14
45
|
Tags?: Tag[];
|
|
15
46
|
};
|
|
16
47
|
/**
|
|
@@ -19,18 +50,24 @@ export type RAMResourceShareProperties = {
|
|
|
19
50
|
*/
|
|
20
51
|
export type RAMResourceShareAttributes = {
|
|
21
52
|
Arn: string;
|
|
22
|
-
Id: string;
|
|
23
53
|
};
|
|
24
54
|
/**
|
|
25
55
|
* Type definition for `AWS::RAM::ResourceShare.Tag`.
|
|
56
|
+
* A key-value pair to associate with a resource.
|
|
26
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ram-resourceshare-tag.html}
|
|
27
58
|
*/
|
|
28
59
|
export type Tag = {
|
|
60
|
+
/**
|
|
61
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
62
|
+
*/
|
|
29
63
|
Key: string;
|
|
64
|
+
/**
|
|
65
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
66
|
+
*/
|
|
30
67
|
Value: string;
|
|
31
68
|
};
|
|
32
69
|
/**
|
|
33
|
-
* Resource
|
|
70
|
+
* Resource type definition for AWS::RAM::ResourceShare
|
|
34
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
|
|
35
72
|
*/
|
|
36
73
|
export declare class RAMResourceShare extends $Resource<"AWS::RAM::ResourceShare", RAMResourceShareProperties, RAMResourceShareAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for AWS::RAM::ResourceShare
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
|
|
5
5
|
*/
|
|
6
6
|
export class RAMResourceShare extends $Resource {
|