@awboost/cfn-resource-types 0.1.491 → 0.1.493
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-Connect-DataTable.d.ts +109 -0
- package/lib/AWS-Connect-DataTable.js +12 -0
- package/lib/AWS-Connect-DataTableAttribute.d.ts +93 -0
- package/lib/AWS-Connect-DataTableAttribute.js +12 -0
- package/lib/AWS-Connect-DataTableRecord.d.ts +55 -0
- package/lib/AWS-Connect-DataTableRecord.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +160 -18
- package/lib/AWS-GameLift-Script.d.ts +1 -1
- package/lib/AWS-Glue-IdentityCenterConfiguration.d.ts +49 -0
- package/lib/AWS-Glue-IdentityCenterConfiguration.js +12 -0
- package/lib/AWS-MediaLive-Channel.d.ts +8 -0
- package/lib/AWS-MediaLive-Input.d.ts +17 -0
- package/lib/AWS-ObservabilityAdmin-S3TableIntegration.d.ts +118 -0
- package/lib/AWS-ObservabilityAdmin-S3TableIntegration.js +13 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryPipelines.d.ts +162 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryPipelines.js +12 -0
- package/lib/AWS-S3Tables-Table.d.ts +15 -0
- package/lib/AWS-S3Tables-TableBucket.d.ts +15 -0
- package/lib/AWS-SecurityHub-ConnectorV2.d.ts +141 -0
- package/lib/AWS-SecurityHub-ConnectorV2.js +12 -0
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
|
|
7
7
|
*/
|
|
8
8
|
export type ConnectEvaluationFormProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The automatic evaluation configuration of an evaluation form.
|
|
11
|
+
*/
|
|
9
12
|
AutoEvaluationConfiguration?: AutoEvaluationConfiguration;
|
|
10
13
|
/**
|
|
11
14
|
* The description of the evaluation form.
|
|
@@ -26,6 +29,7 @@ export type ConnectEvaluationFormProperties = {
|
|
|
26
29
|
* @maxLength `200`
|
|
27
30
|
*/
|
|
28
31
|
Items: EvaluationFormBaseItem[];
|
|
32
|
+
LanguageConfiguration?: EvaluationFormLanguageConfiguration;
|
|
29
33
|
/**
|
|
30
34
|
* A scoring strategy of the evaluation form.
|
|
31
35
|
*/
|
|
@@ -40,6 +44,7 @@ export type ConnectEvaluationFormProperties = {
|
|
|
40
44
|
* @maxLength `50`
|
|
41
45
|
*/
|
|
42
46
|
Tags?: Tag[];
|
|
47
|
+
TargetConfiguration?: EvaluationFormTargetConfiguration;
|
|
43
48
|
/**
|
|
44
49
|
* A title of the evaluation form.
|
|
45
50
|
* @minLength `1`
|
|
@@ -59,6 +64,7 @@ export type ConnectEvaluationFormAttributes = {
|
|
|
59
64
|
};
|
|
60
65
|
/**
|
|
61
66
|
* Type definition for `AWS::Connect::EvaluationForm.AutoEvaluationConfiguration`.
|
|
67
|
+
* Configuration information about automated evaluations.
|
|
62
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html}
|
|
63
69
|
*/
|
|
64
70
|
export type AutoEvaluationConfiguration = {
|
|
@@ -66,11 +72,12 @@ export type AutoEvaluationConfiguration = {
|
|
|
66
72
|
};
|
|
67
73
|
/**
|
|
68
74
|
* Type definition for `AWS::Connect::EvaluationForm.AutomaticFailConfiguration`.
|
|
75
|
+
* Information about automatic fail configuration for an evaluation form.
|
|
69
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html}
|
|
70
77
|
*/
|
|
71
78
|
export type AutomaticFailConfiguration = {
|
|
72
79
|
/**
|
|
73
|
-
* The target section
|
|
80
|
+
* The referenceId of the target section for auto failure.
|
|
74
81
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
75
82
|
*/
|
|
76
83
|
TargetSection?: string;
|
|
@@ -103,102 +110,188 @@ export type EvaluationFormItem = {
|
|
|
103
110
|
};
|
|
104
111
|
/**
|
|
105
112
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementCondition`.
|
|
113
|
+
* A condition for item enablement.
|
|
106
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html}
|
|
107
115
|
*/
|
|
108
116
|
export type EvaluationFormItemEnablementCondition = {
|
|
109
117
|
/**
|
|
110
|
-
*
|
|
118
|
+
* Operands of the enablement condition.
|
|
111
119
|
* @minLength `1`
|
|
112
120
|
*/
|
|
113
121
|
Operands: EvaluationFormItemEnablementConditionOperand[];
|
|
114
122
|
/**
|
|
115
|
-
* The
|
|
123
|
+
* The operator to be used to be applied to operands if more than one provided.
|
|
116
124
|
*/
|
|
117
125
|
Operator?: "OR" | "AND";
|
|
118
126
|
};
|
|
119
127
|
/**
|
|
120
128
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConditionOperand`.
|
|
129
|
+
* An operand of the enablement condition.
|
|
121
130
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html}
|
|
122
131
|
*/
|
|
123
132
|
export type EvaluationFormItemEnablementConditionOperand = {
|
|
124
133
|
/**
|
|
125
|
-
*
|
|
134
|
+
* An expression of the enablement condition.
|
|
126
135
|
*/
|
|
127
136
|
Expression?: EvaluationFormItemEnablementExpression;
|
|
128
137
|
};
|
|
129
138
|
/**
|
|
130
139
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConfiguration`.
|
|
140
|
+
* An item enablement configuration.
|
|
131
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html}
|
|
132
142
|
*/
|
|
133
143
|
export type EvaluationFormItemEnablementConfiguration = {
|
|
134
144
|
/**
|
|
135
|
-
*
|
|
145
|
+
* An enablement action that if condition is satisfied.
|
|
136
146
|
*/
|
|
137
147
|
Action: "DISABLE" | "ENABLE";
|
|
138
148
|
/**
|
|
139
|
-
*
|
|
149
|
+
* A condition for item enablement configuration.
|
|
140
150
|
*/
|
|
141
151
|
Condition: EvaluationFormItemEnablementCondition;
|
|
142
152
|
/**
|
|
143
|
-
*
|
|
153
|
+
* An enablement action that if condition is not satisfied.
|
|
144
154
|
*/
|
|
145
155
|
DefaultAction?: "DISABLE" | "ENABLE";
|
|
146
156
|
};
|
|
147
157
|
/**
|
|
148
158
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementExpression`.
|
|
159
|
+
* An expression that defines a basic building block of conditional enablement.
|
|
149
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html}
|
|
150
161
|
*/
|
|
151
162
|
export type EvaluationFormItemEnablementExpression = {
|
|
152
163
|
/**
|
|
153
|
-
*
|
|
164
|
+
* A comparator to be used against list of values.
|
|
154
165
|
*/
|
|
155
166
|
Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
|
|
156
167
|
/**
|
|
157
|
-
*
|
|
168
|
+
* A source item of enablement expression.
|
|
158
169
|
*/
|
|
159
170
|
Source: EvaluationFormItemEnablementSource;
|
|
160
171
|
/**
|
|
161
|
-
*
|
|
172
|
+
* A list of values from source item.
|
|
162
173
|
* @minLength `1`
|
|
163
174
|
*/
|
|
164
175
|
Values: EvaluationFormItemEnablementSourceValue[];
|
|
165
176
|
};
|
|
166
177
|
/**
|
|
167
178
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSource`.
|
|
179
|
+
* An enablement expression source item.
|
|
168
180
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html}
|
|
169
181
|
*/
|
|
170
182
|
export type EvaluationFormItemEnablementSource = {
|
|
171
183
|
/**
|
|
172
|
-
*
|
|
184
|
+
* A referenceId of the source item.
|
|
173
185
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
174
186
|
*/
|
|
175
187
|
RefId?: string;
|
|
176
188
|
/**
|
|
177
|
-
*
|
|
189
|
+
* A type of source item.
|
|
178
190
|
*/
|
|
179
191
|
Type: "QUESTION_REF_ID";
|
|
180
192
|
};
|
|
181
193
|
/**
|
|
182
194
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSourceValue`.
|
|
195
|
+
* An enablement expression source value.
|
|
183
196
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html}
|
|
184
197
|
*/
|
|
185
198
|
export type EvaluationFormItemEnablementSourceValue = {
|
|
186
199
|
/**
|
|
187
|
-
*
|
|
200
|
+
* A referenceId of the source value.
|
|
188
201
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
189
202
|
*/
|
|
190
203
|
RefId?: string;
|
|
191
204
|
/**
|
|
192
|
-
*
|
|
205
|
+
* A type of source item value.
|
|
193
206
|
*/
|
|
194
207
|
Type?: "OPTION_REF_ID";
|
|
195
208
|
};
|
|
209
|
+
/**
|
|
210
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormLanguageConfiguration`.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html}
|
|
212
|
+
*/
|
|
213
|
+
export type EvaluationFormLanguageConfiguration = {
|
|
214
|
+
/**
|
|
215
|
+
* The language of the form
|
|
216
|
+
*/
|
|
217
|
+
FormLanguage?: "de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR";
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomation`.
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html}
|
|
222
|
+
*/
|
|
223
|
+
export type EvaluationFormMultiSelectQuestionAutomation = {
|
|
224
|
+
/**
|
|
225
|
+
* The source of automation answer of the question.
|
|
226
|
+
*/
|
|
227
|
+
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
|
|
228
|
+
/**
|
|
229
|
+
* The option reference identifiers of the default answers.
|
|
230
|
+
*/
|
|
231
|
+
DefaultOptionRefIds?: string[];
|
|
232
|
+
/**
|
|
233
|
+
* The answer options for the automation.
|
|
234
|
+
* @minLength `1`
|
|
235
|
+
* @maxLength `20`
|
|
236
|
+
*/
|
|
237
|
+
Options: EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomationOption`.
|
|
241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html}
|
|
242
|
+
*/
|
|
243
|
+
export type EvaluationFormMultiSelectQuestionAutomationOption = {
|
|
244
|
+
/**
|
|
245
|
+
* The automation option based on Rules categories.
|
|
246
|
+
*/
|
|
247
|
+
RuleCategory: MultiSelectQuestionRuleCategoryAutomation;
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionOption`.
|
|
251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html}
|
|
252
|
+
*/
|
|
253
|
+
export type EvaluationFormMultiSelectQuestionOption = {
|
|
254
|
+
/**
|
|
255
|
+
* The identifier used to reference the option.
|
|
256
|
+
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
257
|
+
*/
|
|
258
|
+
RefId: string;
|
|
259
|
+
/**
|
|
260
|
+
* The title of the option.
|
|
261
|
+
* @minLength `1`
|
|
262
|
+
* @maxLength `128`
|
|
263
|
+
*/
|
|
264
|
+
Text: string;
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionProperties`.
|
|
268
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html}
|
|
269
|
+
*/
|
|
270
|
+
export type EvaluationFormMultiSelectQuestionProperties = {
|
|
271
|
+
/**
|
|
272
|
+
* The automation properties for the multi-select question.
|
|
273
|
+
*/
|
|
274
|
+
Automation?: EvaluationFormMultiSelectQuestionAutomation;
|
|
275
|
+
/**
|
|
276
|
+
* The display mode of the multi-select question.
|
|
277
|
+
*/
|
|
278
|
+
DisplayAs?: "DROPDOWN" | "CHECKBOX";
|
|
279
|
+
/**
|
|
280
|
+
* The list of options for the question.
|
|
281
|
+
* @minLength `2`
|
|
282
|
+
* @maxLength `256`
|
|
283
|
+
*/
|
|
284
|
+
Options: EvaluationFormMultiSelectQuestionOption[];
|
|
285
|
+
};
|
|
196
286
|
/**
|
|
197
287
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation`.
|
|
198
288
|
* Information about the automation configuration in numeric questions.
|
|
199
289
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
|
|
200
290
|
*/
|
|
201
291
|
export type EvaluationFormNumericQuestionAutomation = {
|
|
292
|
+
/**
|
|
293
|
+
* A source of automation answer for numeric question.
|
|
294
|
+
*/
|
|
202
295
|
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
|
|
203
296
|
/**
|
|
204
297
|
* The property value of the automation.
|
|
@@ -215,6 +308,9 @@ export type EvaluationFormNumericQuestionOption = {
|
|
|
215
308
|
* The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
|
|
216
309
|
*/
|
|
217
310
|
AutomaticFail?: boolean;
|
|
311
|
+
/**
|
|
312
|
+
* A configuration for automatic fail.
|
|
313
|
+
*/
|
|
218
314
|
AutomaticFailConfiguration?: AutomaticFailConfiguration;
|
|
219
315
|
/**
|
|
220
316
|
* The maximum answer value of the range option.
|
|
@@ -264,6 +360,9 @@ export type EvaluationFormNumericQuestionProperties = {
|
|
|
264
360
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
|
|
265
361
|
*/
|
|
266
362
|
export type EvaluationFormQuestion = {
|
|
363
|
+
/**
|
|
364
|
+
* A question conditional enablement.
|
|
365
|
+
*/
|
|
267
366
|
Enablement?: EvaluationFormItemEnablementConfiguration;
|
|
268
367
|
/**
|
|
269
368
|
* The instructions of the section.
|
|
@@ -308,11 +407,12 @@ export type EvaluationFormQuestion = {
|
|
|
308
407
|
};
|
|
309
408
|
/**
|
|
310
409
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionAutomationAnswerSource`.
|
|
410
|
+
* A question automation answer.
|
|
311
411
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html}
|
|
312
412
|
*/
|
|
313
413
|
export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
314
414
|
/**
|
|
315
|
-
* The
|
|
415
|
+
* The automation answer source type.
|
|
316
416
|
*/
|
|
317
417
|
SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
|
|
318
418
|
};
|
|
@@ -322,6 +422,7 @@ export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
|
322
422
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
|
|
323
423
|
*/
|
|
324
424
|
export type EvaluationFormQuestionTypeProperties = {
|
|
425
|
+
MultiSelect?: EvaluationFormMultiSelectQuestionProperties;
|
|
325
426
|
/**
|
|
326
427
|
* The properties of the numeric question.
|
|
327
428
|
*/
|
|
@@ -330,6 +431,9 @@ export type EvaluationFormQuestionTypeProperties = {
|
|
|
330
431
|
* The properties of the numeric question.
|
|
331
432
|
*/
|
|
332
433
|
SingleSelect?: EvaluationFormSingleSelectQuestionProperties;
|
|
434
|
+
/**
|
|
435
|
+
* The properties of the text question.
|
|
436
|
+
*/
|
|
333
437
|
Text?: EvaluationFormTextQuestionProperties;
|
|
334
438
|
};
|
|
335
439
|
/**
|
|
@@ -378,6 +482,9 @@ export type EvaluationFormSection = {
|
|
|
378
482
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
|
|
379
483
|
*/
|
|
380
484
|
export type EvaluationFormSingleSelectQuestionAutomation = {
|
|
485
|
+
/**
|
|
486
|
+
* Automation answer source.
|
|
487
|
+
*/
|
|
381
488
|
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
|
|
382
489
|
/**
|
|
383
490
|
* The identifier of the default answer option, when none of the automation options match the criteria.
|
|
@@ -415,6 +522,9 @@ export type EvaluationFormSingleSelectQuestionOption = {
|
|
|
415
522
|
* The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
|
|
416
523
|
*/
|
|
417
524
|
AutomaticFail?: boolean;
|
|
525
|
+
/**
|
|
526
|
+
* Whether automatic fail is configured on a single select question.
|
|
527
|
+
*/
|
|
418
528
|
AutomaticFailConfiguration?: AutomaticFailConfiguration;
|
|
419
529
|
/**
|
|
420
530
|
* The identifier of the answer option. An identifier must be unique within the question.
|
|
@@ -462,26 +572,58 @@ export type EvaluationFormSingleSelectQuestionProperties = {
|
|
|
462
572
|
*/
|
|
463
573
|
Options: EvaluationFormSingleSelectQuestionOption[];
|
|
464
574
|
};
|
|
575
|
+
/**
|
|
576
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTargetConfiguration`.
|
|
577
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html}
|
|
578
|
+
*/
|
|
579
|
+
export type EvaluationFormTargetConfiguration = {
|
|
580
|
+
/**
|
|
581
|
+
* The interaction type of a contact
|
|
582
|
+
*/
|
|
583
|
+
ContactInteractionType: "AGENT" | "AUTOMATED";
|
|
584
|
+
};
|
|
465
585
|
/**
|
|
466
586
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionAutomation`.
|
|
587
|
+
* Information about the automation configuration in text questions.
|
|
467
588
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
|
|
468
589
|
*/
|
|
469
590
|
export type EvaluationFormTextQuestionAutomation = {
|
|
470
591
|
/**
|
|
471
|
-
*
|
|
592
|
+
* Automation answer source.
|
|
472
593
|
*/
|
|
473
594
|
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
|
|
474
595
|
};
|
|
475
596
|
/**
|
|
476
597
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionProperties`.
|
|
598
|
+
* Information about properties for a text question in an evaluation form.
|
|
477
599
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html}
|
|
478
600
|
*/
|
|
479
601
|
export type EvaluationFormTextQuestionProperties = {
|
|
480
602
|
/**
|
|
481
|
-
*
|
|
603
|
+
* The automation properties of the text question.
|
|
482
604
|
*/
|
|
483
605
|
Automation?: EvaluationFormTextQuestionAutomation;
|
|
484
606
|
};
|
|
607
|
+
/**
|
|
608
|
+
* Type definition for `AWS::Connect::EvaluationForm.MultiSelectQuestionRuleCategoryAutomation`.
|
|
609
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html}
|
|
610
|
+
*/
|
|
611
|
+
export type MultiSelectQuestionRuleCategoryAutomation = {
|
|
612
|
+
/**
|
|
613
|
+
* The category name as defined in Rules.
|
|
614
|
+
* @minLength `1`
|
|
615
|
+
* @maxLength `50`
|
|
616
|
+
*/
|
|
617
|
+
Category: string;
|
|
618
|
+
/**
|
|
619
|
+
* The automation condition applied on contact categories.
|
|
620
|
+
*/
|
|
621
|
+
Condition: "PRESENT" | "NOT_PRESENT";
|
|
622
|
+
/**
|
|
623
|
+
* The option identifiers referencing the options to be selected when the automation option is triggered.
|
|
624
|
+
*/
|
|
625
|
+
OptionRefIds: string[];
|
|
626
|
+
};
|
|
485
627
|
/**
|
|
486
628
|
* Type definition for `AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation`.
|
|
487
629
|
* Information about the property value used in automation of a numeric questions.
|
|
@@ -491,7 +633,7 @@ export type NumericQuestionPropertyValueAutomation = {
|
|
|
491
633
|
/**
|
|
492
634
|
* The property label of the automation.
|
|
493
635
|
*/
|
|
494
|
-
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT";
|
|
636
|
+
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT" | "CUSTOMER_SENTIMENT_SCORE_WITH_AGENT";
|
|
495
637
|
};
|
|
496
638
|
/**
|
|
497
639
|
* Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
|
|
@@ -48,7 +48,7 @@ export type GameLiftScriptAttributes = {
|
|
|
48
48
|
Id: string;
|
|
49
49
|
/**
|
|
50
50
|
* The file size of the uploaded Realtime script, expressed in bytes. When files are uploaded from an S3 location, this value remains at "0".
|
|
51
|
-
* @min `
|
|
51
|
+
* @min `0`
|
|
52
52
|
*/
|
|
53
53
|
SizeOnDisk: number;
|
|
54
54
|
};
|
|
@@ -0,0 +1,49 @@
|
|
|
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::Glue::IdentityCenterConfiguration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type GlueIdentityCenterConfigurationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The IAM identity center instance arn
|
|
10
|
+
* @minLength `10`
|
|
11
|
+
* @maxLength `1224`
|
|
12
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
13
|
+
*/
|
|
14
|
+
InstanceArn: string;
|
|
15
|
+
/**
|
|
16
|
+
* The downstream scopes that Glue identity center configuration can access
|
|
17
|
+
*/
|
|
18
|
+
Scopes?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* Enable or disable user background sessions for Glue Identity Center
|
|
21
|
+
*/
|
|
22
|
+
UserBackgroundSessionsEnabled?: boolean;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::Glue::IdentityCenterConfiguration`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#aws-resource-glue-identitycenterconfiguration-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type GlueIdentityCenterConfigurationAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The identifier for the specified AWS account.
|
|
31
|
+
*/
|
|
32
|
+
AccountId: string;
|
|
33
|
+
/**
|
|
34
|
+
* The Glue IAM identity center application arn
|
|
35
|
+
* @minLength `10`
|
|
36
|
+
* @maxLength `1224`
|
|
37
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::\d{12}:application/(sso)?ins-[a-zA-Z0-9-.]{16}/apl-[a-zA-Z0-9]{16}$`
|
|
38
|
+
*/
|
|
39
|
+
ApplicationArn: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Resource Type definition for AWS::Glue::IdentityCenterConfiguration
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
|
|
44
|
+
*/
|
|
45
|
+
export declare class GlueIdentityCenterConfiguration extends $Resource<"AWS::Glue::IdentityCenterConfiguration", GlueIdentityCenterConfigurationProperties, GlueIdentityCenterConfigurationAttributes> {
|
|
46
|
+
static readonly Type = "AWS::Glue::IdentityCenterConfiguration";
|
|
47
|
+
constructor(logicalId: string, properties: GlueIdentityCenterConfigurationProperties, options?: $ResourceOptions);
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=AWS-Glue-IdentityCenterConfiguration.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::Glue::IdentityCenterConfiguration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class GlueIdentityCenterConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::Glue::IdentityCenterConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, GlueIdentityCenterConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Glue-IdentityCenterConfiguration.js.map
|
|
@@ -312,6 +312,8 @@ export type Av1Settings = {
|
|
|
312
312
|
QvbrQualityLevel?: number;
|
|
313
313
|
RateControlMode?: string;
|
|
314
314
|
SceneChangeDetect?: string;
|
|
315
|
+
SpatialAq?: string;
|
|
316
|
+
TemporalAq?: string;
|
|
315
317
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
316
318
|
};
|
|
317
319
|
/**
|
|
@@ -876,6 +878,7 @@ export type H265ColorSpaceSettings = {
|
|
|
876
878
|
ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
|
|
877
879
|
DolbyVision81Settings?: DolbyVision81Settings;
|
|
878
880
|
Hdr10Settings?: Hdr10Settings;
|
|
881
|
+
Hlg2020Settings?: Hlg2020Settings;
|
|
879
882
|
Rec601Settings?: Rec601Settings;
|
|
880
883
|
Rec709Settings?: Rec709Settings;
|
|
881
884
|
};
|
|
@@ -943,6 +946,11 @@ export type Hdr10Settings = {
|
|
|
943
946
|
MaxCll?: number;
|
|
944
947
|
MaxFall?: number;
|
|
945
948
|
};
|
|
949
|
+
/**
|
|
950
|
+
* Type definition for `AWS::MediaLive::Channel.Hlg2020Settings`.
|
|
951
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlg2020settings.html}
|
|
952
|
+
*/
|
|
953
|
+
export type Hlg2020Settings = Record<string, any>;
|
|
946
954
|
/**
|
|
947
955
|
* Type definition for `AWS::MediaLive::Channel.HlsAkamaiSettings`.
|
|
948
956
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlsakamaisettings.html}
|
|
@@ -13,6 +13,7 @@ export type MediaLiveInputProperties = {
|
|
|
13
13
|
MulticastSettings?: MulticastSettingsCreateRequest;
|
|
14
14
|
Name?: string;
|
|
15
15
|
RoleArn?: string;
|
|
16
|
+
RouterSettings?: RouterSettings;
|
|
16
17
|
SdiSources?: string[];
|
|
17
18
|
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings;
|
|
18
19
|
Sources?: InputSourceRequest[];
|
|
@@ -101,6 +102,22 @@ export type MulticastSourceCreateRequest = {
|
|
|
101
102
|
SourceIp?: string;
|
|
102
103
|
Url?: string;
|
|
103
104
|
};
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::MediaLive::Input.RouterDestinationSettings`.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routerdestinationsettings.html}
|
|
108
|
+
*/
|
|
109
|
+
export type RouterDestinationSettings = {
|
|
110
|
+
AvailabilityZoneName?: string;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Type definition for `AWS::MediaLive::Input.RouterSettings`.
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routersettings.html}
|
|
115
|
+
*/
|
|
116
|
+
export type RouterSettings = {
|
|
117
|
+
Destinations?: RouterDestinationSettings[];
|
|
118
|
+
EncryptionType?: string;
|
|
119
|
+
SecretArn?: string;
|
|
120
|
+
};
|
|
104
121
|
/**
|
|
105
122
|
* Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroup`.
|
|
106
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html}
|
|
@@ -0,0 +1,118 @@
|
|
|
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::ObservabilityAdmin::S3TableIntegration`.
|
|
5
|
+
* Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
|
|
7
|
+
*/
|
|
8
|
+
export type ObservabilityAdminS3TableIntegrationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Encryption configuration for the S3 Table Integration
|
|
11
|
+
*/
|
|
12
|
+
Encryption: EncryptionConfig;
|
|
13
|
+
/**
|
|
14
|
+
* The CloudWatch Logs data sources to associate with the S3 Table Integration
|
|
15
|
+
*/
|
|
16
|
+
LogSources?: LogSource[];
|
|
17
|
+
/**
|
|
18
|
+
* The ARN of the role used to access the S3 Table Integration
|
|
19
|
+
* @minLength `1`
|
|
20
|
+
* @maxLength `1011`
|
|
21
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
22
|
+
*/
|
|
23
|
+
RoleArn: string;
|
|
24
|
+
/**
|
|
25
|
+
* An array of key-value pairs to apply to this resource
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Attribute type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#aws-resource-observabilityadmin-s3tableintegration-return-values}
|
|
32
|
+
*/
|
|
33
|
+
export type ObservabilityAdminS3TableIntegrationAttributes = {
|
|
34
|
+
/**
|
|
35
|
+
* The ARN of the S3 Table Integration
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `1011`
|
|
38
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
39
|
+
*/
|
|
40
|
+
Arn: string;
|
|
41
|
+
/**
|
|
42
|
+
* The CloudWatch Logs data sources to associate with the S3 Table Integration
|
|
43
|
+
*/
|
|
44
|
+
LogSources: {
|
|
45
|
+
/**
|
|
46
|
+
* The ID of the CloudWatch Logs data source association
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `256`
|
|
49
|
+
*/
|
|
50
|
+
Identifier: string;
|
|
51
|
+
}[];
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.EncryptionConfig`.
|
|
55
|
+
* Encryption configuration for the S3 Table Integration
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html}
|
|
57
|
+
*/
|
|
58
|
+
export type EncryptionConfig = {
|
|
59
|
+
/**
|
|
60
|
+
* The ARN of the KMS key used to encrypt the S3 Table Integration
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `1011`
|
|
63
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
64
|
+
*/
|
|
65
|
+
KmsKeyArn?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The server-side encryption algorithm used to encrypt the S3 Table(s) data
|
|
68
|
+
*/
|
|
69
|
+
SseAlgorithm: "AES256" | "aws:kms";
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.LogSource`.
|
|
73
|
+
* CloudWatch Logs data source to associate with the S3 Table Integration
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html}
|
|
75
|
+
*/
|
|
76
|
+
export type LogSource = {
|
|
77
|
+
/**
|
|
78
|
+
* The name of the CloudWatch Logs data source
|
|
79
|
+
* @minLength `1`
|
|
80
|
+
* @maxLength `256`
|
|
81
|
+
*/
|
|
82
|
+
Name: string;
|
|
83
|
+
/**
|
|
84
|
+
* The type of the CloudWatch Logs data source
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `256`
|
|
87
|
+
*/
|
|
88
|
+
Type: string;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.Tag`.
|
|
92
|
+
* A key-value pair to associate with a resource
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-tag.html}
|
|
94
|
+
*/
|
|
95
|
+
export type Tag = {
|
|
96
|
+
/**
|
|
97
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
98
|
+
* @minLength `1`
|
|
99
|
+
* @maxLength `128`
|
|
100
|
+
*/
|
|
101
|
+
Key: string;
|
|
102
|
+
/**
|
|
103
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
104
|
+
* @minLength `0`
|
|
105
|
+
* @maxLength `256`
|
|
106
|
+
*/
|
|
107
|
+
Value: string;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* Resource type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
|
|
111
|
+
* Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
|
|
113
|
+
*/
|
|
114
|
+
export declare class ObservabilityAdminS3TableIntegration extends $Resource<"AWS::ObservabilityAdmin::S3TableIntegration", ObservabilityAdminS3TableIntegrationProperties, ObservabilityAdminS3TableIntegrationAttributes> {
|
|
115
|
+
static readonly Type = "AWS::ObservabilityAdmin::S3TableIntegration";
|
|
116
|
+
constructor(logicalId: string, properties: ObservabilityAdminS3TableIntegrationProperties, options?: $ResourceOptions);
|
|
117
|
+
}
|
|
118
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-S3TableIntegration.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::ObservabilityAdmin::S3TableIntegration`.
|
|
4
|
+
* Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
|
|
6
|
+
*/
|
|
7
|
+
export class ObservabilityAdminS3TableIntegration extends $Resource {
|
|
8
|
+
static Type = "AWS::ObservabilityAdmin::S3TableIntegration";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, ObservabilityAdminS3TableIntegration.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-S3TableIntegration.js.map
|