@awboost/cfn-resource-types 0.1.491 → 0.1.492

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,109 @@
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::Connect::DataTable
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
6
+ */
7
+ export type ConnectDataTableProperties = {
8
+ /**
9
+ * The description of the Data Table.
10
+ * @minLength `0`
11
+ * @maxLength `250`
12
+ * @pattern `^[\P{C}
13
+ ]+$`
14
+ */
15
+ Description?: string;
16
+ /**
17
+ * The identifier of the Amazon Connect instance.
18
+ * @minLength `1`
19
+ * @maxLength `100`
20
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
21
+ */
22
+ InstanceArn?: string;
23
+ /**
24
+ * The name of the Data Table
25
+ * @minLength `1`
26
+ * @maxLength `128`
27
+ * @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
28
+ */
29
+ Name?: string;
30
+ /**
31
+ * The status of the Data Table
32
+ */
33
+ Status?: "PUBLISHED";
34
+ /**
35
+ * One or more tags.
36
+ * @maxLength `50`
37
+ */
38
+ Tags?: Tag[];
39
+ /**
40
+ * The time zone of the Data Table
41
+ */
42
+ TimeZone?: string;
43
+ /**
44
+ * The value lock level of the Data Table
45
+ */
46
+ ValueLockLevel?: "NONE";
47
+ };
48
+ /**
49
+ * Attribute type definition for `AWS::Connect::DataTable`.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#aws-resource-connect-datatable-return-values}
51
+ */
52
+ export type ConnectDataTableAttributes = {
53
+ /**
54
+ * The arn of the Data Table
55
+ * @minLength `1`
56
+ * @maxLength `2048`
57
+ */
58
+ Arn: string;
59
+ /**
60
+ * The creation time of the Data Table
61
+ */
62
+ CreatedTime: number;
63
+ /**
64
+ * Last modified region.
65
+ * @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
66
+ */
67
+ LastModifiedRegion: string;
68
+ /**
69
+ * Last modified time.
70
+ */
71
+ LastModifiedTime: number;
72
+ /**
73
+ * The lock version of the Data Table
74
+ */
75
+ LockVersion: {
76
+ /**
77
+ * The data table for the lock version
78
+ */
79
+ DataTable: string;
80
+ };
81
+ };
82
+ /**
83
+ * Type definition for `AWS::Connect::DataTable.Tag`.
84
+ * A key-value pair to associate with a resource.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatable-tag.html}
86
+ */
87
+ export type Tag = {
88
+ /**
89
+ * 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 -.
90
+ * @minLength `1`
91
+ * @maxLength `128`
92
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
93
+ */
94
+ Key: string;
95
+ /**
96
+ * The value for the tag. You can specify a value that is maximum of 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 -.
97
+ * @maxLength `256`
98
+ */
99
+ Value: string;
100
+ };
101
+ /**
102
+ * Resource Type definition for AWS::Connect::DataTable
103
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
104
+ */
105
+ export declare class ConnectDataTable extends $Resource<"AWS::Connect::DataTable", ConnectDataTableProperties, ConnectDataTableAttributes> {
106
+ static readonly Type = "AWS::Connect::DataTable";
107
+ constructor(logicalId: string, properties: ConnectDataTableProperties, options?: $ResourceOptions);
108
+ }
109
+ //# sourceMappingURL=AWS-Connect-DataTable.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::Connect::DataTable
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
5
+ */
6
+ export class ConnectDataTable extends $Resource {
7
+ static Type = "AWS::Connect::DataTable";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectDataTable.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-DataTable.js.map
@@ -0,0 +1,93 @@
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::Connect::DataTableAttribute
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
6
+ */
7
+ export type ConnectDataTableAttributeProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `2048`
11
+ */
12
+ DataTableArn?: string;
13
+ /**
14
+ * @minLength `0`
15
+ * @maxLength `250`
16
+ * @pattern `^[\P{C}
17
+ ]+$`
18
+ */
19
+ Description?: string;
20
+ /**
21
+ * @minLength `1`
22
+ * @maxLength `100`
23
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
24
+ */
25
+ InstanceArn?: string;
26
+ /**
27
+ * @minLength `1`
28
+ * @maxLength `128`
29
+ * @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
30
+ */
31
+ Name?: string;
32
+ Primary?: boolean;
33
+ Validation?: {
34
+ Enum?: {
35
+ Strict?: boolean;
36
+ Values?: string[];
37
+ };
38
+ ExclusiveMaximum?: number;
39
+ ExclusiveMinimum?: number;
40
+ /**
41
+ * @min `0`
42
+ */
43
+ MaxLength?: number;
44
+ /**
45
+ * @min `0`
46
+ */
47
+ MaxValues?: number;
48
+ Maximum?: number;
49
+ /**
50
+ * @min `0`
51
+ */
52
+ MinLength?: number;
53
+ /**
54
+ * @min `0`
55
+ */
56
+ MinValues?: number;
57
+ Minimum?: number;
58
+ /**
59
+ * @min `0`
60
+ */
61
+ MultipleOf?: number;
62
+ };
63
+ ValueType?: "TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST";
64
+ };
65
+ /**
66
+ * Attribute type definition for `AWS::Connect::DataTableAttribute`.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#aws-resource-connect-datatableattribute-return-values}
68
+ */
69
+ export type ConnectDataTableAttributeAttributes = {
70
+ /**
71
+ * @minLength `1`
72
+ * @maxLength `256`
73
+ */
74
+ AttributeId: string;
75
+ /**
76
+ * @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
77
+ */
78
+ LastModifiedRegion: string;
79
+ LastModifiedTime: number;
80
+ LockVersion: {
81
+ Attribute: string;
82
+ DataTable: string;
83
+ };
84
+ };
85
+ /**
86
+ * Resource Type definition for AWS::Connect::DataTableAttribute
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
88
+ */
89
+ export declare class ConnectDataTableAttribute extends $Resource<"AWS::Connect::DataTableAttribute", ConnectDataTableAttributeProperties, ConnectDataTableAttributeAttributes> {
90
+ static readonly Type = "AWS::Connect::DataTableAttribute";
91
+ constructor(logicalId: string, properties: ConnectDataTableAttributeProperties, options?: $ResourceOptions);
92
+ }
93
+ //# sourceMappingURL=AWS-Connect-DataTableAttribute.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::Connect::DataTableAttribute
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
5
+ */
6
+ export class ConnectDataTableAttribute extends $Resource {
7
+ static Type = "AWS::Connect::DataTableAttribute";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectDataTableAttribute.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-DataTableAttribute.js.map
@@ -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 refId to control failure propagation boundary.
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
- * The list of operands that compose the condition. Each operand represents a specific criteria to be evaluated.
118
+ * Operands of the enablement condition.
111
119
  * @minLength `1`
112
120
  */
113
121
  Operands: EvaluationFormItemEnablementConditionOperand[];
114
122
  /**
115
- * The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
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
- * A direct comparison expression that evaluates a form item's value against specified criteria.
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
- * Defines the enablement status to be applied when the specified condition is met.
145
+ * An enablement action that if condition is satisfied.
136
146
  */
137
147
  Action: "DISABLE" | "ENABLE";
138
148
  /**
139
- * Specifies the logical condition that determines when to apply the enablement rules.
149
+ * A condition for item enablement configuration.
140
150
  */
141
151
  Condition: EvaluationFormItemEnablementCondition;
142
152
  /**
143
- * Specifies the default enablement status to be applied when the condition is not satisfied.
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
- * Specifies the comparison method to determine if the source value matches any of the specified values.
164
+ * A comparator to be used against list of values.
154
165
  */
155
166
  Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
156
167
  /**
157
- * Identifies the form item whose value will be evaluated in the expression.
168
+ * A source item of enablement expression.
158
169
  */
159
170
  Source: EvaluationFormItemEnablementSource;
160
171
  /**
161
- * The list of possible values to compare against the source form item's value.
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
- * The identifier to reference the item.
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
- * The type of the source entity.
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
- * The reference id of the source entity value.
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
- * Type of the source entity value.
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 type of the answer source
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
- * The source of automation answer of the question.
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
- * Specifies how the question can be automatically answered.
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`.
@@ -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
@@ -0,0 +1,162 @@
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::TelemetryPipelines
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
6
+ */
7
+ export type ObservabilityAdminTelemetryPipelinesProperties = {
8
+ Configuration: TelemetryPipelineConfiguration;
9
+ /**
10
+ * @minLength `3`
11
+ * @maxLength `28`
12
+ * @pattern `[a-z][a-z0-9\-]+`
13
+ */
14
+ Name?: string;
15
+ /**
16
+ * An array of key-value pairs to apply to this resource
17
+ */
18
+ Tags?: Tag[];
19
+ };
20
+ /**
21
+ * Attribute type definition for `AWS::ObservabilityAdmin::TelemetryPipelines`.
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#aws-resource-observabilityadmin-telemetrypipelines-return-values}
23
+ */
24
+ export type ObservabilityAdminTelemetryPipelinesAttributes = {
25
+ /**
26
+ * @minLength `1`
27
+ * @maxLength `1011`
28
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
29
+ */
30
+ Arn: string;
31
+ Pipeline: {
32
+ /**
33
+ * @minLength `1`
34
+ * @maxLength `1011`
35
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
36
+ */
37
+ Arn: string;
38
+ Configuration: {
39
+ /**
40
+ * @minLength `1`
41
+ * @maxLength `24000`
42
+ */
43
+ Body: string;
44
+ };
45
+ CreatedTimeStamp: number;
46
+ LastUpdateTimeStamp: number;
47
+ /**
48
+ * @minLength `3`
49
+ * @maxLength `28`
50
+ * @pattern `[a-z][a-z0-9\-]+`
51
+ */
52
+ Name: string;
53
+ Status: TelemetryPipelineStatus;
54
+ StatusReason: {
55
+ Description: string;
56
+ };
57
+ /**
58
+ * An array of key-value pairs to apply to this resource
59
+ */
60
+ Tags: {
61
+ /**
62
+ * 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 -.
63
+ * @minLength `1`
64
+ * @maxLength `128`
65
+ */
66
+ Key: string;
67
+ /**
68
+ * 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 -.
69
+ * @minLength `0`
70
+ * @maxLength `256`
71
+ */
72
+ Value: string;
73
+ }[];
74
+ };
75
+ /**
76
+ * @minLength `1`
77
+ * @maxLength `512`
78
+ */
79
+ PipelineIdentifier: string;
80
+ Status: TelemetryPipelineStatus;
81
+ StatusReason: {
82
+ Description: string;
83
+ };
84
+ };
85
+ /**
86
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.Tag`.
87
+ * A key-value pair to associate with a resource
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-tag.html}
89
+ */
90
+ export type Tag = {
91
+ /**
92
+ * 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 -.
93
+ * @minLength `1`
94
+ * @maxLength `128`
95
+ */
96
+ Key: string;
97
+ /**
98
+ * 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 -.
99
+ * @minLength `0`
100
+ * @maxLength `256`
101
+ */
102
+ Value: string;
103
+ };
104
+ /**
105
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipeline`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipeline.html}
107
+ */
108
+ export type TelemetryPipeline = {
109
+ /**
110
+ * @minLength `1`
111
+ * @maxLength `1011`
112
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
113
+ */
114
+ Arn?: string;
115
+ Configuration?: TelemetryPipelineConfiguration;
116
+ CreatedTimeStamp?: number;
117
+ LastUpdateTimeStamp?: number;
118
+ /**
119
+ * @minLength `3`
120
+ * @maxLength `28`
121
+ * @pattern `[a-z][a-z0-9\-]+`
122
+ */
123
+ Name?: string;
124
+ Status?: TelemetryPipelineStatus;
125
+ StatusReason?: TelemetryPipelineStatusReason;
126
+ /**
127
+ * An array of key-value pairs to apply to this resource
128
+ */
129
+ Tags?: Tag[];
130
+ };
131
+ /**
132
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineConfiguration`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelineconfiguration.html}
134
+ */
135
+ export type TelemetryPipelineConfiguration = {
136
+ /**
137
+ * @minLength `1`
138
+ * @maxLength `24000`
139
+ */
140
+ Body: string;
141
+ };
142
+ /**
143
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatus`.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatus.html}
145
+ */
146
+ export type TelemetryPipelineStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED";
147
+ /**
148
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatusReason`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatusreason.html}
150
+ */
151
+ export type TelemetryPipelineStatusReason = {
152
+ Description?: string;
153
+ };
154
+ /**
155
+ * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
157
+ */
158
+ export declare class ObservabilityAdminTelemetryPipelines extends $Resource<"AWS::ObservabilityAdmin::TelemetryPipelines", ObservabilityAdminTelemetryPipelinesProperties, ObservabilityAdminTelemetryPipelinesAttributes> {
159
+ static readonly Type = "AWS::ObservabilityAdmin::TelemetryPipelines";
160
+ constructor(logicalId: string, properties: ObservabilityAdminTelemetryPipelinesProperties, options?: $ResourceOptions);
161
+ }
162
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryPipelines.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::ObservabilityAdmin::TelemetryPipelines
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
5
+ */
6
+ export class ObservabilityAdminTelemetryPipelines extends $Resource {
7
+ static Type = "AWS::ObservabilityAdmin::TelemetryPipelines";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ObservabilityAdminTelemetryPipelines.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryPipelines.js.map
@@ -0,0 +1,141 @@
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 schema for AWS::SecurityHub::ConnectorV2
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
6
+ */
7
+ export type SecurityHubConnectorV2Properties = {
8
+ /**
9
+ * A description of the connector
10
+ * @minLength `0`
11
+ * @maxLength `256`
12
+ * @pattern `.*\S.*`
13
+ */
14
+ Description?: string;
15
+ /**
16
+ * The ARN of KMS key used for the connector
17
+ * @minLength `20`
18
+ * @maxLength `2048`
19
+ * @pattern `.*\S.*`
20
+ */
21
+ KmsKeyArn?: string;
22
+ /**
23
+ * The name of the connector
24
+ * @minLength `1`
25
+ * @maxLength `64`
26
+ * @pattern `.*\S.*`
27
+ */
28
+ Name: string;
29
+ /**
30
+ * The provider configuration of the connector
31
+ */
32
+ Provider: Provider;
33
+ /**
34
+ * A key-value pair to associate with a resource.
35
+ */
36
+ Tags?: Tags;
37
+ };
38
+ /**
39
+ * Attribute type definition for `AWS::SecurityHub::ConnectorV2`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#aws-resource-securityhub-connectorv2-return-values}
41
+ */
42
+ export type SecurityHubConnectorV2Attributes = {
43
+ /**
44
+ * The ARN of the connector
45
+ * @pattern `^arn:aws\S*:securityhub:[a-z0-9-]+:[0-9]{12}:connectorv2/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
46
+ */
47
+ ConnectorArn: string;
48
+ /**
49
+ * The ID of the connector
50
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
51
+ */
52
+ ConnectorId: string;
53
+ /**
54
+ * The status of the connector
55
+ */
56
+ ConnectorStatus: "CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION";
57
+ /**
58
+ * The timestamp formatted in ISO8601
59
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
60
+ */
61
+ CreatedAt: string;
62
+ /**
63
+ * The timestamp formatted in ISO8601
64
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
65
+ */
66
+ LastCheckedAt: string;
67
+ /**
68
+ * The timestamp formatted in ISO8601
69
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
70
+ */
71
+ LastUpdatedAt: string;
72
+ /**
73
+ * The message of the connector status change
74
+ */
75
+ Message: string;
76
+ };
77
+ /**
78
+ * Type definition for `AWS::SecurityHub::ConnectorV2.AuthStatus`.
79
+ * The auth status of the connector
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-authstatus.html}
81
+ */
82
+ export type AuthStatus = "ACTIVE" | "FAILED";
83
+ /**
84
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Provider`.
85
+ * The provider configuration of the connector
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-provider.html}
87
+ */
88
+ export type Provider = {
89
+ JiraCloud: {
90
+ /**
91
+ * The auth status of the connector
92
+ */
93
+ AuthStatus?: AuthStatus;
94
+ /**
95
+ * The authUrl of the JiraCloud connector
96
+ * @pattern `.*\S.*`
97
+ */
98
+ AuthUrl?: string;
99
+ CloudId?: string;
100
+ Domain?: string;
101
+ /**
102
+ * @minLength `2`
103
+ * @maxLength `10`
104
+ */
105
+ ProjectKey: string;
106
+ };
107
+ } | {
108
+ ServiceNow: {
109
+ /**
110
+ * The auth status of the connector
111
+ */
112
+ AuthStatus?: AuthStatus;
113
+ /**
114
+ * @minLength `1`
115
+ * @maxLength `128`
116
+ */
117
+ InstanceName: string;
118
+ /**
119
+ * The ARN of secrets manager containing ClientId and ClientSecret
120
+ * @minLength `20`
121
+ * @maxLength `2048`
122
+ * @pattern `.*\S.*`
123
+ */
124
+ SecretArn: string;
125
+ };
126
+ };
127
+ /**
128
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Tags`.
129
+ * A key-value pair to associate with a resource.
130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-tags.html}
131
+ */
132
+ export type Tags = Record<string, string>;
133
+ /**
134
+ * Resource schema for AWS::SecurityHub::ConnectorV2
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
136
+ */
137
+ export declare class SecurityHubConnectorV2 extends $Resource<"AWS::SecurityHub::ConnectorV2", SecurityHubConnectorV2Properties, SecurityHubConnectorV2Attributes> {
138
+ static readonly Type = "AWS::SecurityHub::ConnectorV2";
139
+ constructor(logicalId: string, properties: SecurityHubConnectorV2Properties, options?: $ResourceOptions);
140
+ }
141
+ //# sourceMappingURL=AWS-SecurityHub-ConnectorV2.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource schema for AWS::SecurityHub::ConnectorV2
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
5
+ */
6
+ export class SecurityHubConnectorV2 extends $Resource {
7
+ static Type = "AWS::SecurityHub::ConnectorV2";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SecurityHubConnectorV2.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SecurityHub-ConnectorV2.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.491",
3
+ "version": "0.1.492",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },