@awboost/cfn-resource-types 0.1.94 → 0.1.96
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-Cognito-UserPoolResourceServer.d.ts +1 -8
- package/lib/AWS-EC2-CustomerGateway.d.ts +9 -5
- package/lib/AWS-EC2-VPNGateway.d.ts +11 -5
- package/lib/AWS-EC2-VPNGateway.js +2 -1
- package/lib/AWS-KMS-Key.d.ts +1 -1
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +28 -5
- package/lib/AWS-MediaPackageV2-Channel.d.ts +1 -0
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +3 -0
- package/lib/AWS-RDS-DBCluster.d.ts +4 -0
- package/lib/AWS-RDS-DBInstance.d.ts +8 -4
- package/lib/AWS-RDS-DBParameterGroup.d.ts +1 -1
- package/lib/AWS-RDS-DBSubnetGroup.d.ts +1 -2
- 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
|
|
@@ -10,13 +10,6 @@ export type CognitoUserPoolResourceServerProperties = {
|
|
|
10
10
|
Scopes?: ResourceServerScopeType[];
|
|
11
11
|
UserPoolId: string;
|
|
12
12
|
};
|
|
13
|
-
/**
|
|
14
|
-
* Attribute type definition for `AWS::Cognito::UserPoolResourceServer`.
|
|
15
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#aws-resource-cognito-userpoolresourceserver-return-values}
|
|
16
|
-
*/
|
|
17
|
-
export type CognitoUserPoolResourceServerAttributes = {
|
|
18
|
-
Id: string;
|
|
19
|
-
};
|
|
20
13
|
/**
|
|
21
14
|
* Type definition for `AWS::Cognito::UserPoolResourceServer.ResourceServerScopeType`.
|
|
22
15
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html}
|
|
@@ -29,7 +22,7 @@ export type ResourceServerScopeType = {
|
|
|
29
22
|
* Resource Type definition for AWS::Cognito::UserPoolResourceServer
|
|
30
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html}
|
|
31
24
|
*/
|
|
32
|
-
export declare class CognitoUserPoolResourceServer extends $Resource<"AWS::Cognito::UserPoolResourceServer", CognitoUserPoolResourceServerProperties,
|
|
25
|
+
export declare class CognitoUserPoolResourceServer extends $Resource<"AWS::Cognito::UserPoolResourceServer", CognitoUserPoolResourceServerProperties, Record<string, never>> {
|
|
33
26
|
static readonly Type = "AWS::Cognito::UserPoolResourceServer";
|
|
34
27
|
constructor(logicalId: string, properties: CognitoUserPoolResourceServerProperties, options?: $ResourceOptions);
|
|
35
28
|
}
|
|
@@ -7,16 +7,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type EC2CustomerGatewayProperties = {
|
|
9
9
|
/**
|
|
10
|
-
* For devices that support BGP, the customer gateway
|
|
10
|
+
* For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647``, you must use ``BgpAsnExtended``.
|
|
11
11
|
Default: 65000
|
|
12
|
+
Valid values: ``1`` to ``2,147,483,647``
|
|
12
13
|
*/
|
|
13
14
|
BgpAsn?: number;
|
|
14
15
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
* For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647``, you must use ``BgpAsnExtended``.
|
|
17
|
+
Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
18
|
+
* @min `2147483648`
|
|
19
|
+
* @max `4294967294`
|
|
20
|
+
*/
|
|
18
21
|
BgpAsnExtended?: number;
|
|
19
22
|
/**
|
|
23
|
+
* The Amazon Resource Name (ARN) for the customer gateway certificate.
|
|
20
24
|
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
|
|
21
25
|
*/
|
|
22
26
|
CertificateArn?: string;
|
|
@@ -25,7 +29,7 @@ export type EC2CustomerGatewayProperties = {
|
|
|
25
29
|
*/
|
|
26
30
|
DeviceName?: string;
|
|
27
31
|
/**
|
|
28
|
-
* IPv4 address for the customer gateway device's outside interface. The address must be static.
|
|
32
|
+
* IPv4 address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4``, you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``PublicIpv4``, you can use a public IPv4 address.
|
|
29
33
|
*/
|
|
30
34
|
IpAddress: string;
|
|
31
35
|
/**
|
|
@@ -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 {
|
package/lib/AWS-KMS-Key.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export type KMSKeyProperties = {
|
|
|
99
99
|
+ For asymmetric KMS keys with SM2 (China Regions only) key material, specify ``ENCRYPT_DECRYPT`` or ``SIGN_VERIFY``.
|
|
100
100
|
+ For HMAC KMS keys, specify ``GENERATE_VERIFY_MAC``.
|
|
101
101
|
*/
|
|
102
|
-
KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC";
|
|
102
|
+
KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT";
|
|
103
103
|
/**
|
|
104
104
|
* Creates a multi-Region primary key that you can replicate in other AWS-Regions. You can't change the ``MultiRegion`` value after the KMS key is created.
|
|
105
105
|
For a list of AWS-Regions in which multi-Region keys are supported, see [Multi-Region keys in](https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html) in the **.
|
|
@@ -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`.
|
|
@@ -68,6 +68,8 @@ export type MediaPackageV2OriginEndpointAttributes = {
|
|
|
68
68
|
* <p>The date and time the origin endpoint was created.</p>
|
|
69
69
|
*/
|
|
70
70
|
CreatedAt: string;
|
|
71
|
+
DashManifestUrls: string[];
|
|
72
|
+
HlsManifestUrls: string[];
|
|
71
73
|
/**
|
|
72
74
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
73
75
|
*/
|
|
@@ -77,6 +79,7 @@ export type MediaPackageV2OriginEndpointAttributes = {
|
|
|
77
79
|
*/
|
|
78
80
|
Url: string;
|
|
79
81
|
}[];
|
|
82
|
+
LowLatencyHlsManifestUrls: string[];
|
|
80
83
|
/**
|
|
81
84
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
82
85
|
*/
|
|
@@ -98,6 +98,10 @@ export type RDSDBClusterProperties = {
|
|
|
98
98
|
* The name of the database engine to be used for this DB cluster. Valid Values: aurora (for MySQL 5.6-compatible Aurora), aurora-mysql (for MySQL 5.7-compatible Aurora), and aurora-postgresql
|
|
99
99
|
*/
|
|
100
100
|
Engine?: string;
|
|
101
|
+
/**
|
|
102
|
+
* The life cycle type of the DB cluster. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support.
|
|
103
|
+
*/
|
|
104
|
+
EngineLifecycleSupport?: string;
|
|
101
105
|
/**
|
|
102
106
|
* The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.
|
|
103
107
|
*/
|
|
@@ -412,6 +412,7 @@ export type RDSDBInstanceProperties = {
|
|
|
412
412
|
+ ``sqlserver-web``
|
|
413
413
|
*/
|
|
414
414
|
Engine?: string;
|
|
415
|
+
EngineLifecycleSupport?: string;
|
|
415
416
|
/**
|
|
416
417
|
* The version number of the database engine to use.
|
|
417
418
|
For a list of valid engine versions, use the ``DescribeDBEngineVersions`` action.
|
|
@@ -443,7 +444,8 @@ export type RDSDBInstanceProperties = {
|
|
|
443
444
|
Iops?: number;
|
|
444
445
|
/**
|
|
445
446
|
* The ARN of the AWS KMS key that's used to encrypt the DB instance, such as ``arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef``. If you enable the StorageEncrypted property but don't specify this property, AWS CloudFormation uses the default KMS key. If you specify this property, you must set the StorageEncrypted property to true.
|
|
446
|
-
If you specify the ``SourceDBInstanceIdentifier`` property,
|
|
447
|
+
If you specify the ``SourceDBInstanceIdentifier`` or ``SourceDbiResourceId`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used. However, if the source DB instance is in a different AWS Region, you must specify a KMS key ID.
|
|
448
|
+
If you specify the ``SourceDBInstanceAutomatedBackupsArn`` property, don't specify this property. The value is inherited from the source DB instance automated backup, and if the automated backup is encrypted, the specified ``KmsKeyId`` property is used.
|
|
447
449
|
If you create an encrypted read replica in a different AWS Region, then you must specify a KMS key for the destination AWS Region. KMS encryption keys are specific to the region that they're created in, and you can't use encryption keys from one region in another region.
|
|
448
450
|
If you specify the ``DBSnapshotIdentifier`` property, don't specify this property. The ``StorageEncrypted`` property value is inherited from the snapshot. If the DB instance is encrypted, the specified ``KmsKeyId`` property is also inherited from the snapshot.
|
|
449
451
|
If you specify ``DBSecurityGroups``, AWS CloudFormation ignores this property. To specify both a security group and this property, you must use a VPC security group. For more information about Amazon RDS and VPC, see [Using Amazon RDS with Amazon VPC](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html) in the *Amazon RDS User Guide*.
|
|
@@ -689,7 +691,8 @@ export type RDSDBInstanceProperties = {
|
|
|
689
691
|
/**
|
|
690
692
|
* If you want to create a read replica DB instance, specify the ID of the source DB instance. Each DB instance can have a limited number of read replicas. For more information, see [Working with Read Replicas](https://docs.aws.amazon.com/AmazonRDS/latest/DeveloperGuide/USER_ReadRepl.html) in the *Amazon RDS User Guide*.
|
|
691
693
|
For information about constraints that apply to DB instance identifiers, see [Naming constraints in Amazon RDS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints) in the *Amazon RDS User Guide*.
|
|
692
|
-
The ``SourceDBInstanceIdentifier`` property determines whether a DB instance is a read replica. If you remove the ``SourceDBInstanceIdentifier`` property from your template and then update your stack, AWS CloudFormation promotes the
|
|
694
|
+
The ``SourceDBInstanceIdentifier`` property determines whether a DB instance is a read replica. If you remove the ``SourceDBInstanceIdentifier`` property from your template and then update your stack, AWS CloudFormation promotes the read replica to a standalone DB instance.
|
|
695
|
+
If you specify the ``UseLatestRestorableTime`` or ``RestoreTime`` properties in conjunction with the ``SourceDBInstanceIdentifier`` property, RDS restores the DB instance to the requested point in time, thereby creating a new DB instance.
|
|
693
696
|
+ If you specify a source DB instance that uses VPC security groups, we recommend that you specify the ``VPCSecurityGroups`` property. If you don't specify the property, the read replica inherits the value of the ``VPCSecurityGroups`` property from the source DB when you create the replica. However, if you update the stack, AWS CloudFormation reverts the replica's ``VPCSecurityGroups`` property to the default value because it's not defined in the stack's template. This change might cause unexpected issues.
|
|
694
697
|
+ Read replicas don't support deletion policies. AWS CloudFormation ignores any deletion policy that's associated with a read replica.
|
|
695
698
|
+ If you specify ``SourceDBInstanceIdentifier``, don't specify the ``DBSnapshotIdentifier`` property. You can't create a read replica from a snapshot.
|
|
@@ -709,7 +712,8 @@ export type RDSDBInstanceProperties = {
|
|
|
709
712
|
/**
|
|
710
713
|
* A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.
|
|
711
714
|
If you specify the ``KmsKeyId`` property, then you must enable encryption.
|
|
712
|
-
If you specify the ``SourceDBInstanceIdentifier`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used.
|
|
715
|
+
If you specify the ``SourceDBInstanceIdentifier`` or ``SourceDbiResourceId`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used.
|
|
716
|
+
If you specify the ``SourceDBInstanceAutomatedBackupsArn`` property, don't specify this property. The value is inherited from the source DB instance automated backup.
|
|
713
717
|
If you specify ``DBSnapshotIdentifier`` property, don't specify this property. The value is inherited from the snapshot.
|
|
714
718
|
*Amazon Aurora*
|
|
715
719
|
Not applicable. The encryption for DB instances is managed by the DB cluster.
|
|
@@ -862,7 +866,7 @@ export type ProcessorFeature = {
|
|
|
862
866
|
/**
|
|
863
867
|
* Type definition for `AWS::RDS::DBInstance.Tag`.
|
|
864
868
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
865
|
-
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide
|
|
869
|
+
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
|
|
866
870
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-tag.html}
|
|
867
871
|
*/
|
|
868
872
|
export type Tag = {
|
|
@@ -52,7 +52,7 @@ export type RDSDBParameterGroupProperties = {
|
|
|
52
52
|
/**
|
|
53
53
|
* Type definition for `AWS::RDS::DBParameterGroup.Tag`.
|
|
54
54
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
55
|
-
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide
|
|
55
|
+
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
|
|
56
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup-tag.html}
|
|
57
57
|
*/
|
|
58
58
|
export type Tag = {
|
|
@@ -14,7 +14,6 @@ export type RDSDBSubnetGroupProperties = {
|
|
|
14
14
|
* The name for the DB subnet group. This value is stored as a lowercase string.
|
|
15
15
|
Constraints: Must contain no more than 255 lowercase alphanumeric characters or hyphens. Must not be "Default".
|
|
16
16
|
Example: ``mysubnetgroup``
|
|
17
|
-
* @pattern `^(?!default$)[a-zA-Z]{1}[a-zA-Z0-9-_\.\s]{0,254}$`
|
|
18
17
|
*/
|
|
19
18
|
DBSubnetGroupName?: string;
|
|
20
19
|
/**
|
|
@@ -30,7 +29,7 @@ export type RDSDBSubnetGroupProperties = {
|
|
|
30
29
|
/**
|
|
31
30
|
* Type definition for `AWS::RDS::DBSubnetGroup.Tag`.
|
|
32
31
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
33
|
-
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide
|
|
32
|
+
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
|
|
34
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbsubnetgroup-tag.html}
|
|
35
34
|
*/
|
|
36
35
|
export type Tag = {
|