@awboost/cfn-resource-types 0.1.93 → 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.
@@ -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
@@ -0,0 +1,310 @@
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::ApplicationSignals::ServiceLevelObjective
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
6
+ */
7
+ export type ApplicationSignalsServiceLevelObjectiveProperties = {
8
+ /**
9
+ * An optional description for this SLO. Default is 'No description'
10
+ * @minLength `1`
11
+ * @maxLength `1024`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * A structure that contains the attributes that determine the goal of the SLO. This includes the time period for evaluation and the attainment threshold.
16
+ */
17
+ Goal?: Goal;
18
+ /**
19
+ * The name of this SLO.
20
+ * @pattern `^[0-9A-Za-z][-._0-9A-Za-z ]{0,126}[0-9A-Za-z]$`
21
+ */
22
+ Name: string;
23
+ /**
24
+ * This structure contains information about the performance metric that an SLO monitors.
25
+ */
26
+ Sli: Sli;
27
+ /**
28
+ * The list of tag keys and values associated with the resource you specified
29
+ * @minLength `1`
30
+ * @maxLength `200`
31
+ */
32
+ Tags?: Tag[];
33
+ };
34
+ /**
35
+ * Attribute type definition for `AWS::ApplicationSignals::ServiceLevelObjective`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html#aws-resource-applicationsignals-servicelevelobjective-return-values}
37
+ */
38
+ export type ApplicationSignalsServiceLevelObjectiveAttributes = {
39
+ /**
40
+ * The ARN of this SLO.
41
+ * @pattern `^arn:[^:]*:application-signals:[^:]*:[^:]*:slo\/[0-9A-Za-z][-._0-9A-Za-z ]{0,126}[0-9A-Za-z]$`
42
+ */
43
+ Arn: string;
44
+ /**
45
+ * Epoch time in seconds of the time that this SLO was created
46
+ * @min `946684800`
47
+ */
48
+ CreatedTime: number;
49
+ /**
50
+ * Epoch time in seconds of the time that this SLO was most recently updated
51
+ * @min `946684800`
52
+ */
53
+ LastUpdatedTime: number;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.CalendarInterval`.
57
+ * If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-calendarinterval.html}
59
+ */
60
+ export type CalendarInterval = {
61
+ /**
62
+ * Specifies the duration of each calendar interval. For example, if `Duration` is 1 and `DurationUnit` is `MONTH`, each interval is one month, aligned with the calendar.
63
+ * @min `1`
64
+ */
65
+ Duration: number;
66
+ /**
67
+ * Specifies the calendar interval unit.
68
+ */
69
+ DurationUnit: DurationUnit;
70
+ /**
71
+ * Epoch time in seconds you want the first interval to start. Be sure to choose a time that configures the intervals the way that you want. For example, if you want weekly intervals starting on Mondays at 6 a.m., be sure to specify a start time that is a Monday at 6 a.m.
72
+ As soon as one calendar interval ends, another automatically begins.
73
+ * @min `946684800`
74
+ */
75
+ StartTime: number;
76
+ };
77
+ /**
78
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Dimension`.
79
+ * A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish `InstanceId` as a dimension name, and the actual instance ID as the value for that dimension. You can assign up to 30 dimensions to a metric.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-dimension.html}
81
+ */
82
+ export type Dimension = {
83
+ /**
84
+ * The name of the dimension. Dimension names must contain only ASCII characters, must include at least one non-whitespace character, and cannot start with a colon (:). ASCII control characters are not supported as part of dimension names.
85
+ */
86
+ Name: string;
87
+ /**
88
+ * The value of the dimension. Dimension values must contain only ASCII characters and must include at least one non-whitespace character. ASCII control characters are not supported as part of dimension values
89
+ */
90
+ Value: string;
91
+ };
92
+ /**
93
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.DurationUnit`.
94
+ * Specifies the calendar interval unit.
95
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-durationunit.html}
96
+ */
97
+ export type DurationUnit = "DAY" | "MONTH";
98
+ /**
99
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Goal`.
100
+ * A structure that contains the attributes that determine the goal of the SLO. This includes the time period for evaluation and the attainment threshold.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-goal.html}
102
+ */
103
+ export type Goal = {
104
+ /**
105
+ * The threshold that determines if the goal is being met. An attainment goal is the ratio of good periods that meet the threshold requirements to the total periods within the interval. For example, an attainment goal of 99.9% means that within your interval, you are targeting 99.9% of the periods to be in healthy state.
106
+ If you omit this parameter, 99 is used to represent 99% as the attainment goal.
107
+ */
108
+ AttainmentGoal?: number;
109
+ /**
110
+ * The time period used to evaluate the SLO. It can be either a calendar interval or rolling interval.
111
+ If you omit this parameter, a rolling interval of 7 days is used.
112
+ */
113
+ Interval?: Interval;
114
+ /**
115
+ * The percentage of remaining budget over total budget that you want to get warnings for. If you omit this parameter, the default of 50.0 is used.
116
+ */
117
+ WarningThreshold?: number;
118
+ };
119
+ /**
120
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Interval`.
121
+ * The time period used to evaluate the SLO. It can be either a calendar interval or rolling interval.
122
+ If you omit this parameter, a rolling interval of 7 days is used.
123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-interval.html}
124
+ */
125
+ export type Interval = {
126
+ /**
127
+ * If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.
128
+ */
129
+ CalendarInterval?: CalendarInterval;
130
+ /**
131
+ * If the interval is a calendar interval, this structure contains the interval specifications.
132
+ */
133
+ RollingInterval?: RollingInterval;
134
+ };
135
+ /**
136
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.KeyAttributes`.
137
+ * This is a string-to-string map that contains information about the type of object that this SLO is related to.
138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-keyattributes.html}
139
+ */
140
+ export type KeyAttributes = Record<string, string>;
141
+ /**
142
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Metric`.
143
+ * This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-metric.html}
145
+ */
146
+ export type Metric = {
147
+ /**
148
+ * An array of one or more dimensions to use to define the metric that you want to use.
149
+ */
150
+ Dimensions?: Dimension[];
151
+ /**
152
+ * The name of the metric to use.
153
+ */
154
+ MetricName?: string;
155
+ /**
156
+ * The namespace of the metric.
157
+ */
158
+ Namespace?: string;
159
+ };
160
+ /**
161
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.MetricDataQuery`.
162
+ * Use this structure to define a metric or metric math expression that you want to use as for a service level objective.
163
+ Each `MetricDataQuery` in the `MetricDataQueries` array specifies either a metric to retrieve, or a metric math expression to be performed on retrieved metrics. A single `MetricDataQueries` array can include as many as 20 `MetricDataQuery` structures in the array. The 20 structures can include as many as 10 structures that contain a `MetricStat` parameter to retrieve a metric, and as many as 10 structures that contain the `Expression` parameter to perform a math expression. Of those Expression structures, exactly one must have true as the value for `ReturnData`. The result of this expression used for the SLO.
164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-metricdataquery.html}
165
+ */
166
+ export type MetricDataQuery = {
167
+ /**
168
+ * The ID of the account where the metrics are located, if this is a cross-account alarm.
169
+ */
170
+ AccountId?: string;
171
+ /**
172
+ * The math expression to be performed on the returned data.
173
+ */
174
+ Expression?: string;
175
+ /**
176
+ * A short name used to tie this object to the results in the response.
177
+ */
178
+ Id: string;
179
+ /**
180
+ * A metric to be used directly for the SLO, or to be used in the math expression that will be used for the SLO. Within one MetricDataQuery, you must specify either Expression or MetricStat but not both.
181
+ */
182
+ MetricStat?: MetricStat;
183
+ /**
184
+ * This option indicates whether to return the timestamps and raw data values of this metric.
185
+ */
186
+ ReturnData?: boolean;
187
+ };
188
+ /**
189
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.MetricStat`.
190
+ * A metric to be used directly for the SLO, or to be used in the math expression that will be used for the SLO. Within one MetricDataQuery object, you must specify either Expression or MetricStat but not both.
191
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-metricstat.html}
192
+ */
193
+ export type MetricStat = {
194
+ /**
195
+ * This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions.
196
+ */
197
+ Metric: Metric;
198
+ /**
199
+ * The granularity, in seconds, to be used for the metric.
200
+ */
201
+ Period: number;
202
+ /**
203
+ * The statistic to use for comparison to the threshold. It can be any CloudWatch statistic or extended statistic.
204
+ */
205
+ Stat: string;
206
+ /**
207
+ * If you omit Unit then all data that was collected with any unit is returned, along with the corresponding units that were specified when the data was reported to CloudWatch. If you specify a unit, the operation returns only data that was collected with that unit specified. If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.
208
+ */
209
+ Unit?: string;
210
+ };
211
+ /**
212
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.RollingInterval`.
213
+ * If the interval is a calendar interval, this structure contains the interval specifications.
214
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-rollinginterval.html}
215
+ */
216
+ export type RollingInterval = {
217
+ /**
218
+ * Specifies the duration of each calendar interval. For example, if `Duration` is 1 and `DurationUnit` is `MONTH`, each interval is one month, aligned with the calendar.
219
+ * @min `1`
220
+ */
221
+ Duration: number;
222
+ /**
223
+ * Specifies the calendar interval unit.
224
+ */
225
+ DurationUnit: DurationUnit;
226
+ };
227
+ /**
228
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Sli`.
229
+ * This structure contains information about the performance metric that an SLO monitors.
230
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-sli.html}
231
+ */
232
+ export type Sli = {
233
+ /**
234
+ * The arithmetic operation used when comparing the specified metric to the threshold.
235
+ */
236
+ ComparisonOperator: "GreaterThanOrEqualTo" | "LessThanOrEqualTo" | "LessThan" | "GreaterThan";
237
+ /**
238
+ * The value that the SLI metric is compared to.
239
+ */
240
+ MetricThreshold: number;
241
+ /**
242
+ * A structure that contains information about the metric that the SLO monitors.
243
+ */
244
+ SliMetric: SliMetric;
245
+ };
246
+ /**
247
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.SliMetric`.
248
+ * A structure that contains information about the metric that the SLO monitors.
249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-slimetric.html}
250
+ */
251
+ export type SliMetric = {
252
+ /**
253
+ * This is a string-to-string map that contains information about the type of object that this SLO is related to.
254
+ */
255
+ KeyAttributes?: KeyAttributes;
256
+ /**
257
+ * If this SLO monitors a CloudWatch metric or the result of a CloudWatch metric math expression, this structure includes the information about that metric or expression.
258
+ */
259
+ MetricDataQueries?: MetricDataQuery[];
260
+ /**
261
+ * If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used.
262
+ */
263
+ MetricType?: "LATENCY" | "AVAILABILITY";
264
+ /**
265
+ * If the SLO monitors a specific operation of the service, this field displays that operation name.
266
+ * @minLength `1`
267
+ * @maxLength `255`
268
+ */
269
+ OperationName?: string;
270
+ /**
271
+ * The number of seconds to use as the period for SLO evaluation. Your application's performance is compared to the SLI during each period. For each period, the application is determined to have either achieved or not achieved the necessary performance.
272
+ * @min `60`
273
+ * @max `900`
274
+ */
275
+ PeriodSeconds?: number;
276
+ /**
277
+ * The statistic to use for comparison to the threshold. It can be any CloudWatch statistic or extended statistic
278
+ * @minLength `1`
279
+ * @maxLength `20`
280
+ */
281
+ Statistic?: string;
282
+ };
283
+ /**
284
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Tag`.
285
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-tag.html}
286
+ */
287
+ export type Tag = {
288
+ /**
289
+ * A string that you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.
290
+ * @minLength `1`
291
+ * @maxLength `128`
292
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
293
+ */
294
+ Key: string;
295
+ /**
296
+ * The value for the specified tag key.
297
+ * @minLength `0`
298
+ * @maxLength `256`
299
+ */
300
+ Value: string;
301
+ };
302
+ /**
303
+ * Resource Type definition for AWS::ApplicationSignals::ServiceLevelObjective
304
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
305
+ */
306
+ export declare class ApplicationSignalsServiceLevelObjective extends $Resource<"AWS::ApplicationSignals::ServiceLevelObjective", ApplicationSignalsServiceLevelObjectiveProperties, ApplicationSignalsServiceLevelObjectiveAttributes> {
307
+ static readonly Type = "AWS::ApplicationSignals::ServiceLevelObjective";
308
+ constructor(logicalId: string, properties: ApplicationSignalsServiceLevelObjectiveProperties, options?: $ResourceOptions);
309
+ }
310
+ //# sourceMappingURL=AWS-ApplicationSignals-ServiceLevelObjective.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::ApplicationSignals::ServiceLevelObjective
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
5
+ */
6
+ export class ApplicationSignalsServiceLevelObjective extends $Resource {
7
+ static Type = "AWS::ApplicationSignals::ServiceLevelObjective";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ApplicationSignalsServiceLevelObjective.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-ApplicationSignals-ServiceLevelObjective.js.map
@@ -297,7 +297,6 @@ export type NodeProperties = {
297
297
  export type NodeRangeProperty = {
298
298
  Container?: ContainerProperties;
299
299
  EcsProperties?: EcsProperties;
300
- EksProperties?: EksProperties;
301
300
  InstanceTypes?: string[];
302
301
  TargetNodes: string;
303
302
  };
@@ -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
- * Schema for EC2 VPN Gateway
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
- * Schema for EC2 VPN Gateway
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
- * Schema for EC2 VPN Gateway
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 {
@@ -11,8 +11,11 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
11
11
  */
12
12
  EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
13
13
  /**
14
- * The IP address type. The possible values are ``ipv4`` (for IPv4 addresses) and ``dualstack`` (for IPv4 and IPv6 addresses). You can’t specify ``dualstack`` for a load balancer with a UDP or TCP_UDP listener.
15
- */
14
+ * Note: Internal load balancers must use the ``ipv4`` IP address type.
15
+ [Application Load Balancers] The IP address type. The possible values are ``ipv4`` (for only IPv4 addresses), ``dualstack`` (for IPv4 and IPv6 addresses), and ``dualstack-without-public-ipv4`` (for IPv6 only public addresses, with private IPv4 and IPv6 addresses).
16
+ [Network Load Balancers] The IP address type. The possible values are ``ipv4`` (for only IPv4 addresses) and ``dualstack`` (for IPv4 and IPv6 addresses). You can’t specify ``dualstack`` for a load balancer with a UDP or TCP_UDP listener.
17
+ [Gateway Load Balancers] The IP address type. The possible values are ``ipv4`` (for only IPv4 addresses) and ``dualstack`` (for IPv4 and IPv6 addresses).
18
+ */
16
19
  IpAddressType?: string;
17
20
  /**
18
21
  * The load balancer attributes.
@@ -0,0 +1,126 @@
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::GuardDuty::MalwareProtectionPlan
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-malwareprotectionplan.html}
6
+ */
7
+ export type GuardDutyMalwareProtectionPlanProperties = {
8
+ /**
9
+ * Information about whether the tags will be added to the S3 object after scanning.
10
+ */
11
+ Actions?: CFNActions;
12
+ /**
13
+ * Information about the protected resource that is associated with the created Malware Protection plan. Presently, S3Bucket is the only supported protected resource.
14
+ */
15
+ ProtectedResource: CFNProtectedResource;
16
+ /**
17
+ * IAM role that includes the permissions required to scan and add tags to the associated protected resource.
18
+ */
19
+ Role: string;
20
+ Tags?: TagItem[];
21
+ };
22
+ /**
23
+ * Attribute type definition for `AWS::GuardDuty::MalwareProtectionPlan`.
24
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-malwareprotectionplan.html#aws-resource-guardduty-malwareprotectionplan-return-values}
25
+ */
26
+ export type GuardDutyMalwareProtectionPlanAttributes = {
27
+ /**
28
+ * Amazon Resource Name (ARN) of the protected resource.
29
+ */
30
+ Arn: string;
31
+ /**
32
+ * The timestamp when the Malware Protection plan resource was created.
33
+ */
34
+ CreatedAt: string;
35
+ /**
36
+ * A unique identifier associated with Malware Protection plan resource.
37
+ */
38
+ MalwareProtectionPlanId: string;
39
+ /**
40
+ * Malware Protection plan status.
41
+ */
42
+ Status: string;
43
+ /**
44
+ * Information about the issue code and message associated to the status of your Malware Protection plan.
45
+ */
46
+ StatusReasons: {
47
+ /**
48
+ * Issue code.
49
+ */
50
+ Code: string;
51
+ /**
52
+ * Issue message that specifies the reason.
53
+ */
54
+ Message: string;
55
+ }[];
56
+ };
57
+ /**
58
+ * Type definition for `AWS::GuardDuty::MalwareProtectionPlan.CFNActions`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-malwareprotectionplan-cfnactions.html}
60
+ */
61
+ export type CFNActions = {
62
+ /**
63
+ * Indicates whether the scanned S3 object will have tags about the scan result.
64
+ */
65
+ Tagging?: CFNTagging;
66
+ };
67
+ /**
68
+ * Type definition for `AWS::GuardDuty::MalwareProtectionPlan.CFNProtectedResource`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-malwareprotectionplan-cfnprotectedresource.html}
70
+ */
71
+ export type CFNProtectedResource = {
72
+ /**
73
+ * Information about the protected S3 bucket resource.
74
+ */
75
+ S3Bucket: {
76
+ /**
77
+ * Name of the S3 bucket.
78
+ */
79
+ BucketName?: string;
80
+ /**
81
+ * Information about the specified object prefixes. The S3 object will be scanned only if it belongs to any of the specified object prefixes.
82
+ */
83
+ ObjectPrefixes?: string[];
84
+ };
85
+ };
86
+ /**
87
+ * Type definition for `AWS::GuardDuty::MalwareProtectionPlan.CFNStatusReasons`.
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-malwareprotectionplan-cfnstatusreasons.html}
89
+ */
90
+ export type CFNStatusReasons = {
91
+ /**
92
+ * Issue code.
93
+ */
94
+ Code?: string;
95
+ /**
96
+ * Issue message that specifies the reason.
97
+ */
98
+ Message?: string;
99
+ };
100
+ /**
101
+ * Type definition for `AWS::GuardDuty::MalwareProtectionPlan.CFNTagging`.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-malwareprotectionplan-cfntagging.html}
103
+ */
104
+ export type CFNTagging = {
105
+ /**
106
+ * Indicates whether or not the tags will added.
107
+ */
108
+ Status?: string;
109
+ };
110
+ /**
111
+ * Type definition for `AWS::GuardDuty::MalwareProtectionPlan.TagItem`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-malwareprotectionplan-tagitem.html}
113
+ */
114
+ export type TagItem = {
115
+ Key: string;
116
+ Value: string;
117
+ };
118
+ /**
119
+ * Resource Type definition for AWS::GuardDuty::MalwareProtectionPlan
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-malwareprotectionplan.html}
121
+ */
122
+ export declare class GuardDutyMalwareProtectionPlan extends $Resource<"AWS::GuardDuty::MalwareProtectionPlan", GuardDutyMalwareProtectionPlanProperties, GuardDutyMalwareProtectionPlanAttributes> {
123
+ static readonly Type = "AWS::GuardDuty::MalwareProtectionPlan";
124
+ constructor(logicalId: string, properties: GuardDutyMalwareProtectionPlanProperties, options?: $ResourceOptions);
125
+ }
126
+ //# sourceMappingURL=AWS-GuardDuty-MalwareProtectionPlan.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::GuardDuty::MalwareProtectionPlan
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-malwareprotectionplan.html}
5
+ */
6
+ export class GuardDutyMalwareProtectionPlan extends $Resource {
7
+ static Type = "AWS::GuardDuty::MalwareProtectionPlan";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, GuardDutyMalwareProtectionPlan.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-GuardDuty-MalwareProtectionPlan.js.map
@@ -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: string;
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: string;
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: string;
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: string;
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: string;
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,12 @@ export type OSISPipelineAttributes = {
68
68
  * @pattern `^arn:(aws|aws\-cn|aws\-us\-gov|aws\-iso|aws\-iso\-b):osis:.+:pipeline\/.+$`
69
69
  */
70
70
  PipelineArn: string;
71
+ /**
72
+ * The VPC endpoint service name for the pipeline.
73
+ * @minLength `1`
74
+ * @maxLength `128`
75
+ */
76
+ VpcEndpointService: string;
71
77
  /**
72
78
  * The VPC interface endpoints that have access to the pipeline.
73
79
  */
@@ -92,6 +98,10 @@ export type OSISPipelineAttributes = {
92
98
  * A list of subnet IDs associated with the VPC endpoint.
93
99
  */
94
100
  SubnetIds: string[];
101
+ /**
102
+ * Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.
103
+ */
104
+ VpcEndpointManagement: "CUSTOMER" | "SERVICE";
95
105
  };
96
106
  }[];
97
107
  };
@@ -191,6 +201,10 @@ export type VpcOptions = {
191
201
  * A list of subnet IDs associated with the VPC endpoint.
192
202
  */
193
203
  SubnetIds: string[];
204
+ /**
205
+ * Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.
206
+ */
207
+ VpcEndpointManagement?: "CUSTOMER" | "SERVICE";
194
208
  };
195
209
  /**
196
210
  * Resource type definition for `AWS::OSIS::Pipeline`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.93",
3
+ "version": "0.1.95",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },