@awboost/cfn-resource-types 0.1.94 → 0.1.95
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-AppTest-TestCase.d.ts +368 -0
- package/lib/AWS-AppTest-TestCase.js +13 -0
- package/lib/AWS-Batch-JobDefinition.d.ts +0 -1
- package/lib/AWS-EC2-VPNGateway.d.ts +11 -5
- package/lib/AWS-EC2-VPNGateway.js +2 -1
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +28 -5
- package/package.json +1 -1
|
@@ -0,0 +1,368 @@
|
|
|
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::AppTest::TestCase`.
|
|
5
|
+
* Represents a Test Case that can be captured and executed
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html}
|
|
7
|
+
*/
|
|
8
|
+
export type AppTestTestCaseProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `1000`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @pattern `^[A-Za-z][A-Za-z0-9_\-]{1,59}$`
|
|
16
|
+
*/
|
|
17
|
+
Name: string;
|
|
18
|
+
/**
|
|
19
|
+
* @minLength `1`
|
|
20
|
+
* @maxLength `20`
|
|
21
|
+
*/
|
|
22
|
+
Steps: Step[];
|
|
23
|
+
Tags?: TagMap;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Attribute type definition for `AWS::AppTest::TestCase`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html#aws-resource-apptest-testcase-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type AppTestTestCaseAttributes = {
|
|
30
|
+
CreationTime: string;
|
|
31
|
+
LastUpdateTime: string;
|
|
32
|
+
LatestVersion: {
|
|
33
|
+
Status: TestCaseLifecycle;
|
|
34
|
+
Version: number;
|
|
35
|
+
};
|
|
36
|
+
Status: TestCaseLifecycle;
|
|
37
|
+
/**
|
|
38
|
+
* @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9/][A-Za-z0-9:_/+=,@.-]{0,1023}$`
|
|
39
|
+
*/
|
|
40
|
+
TestCaseArn: string;
|
|
41
|
+
/**
|
|
42
|
+
* @pattern `^[A-Za-z0-9:/\-]{1,100}$`
|
|
43
|
+
*/
|
|
44
|
+
TestCaseId: string;
|
|
45
|
+
TestCaseVersion: number;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::AppTest::TestCase.Batch`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batch.html}
|
|
50
|
+
*/
|
|
51
|
+
export type Batch = {
|
|
52
|
+
/**
|
|
53
|
+
* @pattern `^\S{1,1000}$`
|
|
54
|
+
*/
|
|
55
|
+
BatchJobName: string;
|
|
56
|
+
BatchJobParameters?: BatchJobParameters;
|
|
57
|
+
ExportDataSetNames?: string[];
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::AppTest::TestCase.BatchJobParameters`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batchjobparameters.html}
|
|
62
|
+
*/
|
|
63
|
+
export type BatchJobParameters = Record<string, string>;
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::AppTest::TestCase.CaptureTool`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-capturetool.html}
|
|
67
|
+
*/
|
|
68
|
+
export type CaptureTool = "Precisely" | "AWS DMS";
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::AppTest::TestCase.CloudFormationAction`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-cloudformationaction.html}
|
|
72
|
+
*/
|
|
73
|
+
export type CloudFormationAction = {
|
|
74
|
+
ActionType?: CloudFormationActionType;
|
|
75
|
+
/**
|
|
76
|
+
* @pattern `^\S{1,1000}$`
|
|
77
|
+
*/
|
|
78
|
+
Resource: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::AppTest::TestCase.CloudFormationActionType`.
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-cloudformationactiontype.html}
|
|
83
|
+
*/
|
|
84
|
+
export type CloudFormationActionType = "Create" | "Delete";
|
|
85
|
+
/**
|
|
86
|
+
* Type definition for `AWS::AppTest::TestCase.CompareAction`.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-compareaction.html}
|
|
88
|
+
*/
|
|
89
|
+
export type CompareAction = {
|
|
90
|
+
Input: Input;
|
|
91
|
+
Output?: Output;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Type definition for `AWS::AppTest::TestCase.DatabaseCDC`.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html}
|
|
96
|
+
*/
|
|
97
|
+
export type DatabaseCDC = {
|
|
98
|
+
SourceMetadata: SourceDatabaseMetadata;
|
|
99
|
+
TargetMetadata: TargetDatabaseMetadata;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::AppTest::TestCase.DataSet`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html}
|
|
104
|
+
*/
|
|
105
|
+
export type DataSet = {
|
|
106
|
+
/**
|
|
107
|
+
* @pattern `^\S{1,50}$`
|
|
108
|
+
*/
|
|
109
|
+
Ccsid: string;
|
|
110
|
+
Format: Format;
|
|
111
|
+
Length: number;
|
|
112
|
+
/**
|
|
113
|
+
* @pattern `^\S{1,100}$`
|
|
114
|
+
*/
|
|
115
|
+
Name: string;
|
|
116
|
+
Type: DataSetType;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::AppTest::TestCase.DataSetType`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-datasettype.html}
|
|
121
|
+
*/
|
|
122
|
+
export type DataSetType = "PS";
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::AppTest::TestCase.FileMetadata`.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html}
|
|
126
|
+
*/
|
|
127
|
+
export type FileMetadata = {
|
|
128
|
+
DataSets: DataSet[];
|
|
129
|
+
} | {
|
|
130
|
+
DatabaseCDC: DatabaseCDC;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::AppTest::TestCase.Format`.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-format.html}
|
|
135
|
+
*/
|
|
136
|
+
export type Format = "FIXED" | "VARIABLE" | "LINE_SEQUENTIAL";
|
|
137
|
+
/**
|
|
138
|
+
* Type definition for `AWS::AppTest::TestCase.Input`.
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-input.html}
|
|
140
|
+
*/
|
|
141
|
+
export type Input = {
|
|
142
|
+
File: InputFile;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::AppTest::TestCase.InputFile`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.html}
|
|
147
|
+
*/
|
|
148
|
+
export type InputFile = {
|
|
149
|
+
FileMetadata: FileMetadata;
|
|
150
|
+
/**
|
|
151
|
+
* @pattern `^\S{1,1000}$`
|
|
152
|
+
*/
|
|
153
|
+
SourceLocation: string;
|
|
154
|
+
/**
|
|
155
|
+
* @pattern `^\S{1,1000}$`
|
|
156
|
+
*/
|
|
157
|
+
TargetLocation: string;
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* Type definition for `AWS::AppTest::TestCase.M2ManagedActionProperties`.
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedactionproperties.html}
|
|
162
|
+
*/
|
|
163
|
+
export type M2ManagedActionProperties = {
|
|
164
|
+
ForceStop?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* @pattern `^\S{1,1000}$`
|
|
167
|
+
*/
|
|
168
|
+
ImportDataSetLocation?: string;
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* Type definition for `AWS::AppTest::TestCase.M2ManagedActionType`.
|
|
172
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedactiontype.html}
|
|
173
|
+
*/
|
|
174
|
+
export type M2ManagedActionType = "Configure" | "Deconfigure";
|
|
175
|
+
/**
|
|
176
|
+
* Type definition for `AWS::AppTest::TestCase.M2ManagedApplicationAction`.
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedapplicationaction.html}
|
|
178
|
+
*/
|
|
179
|
+
export type M2ManagedApplicationAction = {
|
|
180
|
+
ActionType: M2ManagedActionType;
|
|
181
|
+
Properties?: M2ManagedActionProperties;
|
|
182
|
+
/**
|
|
183
|
+
* @pattern `^\S{1,1000}$`
|
|
184
|
+
*/
|
|
185
|
+
Resource: string;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* Type definition for `AWS::AppTest::TestCase.M2NonManagedActionType`.
|
|
189
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2nonmanagedactiontype.html}
|
|
190
|
+
*/
|
|
191
|
+
export type M2NonManagedActionType = "Configure" | "Deconfigure";
|
|
192
|
+
/**
|
|
193
|
+
* Type definition for `AWS::AppTest::TestCase.M2NonManagedApplicationAction`.
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2nonmanagedapplicationaction.html}
|
|
195
|
+
*/
|
|
196
|
+
export type M2NonManagedApplicationAction = {
|
|
197
|
+
ActionType: M2NonManagedActionType;
|
|
198
|
+
/**
|
|
199
|
+
* @pattern `^\S{1,1000}$`
|
|
200
|
+
*/
|
|
201
|
+
Resource: string;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Type definition for `AWS::AppTest::TestCase.MainframeAction`.
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeaction.html}
|
|
206
|
+
*/
|
|
207
|
+
export type MainframeAction = {
|
|
208
|
+
ActionType: MainframeActionType;
|
|
209
|
+
Properties?: MainframeActionProperties;
|
|
210
|
+
/**
|
|
211
|
+
* @pattern `^\S{1,1000}$`
|
|
212
|
+
*/
|
|
213
|
+
Resource: string;
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* Type definition for `AWS::AppTest::TestCase.MainframeActionProperties`.
|
|
217
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactionproperties.html}
|
|
218
|
+
*/
|
|
219
|
+
export type MainframeActionProperties = {
|
|
220
|
+
/**
|
|
221
|
+
* @pattern `^\S{1,1000}$`
|
|
222
|
+
*/
|
|
223
|
+
DmsTaskArn?: string;
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* Type definition for `AWS::AppTest::TestCase.MainframeActionType`.
|
|
227
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactiontype.html}
|
|
228
|
+
*/
|
|
229
|
+
export type MainframeActionType = {
|
|
230
|
+
Batch: Batch;
|
|
231
|
+
} | {
|
|
232
|
+
Tn3270: TN3270;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* Type definition for `AWS::AppTest::TestCase.Output`.
|
|
236
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.html}
|
|
237
|
+
*/
|
|
238
|
+
export type Output = {
|
|
239
|
+
File: OutputFile;
|
|
240
|
+
};
|
|
241
|
+
/**
|
|
242
|
+
* Type definition for `AWS::AppTest::TestCase.OutputFile`.
|
|
243
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-outputfile.html}
|
|
244
|
+
*/
|
|
245
|
+
export type OutputFile = {
|
|
246
|
+
/**
|
|
247
|
+
* @minLength `0`
|
|
248
|
+
* @maxLength `1024`
|
|
249
|
+
*/
|
|
250
|
+
FileLocation?: string;
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* Type definition for `AWS::AppTest::TestCase.ResourceAction`.
|
|
254
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-resourceaction.html}
|
|
255
|
+
*/
|
|
256
|
+
export type ResourceAction = {
|
|
257
|
+
M2ManagedApplicationAction: M2ManagedApplicationAction;
|
|
258
|
+
} | {
|
|
259
|
+
M2NonManagedApplicationAction: M2NonManagedApplicationAction;
|
|
260
|
+
} | {
|
|
261
|
+
CloudFormationAction: CloudFormationAction;
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* Type definition for `AWS::AppTest::TestCase.Script`.
|
|
265
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-script.html}
|
|
266
|
+
*/
|
|
267
|
+
export type Script = {
|
|
268
|
+
/**
|
|
269
|
+
* @minLength `0`
|
|
270
|
+
* @maxLength `1024`
|
|
271
|
+
*/
|
|
272
|
+
ScriptLocation: string;
|
|
273
|
+
Type: ScriptType;
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* Type definition for `AWS::AppTest::TestCase.ScriptType`.
|
|
277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-scripttype.html}
|
|
278
|
+
*/
|
|
279
|
+
export type ScriptType = "Selenium";
|
|
280
|
+
/**
|
|
281
|
+
* Type definition for `AWS::AppTest::TestCase.SourceDatabase`.
|
|
282
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-sourcedatabase.html}
|
|
283
|
+
*/
|
|
284
|
+
export type SourceDatabase = "z/OS-DB2";
|
|
285
|
+
/**
|
|
286
|
+
* Type definition for `AWS::AppTest::TestCase.SourceDatabaseMetadata`.
|
|
287
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-sourcedatabasemetadata.html}
|
|
288
|
+
*/
|
|
289
|
+
export type SourceDatabaseMetadata = {
|
|
290
|
+
CaptureTool: CaptureTool;
|
|
291
|
+
Type: SourceDatabase;
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* Type definition for `AWS::AppTest::TestCase.Step`.
|
|
295
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-step.html}
|
|
296
|
+
*/
|
|
297
|
+
export type Step = {
|
|
298
|
+
Action: StepAction;
|
|
299
|
+
/**
|
|
300
|
+
* @minLength `0`
|
|
301
|
+
* @maxLength `1000`
|
|
302
|
+
*/
|
|
303
|
+
Description?: string;
|
|
304
|
+
/**
|
|
305
|
+
* @pattern `^[A-Za-z][A-Za-z0-9_\-]{1,59}$`
|
|
306
|
+
*/
|
|
307
|
+
Name: string;
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* Type definition for `AWS::AppTest::TestCase.StepAction`.
|
|
311
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-stepaction.html}
|
|
312
|
+
*/
|
|
313
|
+
export type StepAction = {
|
|
314
|
+
ResourceAction: ResourceAction;
|
|
315
|
+
} | {
|
|
316
|
+
MainframeAction: MainframeAction;
|
|
317
|
+
} | {
|
|
318
|
+
CompareAction: CompareAction;
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* Type definition for `AWS::AppTest::TestCase.TagMap`.
|
|
322
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-tagmap.html}
|
|
323
|
+
*/
|
|
324
|
+
export type TagMap = Record<string, string>;
|
|
325
|
+
/**
|
|
326
|
+
* Type definition for `AWS::AppTest::TestCase.TargetDatabase`.
|
|
327
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-targetdatabase.html}
|
|
328
|
+
*/
|
|
329
|
+
export type TargetDatabase = "PostgreSQL";
|
|
330
|
+
/**
|
|
331
|
+
* Type definition for `AWS::AppTest::TestCase.TargetDatabaseMetadata`.
|
|
332
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-targetdatabasemetadata.html}
|
|
333
|
+
*/
|
|
334
|
+
export type TargetDatabaseMetadata = {
|
|
335
|
+
CaptureTool: CaptureTool;
|
|
336
|
+
Type: TargetDatabase;
|
|
337
|
+
};
|
|
338
|
+
/**
|
|
339
|
+
* Type definition for `AWS::AppTest::TestCase.TestCaseLatestVersion`.
|
|
340
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-testcaselatestversion.html}
|
|
341
|
+
*/
|
|
342
|
+
export type TestCaseLatestVersion = {
|
|
343
|
+
Status: TestCaseLifecycle;
|
|
344
|
+
Version: number;
|
|
345
|
+
};
|
|
346
|
+
/**
|
|
347
|
+
* Type definition for `AWS::AppTest::TestCase.TestCaseLifecycle`.
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-testcaselifecycle.html}
|
|
349
|
+
*/
|
|
350
|
+
export type TestCaseLifecycle = "Active" | "Deleting";
|
|
351
|
+
/**
|
|
352
|
+
* Type definition for `AWS::AppTest::TestCase.TN3270`.
|
|
353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-tn3270.html}
|
|
354
|
+
*/
|
|
355
|
+
export type TN3270 = {
|
|
356
|
+
ExportDataSetNames?: string[];
|
|
357
|
+
Script: Script;
|
|
358
|
+
};
|
|
359
|
+
/**
|
|
360
|
+
* Resource type definition for `AWS::AppTest::TestCase`.
|
|
361
|
+
* Represents a Test Case that can be captured and executed
|
|
362
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html}
|
|
363
|
+
*/
|
|
364
|
+
export declare class AppTestTestCase extends $Resource<"AWS::AppTest::TestCase", AppTestTestCaseProperties, AppTestTestCaseAttributes> {
|
|
365
|
+
static readonly Type = "AWS::AppTest::TestCase";
|
|
366
|
+
constructor(logicalId: string, properties: AppTestTestCaseProperties, options?: $ResourceOptions);
|
|
367
|
+
}
|
|
368
|
+
//# sourceMappingURL=AWS-AppTest-TestCase.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::AppTest::TestCase`.
|
|
4
|
+
* Represents a Test Case that can be captured and executed
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html}
|
|
6
|
+
*/
|
|
7
|
+
export class AppTestTestCase extends $Resource {
|
|
8
|
+
static Type = "AWS::AppTest::TestCase";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, AppTestTestCase.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-AppTest-TestCase.js.map
|
|
@@ -2,7 +2,8 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::VPNGateway`.
|
|
5
|
-
*
|
|
5
|
+
* Specifies a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.
|
|
6
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
6
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.html}
|
|
7
8
|
*/
|
|
8
9
|
export type EC2VPNGatewayProperties = {
|
|
@@ -24,22 +25,27 @@ export type EC2VPNGatewayProperties = {
|
|
|
24
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.html#aws-resource-ec2-vpngateway-return-values}
|
|
25
26
|
*/
|
|
26
27
|
export type EC2VPNGatewayAttributes = {
|
|
27
|
-
/**
|
|
28
|
-
* VPN Gateway ID generated by service
|
|
29
|
-
*/
|
|
30
28
|
VPNGatewayId: string;
|
|
31
29
|
};
|
|
32
30
|
/**
|
|
33
31
|
* Type definition for `AWS::EC2::VPNGateway.Tag`.
|
|
32
|
+
* Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
|
|
34
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpngateway-tag.html}
|
|
35
34
|
*/
|
|
36
35
|
export type Tag = {
|
|
36
|
+
/**
|
|
37
|
+
* The tag key.
|
|
38
|
+
*/
|
|
37
39
|
Key: string;
|
|
40
|
+
/**
|
|
41
|
+
* The tag value.
|
|
42
|
+
*/
|
|
38
43
|
Value: string;
|
|
39
44
|
};
|
|
40
45
|
/**
|
|
41
46
|
* Resource type definition for `AWS::EC2::VPNGateway`.
|
|
42
|
-
*
|
|
47
|
+
* Specifies a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.
|
|
48
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
43
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.html}
|
|
44
50
|
*/
|
|
45
51
|
export declare class EC2VPNGateway extends $Resource<"AWS::EC2::VPNGateway", EC2VPNGatewayProperties, EC2VPNGatewayAttributes> {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::VPNGateway`.
|
|
4
|
-
*
|
|
4
|
+
* Specifies a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.
|
|
5
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.html}
|
|
6
7
|
*/
|
|
7
8
|
export class EC2VPNGateway extends $Resource {
|
|
@@ -414,6 +414,7 @@ export type HttpEndpointDestinationConfiguration = {
|
|
|
414
414
|
RoleARN?: string;
|
|
415
415
|
S3BackupMode?: string;
|
|
416
416
|
S3Configuration: S3DestinationConfiguration;
|
|
417
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
417
418
|
};
|
|
418
419
|
/**
|
|
419
420
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.HttpEndpointRequestConfiguration`.
|
|
@@ -562,7 +563,7 @@ export type RedshiftDestinationConfiguration = {
|
|
|
562
563
|
* @minLength `6`
|
|
563
564
|
* @maxLength `512`
|
|
564
565
|
*/
|
|
565
|
-
Password
|
|
566
|
+
Password?: string;
|
|
566
567
|
ProcessingConfiguration?: ProcessingConfiguration;
|
|
567
568
|
RetryOptions?: RedshiftRetryOptions;
|
|
568
569
|
/**
|
|
@@ -574,11 +575,12 @@ export type RedshiftDestinationConfiguration = {
|
|
|
574
575
|
S3BackupConfiguration?: S3DestinationConfiguration;
|
|
575
576
|
S3BackupMode?: "Disabled" | "Enabled";
|
|
576
577
|
S3Configuration: S3DestinationConfiguration;
|
|
578
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
577
579
|
/**
|
|
578
580
|
* @minLength `1`
|
|
579
581
|
* @maxLength `512`
|
|
580
582
|
*/
|
|
581
|
-
Username
|
|
583
|
+
Username?: string;
|
|
582
584
|
};
|
|
583
585
|
/**
|
|
584
586
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.RedshiftRetryOptions`.
|
|
@@ -643,6 +645,25 @@ export type SchemaConfiguration = {
|
|
|
643
645
|
TableName?: string;
|
|
644
646
|
VersionId?: string;
|
|
645
647
|
};
|
|
648
|
+
/**
|
|
649
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.SecretsManagerConfiguration`.
|
|
650
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-secretsmanagerconfiguration.html}
|
|
651
|
+
*/
|
|
652
|
+
export type SecretsManagerConfiguration = {
|
|
653
|
+
Enabled: boolean;
|
|
654
|
+
/**
|
|
655
|
+
* @minLength `1`
|
|
656
|
+
* @maxLength `512`
|
|
657
|
+
* @pattern `arn:.*`
|
|
658
|
+
*/
|
|
659
|
+
RoleARN?: string;
|
|
660
|
+
/**
|
|
661
|
+
* @minLength `1`
|
|
662
|
+
* @maxLength `512`
|
|
663
|
+
* @pattern `arn:.*`
|
|
664
|
+
*/
|
|
665
|
+
SecretARN?: string;
|
|
666
|
+
};
|
|
646
667
|
/**
|
|
647
668
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.Serializer`.
|
|
648
669
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-serializer.html}
|
|
@@ -689,7 +710,7 @@ export type SnowflakeDestinationConfiguration = {
|
|
|
689
710
|
* @maxLength `4096`
|
|
690
711
|
* @pattern `^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$`
|
|
691
712
|
*/
|
|
692
|
-
PrivateKey
|
|
713
|
+
PrivateKey?: string;
|
|
693
714
|
ProcessingConfiguration?: ProcessingConfiguration;
|
|
694
715
|
RetryOptions?: SnowflakeRetryOptions;
|
|
695
716
|
/**
|
|
@@ -705,6 +726,7 @@ export type SnowflakeDestinationConfiguration = {
|
|
|
705
726
|
* @maxLength `255`
|
|
706
727
|
*/
|
|
707
728
|
Schema: string;
|
|
729
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
708
730
|
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration;
|
|
709
731
|
SnowflakeVpcConfiguration?: SnowflakeVpcConfiguration;
|
|
710
732
|
/**
|
|
@@ -716,7 +738,7 @@ export type SnowflakeDestinationConfiguration = {
|
|
|
716
738
|
* @minLength `1`
|
|
717
739
|
* @maxLength `255`
|
|
718
740
|
*/
|
|
719
|
-
User
|
|
741
|
+
User?: string;
|
|
720
742
|
};
|
|
721
743
|
/**
|
|
722
744
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.SnowflakeRetryOptions`.
|
|
@@ -779,11 +801,12 @@ export type SplunkDestinationConfiguration = {
|
|
|
779
801
|
* @minLength `0`
|
|
780
802
|
* @maxLength `2048`
|
|
781
803
|
*/
|
|
782
|
-
HECToken
|
|
804
|
+
HECToken?: string;
|
|
783
805
|
ProcessingConfiguration?: ProcessingConfiguration;
|
|
784
806
|
RetryOptions?: SplunkRetryOptions;
|
|
785
807
|
S3BackupMode?: string;
|
|
786
808
|
S3Configuration: S3DestinationConfiguration;
|
|
809
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
787
810
|
};
|
|
788
811
|
/**
|
|
789
812
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.SplunkRetryOptions`.
|