@awboost/cfn-resource-types 0.1.96 → 0.1.98
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-Bedrock-Agent.d.ts +22 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +98 -62
- package/lib/AWS-Connect-EvaluationForm.js +2 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +3 -3
- package/lib/AWS-EKS-Cluster.d.ts +4 -0
- package/lib/AWS-EMRServerless-Application.d.ts +6 -0
- package/lib/AWS-GuardDuty-Filter.d.ts +2 -2
- package/lib/AWS-KinesisAnalyticsV2-Application.d.ts +15 -0
- package/lib/AWS-RDS-DBCluster.d.ts +4 -0
- package/lib/AWS-SES-ConfigurationSetEventDestination.d.ts +17 -0
- package/lib/AWS-Signer-ProfilePermission.d.ts +3 -0
- package/lib/AWS-Signer-SigningProfile.d.ts +4 -1
- package/package.json +1 -1
|
@@ -43,6 +43,10 @@ export type BedrockAgentProperties = {
|
|
|
43
43
|
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+)$`
|
|
44
44
|
*/
|
|
45
45
|
FoundationModel?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Configuration for a guardrail.
|
|
48
|
+
*/
|
|
49
|
+
GuardrailConfiguration?: GuardrailConfiguration;
|
|
46
50
|
/**
|
|
47
51
|
* Max Session Time.
|
|
48
52
|
* @min `60`
|
|
@@ -287,6 +291,24 @@ export type FunctionSchema = {
|
|
|
287
291
|
*/
|
|
288
292
|
Functions: Function[];
|
|
289
293
|
};
|
|
294
|
+
/**
|
|
295
|
+
* Type definition for `AWS::Bedrock::Agent.GuardrailConfiguration`.
|
|
296
|
+
* Configuration for a guardrail.
|
|
297
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-guardrailconfiguration.html}
|
|
298
|
+
*/
|
|
299
|
+
export type GuardrailConfiguration = {
|
|
300
|
+
/**
|
|
301
|
+
* Identifier for the guardrail, could be the id or the arn
|
|
302
|
+
* @maxLength `2048`
|
|
303
|
+
* @pattern `^(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))$`
|
|
304
|
+
*/
|
|
305
|
+
GuardrailIdentifier?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Version of the guardrail
|
|
308
|
+
* @pattern `^(([0-9]{1,8})|(DRAFT))$`
|
|
309
|
+
*/
|
|
310
|
+
GuardrailVersion?: string;
|
|
311
|
+
};
|
|
290
312
|
/**
|
|
291
313
|
* Type definition for `AWS::Bedrock::Agent.InferenceConfiguration`.
|
|
292
314
|
* Configuration for inference in prompt configuration
|
|
@@ -1,41 +1,46 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for `AWS::Connect::EvaluationForm`.
|
|
5
|
+
* Creates an evaluation form for the specified CON instance.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ConnectEvaluationFormProperties = {
|
|
8
9
|
/**
|
|
9
10
|
* The description of the evaluation form.
|
|
11
|
+
*Length Constraints*: Minimum length of 0. Maximum length of 1024.
|
|
10
12
|
* @maxLength `1024`
|
|
11
13
|
*/
|
|
12
14
|
Description?: string;
|
|
13
15
|
/**
|
|
14
|
-
* The
|
|
16
|
+
* The identifier of the Amazon Connect instance.
|
|
15
17
|
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
|
16
18
|
*/
|
|
17
19
|
InstanceArn: string;
|
|
18
20
|
/**
|
|
19
|
-
*
|
|
21
|
+
* Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
|
|
22
|
+
*Minimum size*: 1
|
|
23
|
+
*Maximum size*: 100
|
|
20
24
|
* @minLength `1`
|
|
21
25
|
* @maxLength `200`
|
|
22
26
|
*/
|
|
23
27
|
Items: EvaluationFormBaseItem[];
|
|
24
28
|
/**
|
|
25
|
-
*
|
|
29
|
+
* A scoring strategy of the evaluation form.
|
|
26
30
|
*/
|
|
27
31
|
ScoringStrategy?: ScoringStrategy;
|
|
28
32
|
/**
|
|
29
33
|
* The status of the evaluation form.
|
|
34
|
+
*Allowed values*: ``DRAFT`` | ``ACTIVE``
|
|
30
35
|
*/
|
|
31
36
|
Status: "DRAFT" | "ACTIVE";
|
|
32
37
|
/**
|
|
33
|
-
*
|
|
38
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
34
39
|
* @maxLength `50`
|
|
35
40
|
*/
|
|
36
41
|
Tags?: Tag[];
|
|
37
42
|
/**
|
|
38
|
-
*
|
|
43
|
+
* A title of the evaluation form.
|
|
39
44
|
* @minLength `1`
|
|
40
45
|
* @maxLength `128`
|
|
41
46
|
*/
|
|
@@ -47,68 +52,69 @@ export type ConnectEvaluationFormProperties = {
|
|
|
47
52
|
*/
|
|
48
53
|
export type ConnectEvaluationFormAttributes = {
|
|
49
54
|
/**
|
|
50
|
-
* The Amazon Resource Name (ARN) for the evaluation form.
|
|
51
55
|
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*evaluation-form/[-a-zA-Z0-9]*$`
|
|
52
56
|
*/
|
|
53
57
|
EvaluationFormArn: string;
|
|
54
58
|
};
|
|
55
59
|
/**
|
|
56
60
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormBaseItem`.
|
|
57
|
-
*
|
|
61
|
+
* An item at the root level. All items must be sections.
|
|
58
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformbaseitem.html}
|
|
59
63
|
*/
|
|
60
64
|
export type EvaluationFormBaseItem = {
|
|
61
65
|
/**
|
|
62
|
-
*
|
|
66
|
+
* A subsection or inner section of an item.
|
|
63
67
|
*/
|
|
64
68
|
Section: EvaluationFormSection;
|
|
65
69
|
};
|
|
66
70
|
/**
|
|
67
71
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItem`.
|
|
68
|
-
*
|
|
72
|
+
* Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
|
|
69
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitem.html}
|
|
70
74
|
*/
|
|
71
75
|
export type EvaluationFormItem = {
|
|
72
76
|
/**
|
|
73
|
-
* The
|
|
77
|
+
* The information of the question.
|
|
74
78
|
*/
|
|
75
79
|
Question?: EvaluationFormQuestion;
|
|
76
80
|
/**
|
|
77
|
-
* The
|
|
81
|
+
* The information of the section.
|
|
78
82
|
*/
|
|
79
83
|
Section?: EvaluationFormSection;
|
|
80
84
|
};
|
|
81
85
|
/**
|
|
82
86
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation`.
|
|
83
|
-
*
|
|
87
|
+
* Information about the automation configuration in numeric questions.
|
|
84
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
|
|
85
89
|
*/
|
|
86
90
|
export type EvaluationFormNumericQuestionAutomation = {
|
|
87
91
|
/**
|
|
88
|
-
* The
|
|
92
|
+
* The property value of the automation.
|
|
89
93
|
*/
|
|
90
94
|
PropertyValue: NumericQuestionPropertyValueAutomation;
|
|
91
95
|
};
|
|
92
96
|
/**
|
|
93
97
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionOption`.
|
|
94
|
-
*
|
|
98
|
+
* Information about the option range used for scoring in numeric questions.
|
|
95
99
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.html}
|
|
96
100
|
*/
|
|
97
101
|
export type EvaluationFormNumericQuestionOption = {
|
|
98
102
|
/**
|
|
99
|
-
* The flag to mark the option as automatic fail.
|
|
103
|
+
* The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
|
|
100
104
|
*/
|
|
101
105
|
AutomaticFail?: boolean;
|
|
102
106
|
/**
|
|
103
|
-
* The maximum value of the option
|
|
107
|
+
* The maximum answer value of the range option.
|
|
104
108
|
*/
|
|
105
109
|
MaxValue: number;
|
|
106
110
|
/**
|
|
107
|
-
* The minimum value of the option
|
|
111
|
+
* The minimum answer value of the range option.
|
|
108
112
|
*/
|
|
109
113
|
MinValue: number;
|
|
110
114
|
/**
|
|
111
|
-
* The score
|
|
115
|
+
* The score assigned to answer values within the range option.
|
|
116
|
+
*Minimum*: 0
|
|
117
|
+
*Maximum*: 10
|
|
112
118
|
* @min `0`
|
|
113
119
|
* @max `10`
|
|
114
120
|
*/
|
|
@@ -116,24 +122,24 @@ export type EvaluationFormNumericQuestionOption = {
|
|
|
116
122
|
};
|
|
117
123
|
/**
|
|
118
124
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionProperties`.
|
|
119
|
-
*
|
|
125
|
+
* Information about properties for a numeric question in an evaluation form.
|
|
120
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionproperties.html}
|
|
121
127
|
*/
|
|
122
128
|
export type EvaluationFormNumericQuestionProperties = {
|
|
123
129
|
/**
|
|
124
|
-
* The automation properties
|
|
130
|
+
* The automation properties of the numeric question.
|
|
125
131
|
*/
|
|
126
132
|
Automation?: EvaluationFormNumericQuestionAutomation;
|
|
127
133
|
/**
|
|
128
|
-
* The maximum value
|
|
134
|
+
* The maximum answer value.
|
|
129
135
|
*/
|
|
130
136
|
MaxValue: number;
|
|
131
137
|
/**
|
|
132
|
-
* The minimum value
|
|
138
|
+
* The minimum answer value.
|
|
133
139
|
*/
|
|
134
140
|
MinValue: number;
|
|
135
141
|
/**
|
|
136
|
-
* The
|
|
142
|
+
* The scoring options of the numeric question.
|
|
137
143
|
* @minLength `1`
|
|
138
144
|
* @maxLength `10`
|
|
139
145
|
*/
|
|
@@ -141,12 +147,13 @@ export type EvaluationFormNumericQuestionProperties = {
|
|
|
141
147
|
};
|
|
142
148
|
/**
|
|
143
149
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestion`.
|
|
144
|
-
*
|
|
150
|
+
* Information about a question from an evaluation form.
|
|
145
151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
|
|
146
152
|
*/
|
|
147
153
|
export type EvaluationFormQuestion = {
|
|
148
154
|
/**
|
|
149
|
-
* The instructions
|
|
155
|
+
* The instructions of the section.
|
|
156
|
+
*Length Constraints*: Minimum length of 0. Maximum length of 1024.
|
|
150
157
|
* @maxLength `1024`
|
|
151
158
|
*/
|
|
152
159
|
Instructions?: string;
|
|
@@ -156,25 +163,30 @@ export type EvaluationFormQuestion = {
|
|
|
156
163
|
NotApplicableEnabled?: boolean;
|
|
157
164
|
/**
|
|
158
165
|
* The type of the question.
|
|
166
|
+
*Allowed values*: ``NUMERIC`` | ``SINGLESELECT`` | ``TEXT``
|
|
159
167
|
*/
|
|
160
168
|
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT";
|
|
161
169
|
/**
|
|
162
|
-
* The properties of the question
|
|
170
|
+
* The properties of the type of question. Text questions do not have to define question type properties.
|
|
163
171
|
*/
|
|
164
172
|
QuestionTypeProperties?: EvaluationFormQuestionTypeProperties;
|
|
165
173
|
/**
|
|
166
|
-
* The identifier
|
|
174
|
+
* The identifier of the question. An identifier must be unique within the evaluation form.
|
|
175
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 40.
|
|
167
176
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
168
177
|
*/
|
|
169
178
|
RefId: string;
|
|
170
179
|
/**
|
|
171
180
|
* The title of the question.
|
|
181
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 350.
|
|
172
182
|
* @minLength `1`
|
|
173
183
|
* @maxLength `350`
|
|
174
184
|
*/
|
|
175
185
|
Title: string;
|
|
176
186
|
/**
|
|
177
|
-
* The
|
|
187
|
+
* The scoring weight of the section.
|
|
188
|
+
*Minimum*: 0
|
|
189
|
+
*Maximum*: 100
|
|
178
190
|
* @min `0`
|
|
179
191
|
* @max `100`
|
|
180
192
|
*/
|
|
@@ -182,7 +194,7 @@ export type EvaluationFormQuestion = {
|
|
|
182
194
|
};
|
|
183
195
|
/**
|
|
184
196
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionTypeProperties`.
|
|
185
|
-
* The properties
|
|
197
|
+
* Information about properties for a question in an evaluation form. The question type properties must be either for a numeric question or a single select question.
|
|
186
198
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
|
|
187
199
|
*/
|
|
188
200
|
export type EvaluationFormQuestionTypeProperties = {
|
|
@@ -191,40 +203,45 @@ export type EvaluationFormQuestionTypeProperties = {
|
|
|
191
203
|
*/
|
|
192
204
|
Numeric?: EvaluationFormNumericQuestionProperties;
|
|
193
205
|
/**
|
|
194
|
-
* The properties of the
|
|
206
|
+
* The properties of the numeric question.
|
|
195
207
|
*/
|
|
196
208
|
SingleSelect?: EvaluationFormSingleSelectQuestionProperties;
|
|
197
209
|
};
|
|
198
210
|
/**
|
|
199
211
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSection`.
|
|
200
|
-
*
|
|
212
|
+
* Information about a section from an evaluation form. A section can contain sections and/or questions. Evaluation forms can only contain sections and subsections (two level nesting).
|
|
201
213
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsection.html}
|
|
202
214
|
*/
|
|
203
215
|
export type EvaluationFormSection = {
|
|
204
216
|
/**
|
|
205
|
-
* The instructions
|
|
217
|
+
* The instructions of the section.
|
|
206
218
|
* @maxLength `1024`
|
|
207
219
|
*/
|
|
208
220
|
Instructions?: string;
|
|
209
221
|
/**
|
|
210
|
-
* The
|
|
222
|
+
* The items of the section.
|
|
223
|
+
*Minimum*: 1
|
|
211
224
|
* @minLength `1`
|
|
212
225
|
* @maxLength `200`
|
|
213
226
|
*/
|
|
214
227
|
Items?: EvaluationFormItem[];
|
|
215
228
|
/**
|
|
216
|
-
* The identifier
|
|
229
|
+
* The identifier of the section. An identifier must be unique within the evaluation form.
|
|
230
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 40.
|
|
217
231
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
218
232
|
*/
|
|
219
233
|
RefId: string;
|
|
220
234
|
/**
|
|
221
235
|
* The title of the section.
|
|
236
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 128.
|
|
222
237
|
* @minLength `1`
|
|
223
238
|
* @maxLength `128`
|
|
224
239
|
*/
|
|
225
240
|
Title: string;
|
|
226
241
|
/**
|
|
227
|
-
* The
|
|
242
|
+
* The scoring weight of the section.
|
|
243
|
+
*Minimum*: 0
|
|
244
|
+
*Maximum*: 100
|
|
228
245
|
* @min `0`
|
|
229
246
|
* @max `100`
|
|
230
247
|
*/
|
|
@@ -232,17 +249,20 @@ export type EvaluationFormSection = {
|
|
|
232
249
|
};
|
|
233
250
|
/**
|
|
234
251
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomation`.
|
|
235
|
-
*
|
|
252
|
+
* Information about the automation configuration in single select questions. Automation options are evaluated in order, and the first matched option is applied. If no automation option matches, and there is a default option, then the default option is applied.
|
|
236
253
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
|
|
237
254
|
*/
|
|
238
255
|
export type EvaluationFormSingleSelectQuestionAutomation = {
|
|
239
256
|
/**
|
|
240
|
-
* The option
|
|
257
|
+
* The identifier of the default answer option, when none of the automation options match the criteria.
|
|
258
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 40.
|
|
241
259
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
242
260
|
*/
|
|
243
261
|
DefaultOptionRefId?: string;
|
|
244
262
|
/**
|
|
245
|
-
* The
|
|
263
|
+
* The automation options of the single select question.
|
|
264
|
+
*Minimum*: 1
|
|
265
|
+
*Maximum*: 20
|
|
246
266
|
* @minLength `1`
|
|
247
267
|
* @maxLength `20`
|
|
248
268
|
*/
|
|
@@ -250,38 +270,42 @@ export type EvaluationFormSingleSelectQuestionAutomation = {
|
|
|
250
270
|
};
|
|
251
271
|
/**
|
|
252
272
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionAutomationOption`.
|
|
253
|
-
* The automation
|
|
273
|
+
* The automation options of the single select question.
|
|
254
274
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomationoption.html}
|
|
255
275
|
*/
|
|
256
276
|
export type EvaluationFormSingleSelectQuestionAutomationOption = {
|
|
257
277
|
/**
|
|
258
|
-
* The automation option based on
|
|
278
|
+
* The automation option based on a rule category for the single select question.
|
|
259
279
|
*/
|
|
260
280
|
RuleCategory: SingleSelectQuestionRuleCategoryAutomation;
|
|
261
281
|
};
|
|
262
282
|
/**
|
|
263
283
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionOption`.
|
|
264
|
-
*
|
|
284
|
+
* Information about the automation configuration in single select questions.
|
|
265
285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionoption.html}
|
|
266
286
|
*/
|
|
267
287
|
export type EvaluationFormSingleSelectQuestionOption = {
|
|
268
288
|
/**
|
|
269
|
-
* The flag to mark the option as automatic fail.
|
|
289
|
+
* The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
|
|
270
290
|
*/
|
|
271
291
|
AutomaticFail?: boolean;
|
|
272
292
|
/**
|
|
273
|
-
* The identifier
|
|
293
|
+
* The identifier of the answer option. An identifier must be unique within the question.
|
|
294
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 40.
|
|
274
295
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
275
296
|
*/
|
|
276
297
|
RefId: string;
|
|
277
298
|
/**
|
|
278
|
-
* The score
|
|
299
|
+
* The score assigned to the answer option.
|
|
300
|
+
*Minimum*: 0
|
|
301
|
+
*Maximum*: 10
|
|
279
302
|
* @min `0`
|
|
280
303
|
* @max `10`
|
|
281
304
|
*/
|
|
282
305
|
Score?: number;
|
|
283
306
|
/**
|
|
284
|
-
* The title of the option.
|
|
307
|
+
* The title of the answer option.
|
|
308
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 128.
|
|
285
309
|
* @minLength `1`
|
|
286
310
|
* @maxLength `128`
|
|
287
311
|
*/
|
|
@@ -289,20 +313,23 @@ export type EvaluationFormSingleSelectQuestionOption = {
|
|
|
289
313
|
};
|
|
290
314
|
/**
|
|
291
315
|
* Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSingleSelectQuestionProperties`.
|
|
292
|
-
*
|
|
316
|
+
* Information about the options in single select questions.
|
|
293
317
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionproperties.html}
|
|
294
318
|
*/
|
|
295
319
|
export type EvaluationFormSingleSelectQuestionProperties = {
|
|
296
320
|
/**
|
|
297
|
-
* The
|
|
321
|
+
* The display mode of the single select question.
|
|
298
322
|
*/
|
|
299
323
|
Automation?: EvaluationFormSingleSelectQuestionAutomation;
|
|
300
324
|
/**
|
|
301
|
-
* The display mode of the single
|
|
325
|
+
* The display mode of the single select question.
|
|
326
|
+
*Allowed values*: ``DROPDOWN`` | ``RADIO``
|
|
302
327
|
*/
|
|
303
328
|
DisplayAs?: "DROPDOWN" | "RADIO";
|
|
304
329
|
/**
|
|
305
|
-
* The
|
|
330
|
+
* The answer options of the single select question.
|
|
331
|
+
*Minimum*: 2
|
|
332
|
+
*Maximum*: 256
|
|
306
333
|
* @minLength `2`
|
|
307
334
|
* @maxLength `256`
|
|
308
335
|
*/
|
|
@@ -310,48 +337,56 @@ export type EvaluationFormSingleSelectQuestionProperties = {
|
|
|
310
337
|
};
|
|
311
338
|
/**
|
|
312
339
|
* Type definition for `AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation`.
|
|
313
|
-
*
|
|
340
|
+
* Information about the property value used in automation of a numeric questions.
|
|
314
341
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-numericquestionpropertyvalueautomation.html}
|
|
315
342
|
*/
|
|
316
343
|
export type NumericQuestionPropertyValueAutomation = {
|
|
317
344
|
/**
|
|
318
|
-
* The
|
|
345
|
+
* The property label of the automation.
|
|
319
346
|
*/
|
|
320
347
|
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";
|
|
321
348
|
};
|
|
322
349
|
/**
|
|
323
350
|
* Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
|
|
324
|
-
*
|
|
351
|
+
* A scoring strategy of the evaluation form.
|
|
325
352
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-scoringstrategy.html}
|
|
326
353
|
*/
|
|
327
354
|
export type ScoringStrategy = {
|
|
328
355
|
/**
|
|
329
|
-
* The scoring mode.
|
|
356
|
+
* The scoring mode of the evaluation form.
|
|
357
|
+
*Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY``
|
|
330
358
|
*/
|
|
331
359
|
Mode: "QUESTION_ONLY" | "SECTION_ONLY";
|
|
332
360
|
/**
|
|
333
|
-
* The scoring status.
|
|
361
|
+
* The scoring status of the evaluation form.
|
|
362
|
+
*Allowed values*: ``ENABLED`` | ``DISABLED``
|
|
334
363
|
*/
|
|
335
364
|
Status: "ENABLED" | "DISABLED";
|
|
336
365
|
};
|
|
337
366
|
/**
|
|
338
367
|
* Type definition for `AWS::Connect::EvaluationForm.SingleSelectQuestionRuleCategoryAutomation`.
|
|
339
|
-
*
|
|
368
|
+
* Information about the automation option based on a rule category for a single select question.
|
|
369
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 50.
|
|
340
370
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-singleselectquestionrulecategoryautomation.html}
|
|
341
371
|
*/
|
|
342
372
|
export type SingleSelectQuestionRuleCategoryAutomation = {
|
|
343
373
|
/**
|
|
344
|
-
* The category name as defined in Rules.
|
|
374
|
+
* The category name, as defined in Rules.
|
|
375
|
+
*Minimum*: 1
|
|
376
|
+
*Maximum*: 50
|
|
345
377
|
* @minLength `1`
|
|
346
378
|
* @maxLength `50`
|
|
347
379
|
*/
|
|
348
380
|
Category: string;
|
|
349
381
|
/**
|
|
350
|
-
* The automation condition applied
|
|
382
|
+
* The condition to apply for the automation option. If the condition is PRESENT, then the option is applied when the contact data includes the category. Similarly, if the condition is NOT_PRESENT, then the option is applied when the contact data does not include the category.
|
|
383
|
+
*Allowed values*: ``PRESENT`` | ``NOT_PRESENT``
|
|
384
|
+
*Maximum*: 50
|
|
351
385
|
*/
|
|
352
386
|
Condition: "PRESENT" | "NOT_PRESENT";
|
|
353
387
|
/**
|
|
354
|
-
* The
|
|
388
|
+
* The identifier of the answer option. An identifier must be unique within the question.
|
|
389
|
+
*Length Constraints*: Minimum length of 1. Maximum length of 40.
|
|
355
390
|
* @pattern `^[a-zA-Z0-9._-]{1,40}$`
|
|
356
391
|
*/
|
|
357
392
|
OptionRefId: string;
|
|
@@ -363,20 +398,21 @@ export type SingleSelectQuestionRuleCategoryAutomation = {
|
|
|
363
398
|
*/
|
|
364
399
|
export type Tag = {
|
|
365
400
|
/**
|
|
366
|
-
* 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
|
|
401
|
+
* 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 -
|
|
367
402
|
* @minLength `1`
|
|
368
403
|
* @maxLength `128`
|
|
369
404
|
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
370
405
|
*/
|
|
371
406
|
Key: string;
|
|
372
407
|
/**
|
|
373
|
-
* The value for the tag. You can specify a value that
|
|
408
|
+
* 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 -
|
|
374
409
|
* @maxLength `256`
|
|
375
410
|
*/
|
|
376
411
|
Value: string;
|
|
377
412
|
};
|
|
378
413
|
/**
|
|
379
|
-
* Resource
|
|
414
|
+
* Resource type definition for `AWS::Connect::EvaluationForm`.
|
|
415
|
+
* Creates an evaluation form for the specified CON instance.
|
|
380
416
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
|
|
381
417
|
*/
|
|
382
418
|
export declare class ConnectEvaluationForm extends $Resource<"AWS::Connect::EvaluationForm", ConnectEvaluationFormProperties, ConnectEvaluationFormAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::Connect::EvaluationForm`.
|
|
4
|
+
* Creates an evaluation form for the specified CON instance.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ConnectEvaluationForm extends $Resource {
|
|
@@ -903,13 +903,13 @@ export type RepositoryCredentials = {
|
|
|
903
903
|
*/
|
|
904
904
|
export type ResourceRequirement = {
|
|
905
905
|
/**
|
|
906
|
-
* The type of resource to assign to a container.
|
|
906
|
+
* The type of resource to assign to a container.
|
|
907
907
|
*/
|
|
908
908
|
Type: string;
|
|
909
909
|
/**
|
|
910
910
|
* The value for the specified resource type.
|
|
911
|
-
|
|
912
|
-
|
|
911
|
+
When the type is ``GPU``, the value is the number of physical ``GPUs`` the Amazon ECS container agent reserves for the container. The number of GPUs that's reserved for all containers in a task can't exceed the number of available GPUs on the container instance that the task is launched on.
|
|
912
|
+
When the type is ``InferenceAccelerator``, the ``value`` matches the ``deviceName`` for an [InferenceAccelerator](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_InferenceAccelerator.html) specified in a task definition.
|
|
913
913
|
*/
|
|
914
914
|
Value: string;
|
|
915
915
|
};
|
package/lib/AWS-EKS-Cluster.d.ts
CHANGED
|
@@ -10,6 +10,10 @@ export type EKSClusterProperties = {
|
|
|
10
10
|
* An object representing the Access Config to use for the cluster.
|
|
11
11
|
*/
|
|
12
12
|
AccessConfig?: AccessConfig;
|
|
13
|
+
/**
|
|
14
|
+
* Set this value to false to avoid creating the default networking addons when the cluster is created.
|
|
15
|
+
*/
|
|
16
|
+
BootstrapSelfManagedAddons?: boolean;
|
|
13
17
|
EncryptionConfig?: EncryptionConfig[];
|
|
14
18
|
/**
|
|
15
19
|
* The Kubernetes network configuration for the cluster.
|
|
@@ -81,6 +81,7 @@ export type EMRServerlessApplicationAttributes = {
|
|
|
81
81
|
ApplicationId: string;
|
|
82
82
|
/**
|
|
83
83
|
* The Amazon Resource Name (ARN) of the EMR Serverless Application.
|
|
84
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):emr-serverless:.+:(\d{12}):\/applications\/[0-9a-zA-Z]+$`
|
|
84
85
|
*/
|
|
85
86
|
Arn: string;
|
|
86
87
|
};
|
|
@@ -366,6 +367,11 @@ export type WorkerConfiguration = {
|
|
|
366
367
|
* @pattern `^[1-9][0-9]*(\s)?(GB|gb|gB|Gb)$`
|
|
367
368
|
*/
|
|
368
369
|
Disk?: string;
|
|
370
|
+
/**
|
|
371
|
+
* Per worker DiskType resource. Shuffle optimized and Standard are only supported types and specifying diskType is optional
|
|
372
|
+
* @pattern `^(SHUFFLE_OPTIMIZED|[Ss]huffle_[Oo]ptimized|STANDARD|[Ss]tandard)$`
|
|
373
|
+
*/
|
|
374
|
+
DiskType?: string;
|
|
369
375
|
/**
|
|
370
376
|
* Per worker memory resource. GB is the only supported unit and specifying GB is optional.
|
|
371
377
|
* @minLength `1`
|
|
@@ -11,13 +11,13 @@ export type GuardDutyFilterProperties = {
|
|
|
11
11
|
* @minLength `1`
|
|
12
12
|
* @maxLength `300`
|
|
13
13
|
*/
|
|
14
|
-
DetectorId
|
|
14
|
+
DetectorId: string;
|
|
15
15
|
FindingCriteria: FindingCriteria;
|
|
16
16
|
/**
|
|
17
17
|
* @minLength `1`
|
|
18
18
|
* @maxLength `64`
|
|
19
19
|
*/
|
|
20
|
-
Name
|
|
20
|
+
Name: string;
|
|
21
21
|
/**
|
|
22
22
|
* @min `1`
|
|
23
23
|
* @max `100`
|
|
@@ -82,6 +82,10 @@ export type ApplicationConfiguration = {
|
|
|
82
82
|
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
83
83
|
*/
|
|
84
84
|
ApplicationSnapshotConfiguration?: ApplicationSnapshotConfiguration;
|
|
85
|
+
/**
|
|
86
|
+
* Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
|
|
87
|
+
*/
|
|
88
|
+
ApplicationSystemRollbackConfiguration?: ApplicationSystemRollbackConfiguration;
|
|
85
89
|
/**
|
|
86
90
|
* Describes execution properties for a Flink-based Kinesis Data Analytics application.
|
|
87
91
|
*/
|
|
@@ -145,6 +149,17 @@ export type ApplicationSnapshotConfiguration = {
|
|
|
145
149
|
*/
|
|
146
150
|
SnapshotsEnabled: boolean;
|
|
147
151
|
};
|
|
152
|
+
/**
|
|
153
|
+
* Type definition for `AWS::KinesisAnalyticsV2::Application.ApplicationSystemRollbackConfiguration`.
|
|
154
|
+
* Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsystemrollbackconfiguration.html}
|
|
156
|
+
*/
|
|
157
|
+
export type ApplicationSystemRollbackConfiguration = {
|
|
158
|
+
/**
|
|
159
|
+
* Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
|
|
160
|
+
*/
|
|
161
|
+
RollbackEnabled: boolean;
|
|
162
|
+
};
|
|
148
163
|
/**
|
|
149
164
|
* Type definition for `AWS::KinesisAnalyticsV2::Application.CatalogConfiguration`.
|
|
150
165
|
* The configuration parameters for the default Amazon Glue database. You use this database for SQL queries that you write in a Kinesis Data Analytics Studio notebook.
|
|
@@ -94,6 +94,10 @@ export type RDSDBClusterProperties = {
|
|
|
94
94
|
* A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.
|
|
95
95
|
*/
|
|
96
96
|
EnableIAMDatabaseAuthentication?: boolean;
|
|
97
|
+
/**
|
|
98
|
+
* Specifies whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances.
|
|
99
|
+
*/
|
|
100
|
+
EnableLocalWriteForwarding?: boolean;
|
|
97
101
|
/**
|
|
98
102
|
* The name of the database engine to be used for this DB cluster. Valid Values: aurora (for MySQL 5.6-compatible Aurora), aurora-mysql (for MySQL 5.7-compatible Aurora), and aurora-postgresql
|
|
99
103
|
*/
|
|
@@ -57,6 +57,19 @@ export type DimensionConfiguration = {
|
|
|
57
57
|
*/
|
|
58
58
|
DimensionValueSource: string;
|
|
59
59
|
};
|
|
60
|
+
/**
|
|
61
|
+
* Type definition for `AWS::SES::ConfigurationSetEventDestination.EventBridgeDestination`.
|
|
62
|
+
* An object that contains Event bus ARN associated with the event bridge destination.
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventbridgedestination.html}
|
|
64
|
+
*/
|
|
65
|
+
export type EventBridgeDestination = {
|
|
66
|
+
/**
|
|
67
|
+
* @minLength `36`
|
|
68
|
+
* @maxLength `1024`
|
|
69
|
+
* @pattern `^arn:aws[a-z0-9-]*:events:[a-z0-9-]+:\d{12}:event-bus/[^:]+$`
|
|
70
|
+
*/
|
|
71
|
+
EventBusArn: string;
|
|
72
|
+
};
|
|
60
73
|
/**
|
|
61
74
|
* Type definition for `AWS::SES::ConfigurationSetEventDestination.EventDestination`.
|
|
62
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html}
|
|
@@ -70,6 +83,10 @@ export type EventDestination = {
|
|
|
70
83
|
* Sets whether Amazon SES publishes events to this destination when you send an email with the associated configuration set. Set to true to enable publishing to this destination; set to false to prevent publishing to this destination. The default value is false.
|
|
71
84
|
*/
|
|
72
85
|
Enabled?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* An object that contains Event bus ARN associated with the event bridge destination.
|
|
88
|
+
*/
|
|
89
|
+
EventBridgeDestination?: EventBridgeDestination;
|
|
73
90
|
/**
|
|
74
91
|
* An object that contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event destination.
|
|
75
92
|
*/
|
|
@@ -8,6 +8,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
8
8
|
export type SignerProfilePermissionProperties = {
|
|
9
9
|
Action: string;
|
|
10
10
|
Principal: string;
|
|
11
|
+
/**
|
|
12
|
+
* @pattern `^[0-9a-zA-Z_]{2,64}$`
|
|
13
|
+
*/
|
|
11
14
|
ProfileName: string;
|
|
12
15
|
/**
|
|
13
16
|
* @pattern `^[0-9a-zA-Z]{10}$`
|
|
@@ -30,7 +30,10 @@ export type SignerSigningProfileAttributes = {
|
|
|
30
30
|
*/
|
|
31
31
|
Arn: string;
|
|
32
32
|
/**
|
|
33
|
-
* A name for the signing profile. AWS CloudFormation generates a unique physical ID and uses that ID for the signing profile name.
|
|
33
|
+
* A name for the signing profile. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the signing profile name.
|
|
34
|
+
* @minLength `2`
|
|
35
|
+
* @maxLength `64`
|
|
36
|
+
* @pattern `^[0-9a-zA-Z_]$`
|
|
34
37
|
*/
|
|
35
38
|
ProfileName: string;
|
|
36
39
|
/**
|