@propulsionworks/cloudformation 0.1.37 → 0.1.38
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/out/exports/resources.generated/aws-connect-datatable.d.ts +82 -0
- package/out/exports/resources.generated/aws-connect-datatableattribute.d.ts +84 -0
- package/out/exports/resources.generated/aws-connect-datatablerecord.d.ts +55 -0
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +120 -1
- package/out/exports/resources.generated/aws-devopsagent-agentspace.d.ts +56 -0
- package/out/exports/resources.generated/aws-devopsagent-association.d.ts +444 -0
- package/out/exports/resources.generated/aws-gamelift-script.d.ts +1 -1
- package/out/exports/resources.generated/aws-glue-identitycenterconfiguration.d.ts +49 -0
- package/out/exports/resources.generated/aws-iotfleethub-application.d.ts +0 -15
- package/out/exports/resources.generated/aws-lambda-capacityprovider.d.ts +5 -1
- package/out/exports/resources.generated/aws-lambda-function.d.ts +24 -0
- package/out/exports/resources.generated/aws-lambda-version.d.ts +1 -1
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +12 -0
- package/out/exports/resources.generated/aws-medialive-input.d.ts +30 -0
- package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +88 -0
- package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +66 -0
- package/out/exports/resources.generated/aws-s3-accessgrantslocation.d.ts +2 -2
- package/out/exports/resources.generated/aws-s3-storagelens.d.ts +68 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +16 -0
- package/out/exports/resources.generated/aws-s3tables-tablebucket.d.ts +16 -0
- package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +137 -0
- package/package.json +1 -1
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
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 type ConnectDataTable = ResourceDefinitionWithAttributes<"AWS::Connect::DataTable", ConnectDataTableProps, ConnectDataTableAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::Connect::DataTable
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
|
|
10
|
+
*/
|
|
11
|
+
export type ConnectDataTableProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The description of the Data Table.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-description}
|
|
15
|
+
*/
|
|
16
|
+
Description?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The identifier of the Amazon Connect instance.
|
|
19
|
+
* @minLength 1
|
|
20
|
+
* @maxLength 100
|
|
21
|
+
* @pattern ^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-instancearn}
|
|
23
|
+
*/
|
|
24
|
+
InstanceArn?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* The name of the Data Table
|
|
27
|
+
* @minLength 1
|
|
28
|
+
* @maxLength 128
|
|
29
|
+
* @pattern ^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-name}
|
|
31
|
+
*/
|
|
32
|
+
Name?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* The status of the Data Table
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-status}
|
|
36
|
+
*/
|
|
37
|
+
Status?: "PUBLISHED" | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* One or more tags.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-tags}
|
|
41
|
+
*/
|
|
42
|
+
Tags?: Tag[] | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* The time zone of the Data Table
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-timezone}
|
|
46
|
+
*/
|
|
47
|
+
TimeZone?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* The value lock level of the Data Table
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-valuelocklevel}
|
|
51
|
+
*/
|
|
52
|
+
ValueLockLevel?: "NONE" | undefined;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#aws-resource-connect-datatable-return-values}
|
|
56
|
+
*/
|
|
57
|
+
export type ConnectDataTableAttribs = {
|
|
58
|
+
/**
|
|
59
|
+
* The arn of the Data Table
|
|
60
|
+
* @minLength 1
|
|
61
|
+
* @maxLength 2048
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-arn}
|
|
63
|
+
*/
|
|
64
|
+
Arn: string;
|
|
65
|
+
/**
|
|
66
|
+
* A epoch time stamp field used for data table operations.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-createdtime}
|
|
68
|
+
*/
|
|
69
|
+
CreatedTime: number;
|
|
70
|
+
/**
|
|
71
|
+
* Last modified region.
|
|
72
|
+
* @pattern [a-z]{2}(-[a-z]+){1,2}(-[0-9])?
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-lastmodifiedregion}
|
|
74
|
+
*/
|
|
75
|
+
LastModifiedRegion: string;
|
|
76
|
+
/**
|
|
77
|
+
* A epoch time stamp field used for data table operations.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-lastmodifiedtime}
|
|
79
|
+
*/
|
|
80
|
+
LastModifiedTime: number;
|
|
81
|
+
};
|
|
82
|
+
//# sourceMappingURL=aws-connect-datatable.d.ts.map
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
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 type ConnectDataTableAttribute = ResourceDefinitionWithAttributes<"AWS::Connect::DataTableAttribute", ConnectDataTableAttributeProps, ConnectDataTableAttributeAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::Connect::DataTableAttribute
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
|
|
10
|
+
*/
|
|
11
|
+
export type ConnectDataTableAttributeProps = {
|
|
12
|
+
/**
|
|
13
|
+
* @minLength 1
|
|
14
|
+
* @maxLength 2048
|
|
15
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-datatablearn}
|
|
16
|
+
*/
|
|
17
|
+
DataTableArn?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-description}
|
|
20
|
+
*/
|
|
21
|
+
Description?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength 1
|
|
24
|
+
* @maxLength 100
|
|
25
|
+
* @pattern ^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-instancearn}
|
|
27
|
+
*/
|
|
28
|
+
InstanceArn?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* @minLength 1
|
|
31
|
+
* @maxLength 128
|
|
32
|
+
* @pattern ^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-name}
|
|
34
|
+
*/
|
|
35
|
+
Name?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-primary}
|
|
38
|
+
*/
|
|
39
|
+
Primary?: boolean | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-validation}
|
|
42
|
+
*/
|
|
43
|
+
Validation?: {
|
|
44
|
+
Enum?: {
|
|
45
|
+
Strict?: boolean | undefined;
|
|
46
|
+
Values?: string[] | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
ExclusiveMaximum?: number | undefined;
|
|
49
|
+
ExclusiveMinimum?: number | undefined;
|
|
50
|
+
MaxLength?: number | undefined;
|
|
51
|
+
MaxValues?: number | undefined;
|
|
52
|
+
Maximum?: number | undefined;
|
|
53
|
+
MinLength?: number | undefined;
|
|
54
|
+
MinValues?: number | undefined;
|
|
55
|
+
Minimum?: number | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* @min 0
|
|
58
|
+
*/
|
|
59
|
+
MultipleOf?: number | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-valuetype}
|
|
63
|
+
*/
|
|
64
|
+
ValueType?: "TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST" | undefined;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
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 ConnectDataTableAttributeAttribs = {
|
|
70
|
+
/**
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-attributeid}
|
|
72
|
+
*/
|
|
73
|
+
AttributeId: string;
|
|
74
|
+
/**
|
|
75
|
+
* @pattern [a-z]{2}(-[a-z]+){1,2}(-[0-9])?
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-lastmodifiedregion}
|
|
77
|
+
*/
|
|
78
|
+
LastModifiedRegion: string;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#cfn-connect-datatableattribute-lastmodifiedtime}
|
|
81
|
+
*/
|
|
82
|
+
LastModifiedTime: number;
|
|
83
|
+
};
|
|
84
|
+
//# sourceMappingURL=aws-connect-datatableattribute.d.ts.map
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
|
|
4
|
+
*/
|
|
5
|
+
export type ConnectDataTableRecord = ResourceDefinitionWithAttributes<"AWS::Connect::DataTableRecord", ConnectDataTableRecordProps, ConnectDataTableRecordAttribs>;
|
|
6
|
+
/**
|
|
7
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
|
|
8
|
+
*/
|
|
9
|
+
export type ConnectDataTableRecordProps = {
|
|
10
|
+
/**
|
|
11
|
+
* @minLength 1
|
|
12
|
+
* @maxLength 2048
|
|
13
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#cfn-connect-datatablerecord-datatablearn}
|
|
14
|
+
*/
|
|
15
|
+
DataTableArn?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#cfn-connect-datatablerecord-datatablerecord}
|
|
18
|
+
*/
|
|
19
|
+
DataTableRecord?: {
|
|
20
|
+
PrimaryValues?: Value[] | undefined;
|
|
21
|
+
Values: Value[];
|
|
22
|
+
} | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* @minLength 1
|
|
25
|
+
* @maxLength 100
|
|
26
|
+
* @pattern ^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#cfn-connect-datatablerecord-instancearn}
|
|
28
|
+
*/
|
|
29
|
+
InstanceArn?: string | undefined;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#aws-resource-connect-datatablerecord-return-values}
|
|
33
|
+
*/
|
|
34
|
+
export type ConnectDataTableRecordAttribs = {
|
|
35
|
+
/**
|
|
36
|
+
* @minLength 1
|
|
37
|
+
* @maxLength 256
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#cfn-connect-datatablerecord-recordid}
|
|
39
|
+
*/
|
|
40
|
+
RecordId: string;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html}
|
|
44
|
+
*/
|
|
45
|
+
export type Value = {
|
|
46
|
+
/**
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html#cfn-connect-datatablerecord-value-attributeid}
|
|
48
|
+
*/
|
|
49
|
+
AttributeId?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html#cfn-connect-datatablerecord-value-attributevalue}
|
|
52
|
+
*/
|
|
53
|
+
AttributeValue?: string | undefined;
|
|
54
|
+
};
|
|
55
|
+
//# sourceMappingURL=aws-connect-datatablerecord.d.ts.map
|
|
@@ -37,6 +37,10 @@ export type ConnectEvaluationFormProps = {
|
|
|
37
37
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-items}
|
|
38
38
|
*/
|
|
39
39
|
Items: EvaluationFormBaseItem[];
|
|
40
|
+
/**
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-languageconfiguration}
|
|
42
|
+
*/
|
|
43
|
+
LanguageConfiguration?: EvaluationFormLanguageConfiguration | undefined;
|
|
40
44
|
/**
|
|
41
45
|
* A scoring strategy of the evaluation form.
|
|
42
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-scoringstrategy}
|
|
@@ -55,6 +59,10 @@ export type ConnectEvaluationFormProps = {
|
|
|
55
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-tags}
|
|
56
60
|
*/
|
|
57
61
|
Tags?: Tag[] | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-targetconfiguration}
|
|
64
|
+
*/
|
|
65
|
+
TargetConfiguration?: EvaluationFormTargetConfiguration | undefined;
|
|
58
66
|
/**
|
|
59
67
|
* A title of the evaluation form.
|
|
60
68
|
* @minLength 1
|
|
@@ -224,6 +232,81 @@ export type EvaluationFormItemEnablementSourceValue = {
|
|
|
224
232
|
*/
|
|
225
233
|
Type?: "OPTION_REF_ID" | undefined;
|
|
226
234
|
};
|
|
235
|
+
/**
|
|
236
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html}
|
|
237
|
+
*/
|
|
238
|
+
export type EvaluationFormLanguageConfiguration = {
|
|
239
|
+
/**
|
|
240
|
+
* The language of the form
|
|
241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html#cfn-connect-evaluationform-evaluationformlanguageconfiguration-formlanguage}
|
|
242
|
+
*/
|
|
243
|
+
FormLanguage?: "de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR" | undefined;
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html}
|
|
247
|
+
*/
|
|
248
|
+
export type EvaluationFormMultiSelectQuestionAutomation = {
|
|
249
|
+
/**
|
|
250
|
+
* A question automation answer.
|
|
251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html#cfn-connect-evaluationform-evaluationformmultiselectquestionautomation-answersource}
|
|
252
|
+
*/
|
|
253
|
+
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* The list of reference id.
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html#cfn-connect-evaluationform-evaluationformmultiselectquestionautomation-defaultoptionrefids}
|
|
257
|
+
*/
|
|
258
|
+
DefaultOptionRefIds?: string[] | undefined;
|
|
259
|
+
/**
|
|
260
|
+
* The answer options for the automation.
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html#cfn-connect-evaluationform-evaluationformmultiselectquestionautomation-options}
|
|
262
|
+
*/
|
|
263
|
+
Options: EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html}
|
|
267
|
+
*/
|
|
268
|
+
export type EvaluationFormMultiSelectQuestionAutomationOption = {
|
|
269
|
+
/**
|
|
270
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html#cfn-connect-evaluationform-evaluationformmultiselectquestionautomationoption-rulecategory}
|
|
271
|
+
*/
|
|
272
|
+
RuleCategory: MultiSelectQuestionRuleCategoryAutomation;
|
|
273
|
+
};
|
|
274
|
+
/**
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html}
|
|
276
|
+
*/
|
|
277
|
+
export type EvaluationFormMultiSelectQuestionOption = {
|
|
278
|
+
/**
|
|
279
|
+
* The identifier to reference the item.
|
|
280
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html#cfn-connect-evaluationform-evaluationformmultiselectquestionoption-refid}
|
|
281
|
+
*/
|
|
282
|
+
RefId: string;
|
|
283
|
+
/**
|
|
284
|
+
* The title of the option.
|
|
285
|
+
* @minLength 1
|
|
286
|
+
* @maxLength 128
|
|
287
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html#cfn-connect-evaluationform-evaluationformmultiselectquestionoption-text}
|
|
288
|
+
*/
|
|
289
|
+
Text: string;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html}
|
|
293
|
+
*/
|
|
294
|
+
export type EvaluationFormMultiSelectQuestionProperties = {
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-automation}
|
|
297
|
+
*/
|
|
298
|
+
Automation?: EvaluationFormMultiSelectQuestionAutomation | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* The display mode of the multi-select question.
|
|
301
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-displayas}
|
|
302
|
+
*/
|
|
303
|
+
DisplayAs?: "DROPDOWN" | "CHECKBOX" | undefined;
|
|
304
|
+
/**
|
|
305
|
+
* The list of options for the question.
|
|
306
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-options}
|
|
307
|
+
*/
|
|
308
|
+
Options: EvaluationFormMultiSelectQuestionOption[];
|
|
309
|
+
};
|
|
227
310
|
/**
|
|
228
311
|
* Information about the automation configuration in numeric questions.
|
|
229
312
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
|
|
@@ -378,6 +461,10 @@ export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
|
378
461
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
|
|
379
462
|
*/
|
|
380
463
|
export type EvaluationFormQuestionTypeProperties = {
|
|
464
|
+
/**
|
|
465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html#cfn-connect-evaluationform-evaluationformquestiontypeproperties-multiselect}
|
|
466
|
+
*/
|
|
467
|
+
MultiSelect?: EvaluationFormMultiSelectQuestionProperties | undefined;
|
|
381
468
|
/**
|
|
382
469
|
* The properties of the numeric question.
|
|
383
470
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html#cfn-connect-evaluationform-evaluationformquestiontypeproperties-numeric}
|
|
@@ -544,6 +631,16 @@ export type EvaluationFormSingleSelectQuestionProperties = {
|
|
|
544
631
|
*/
|
|
545
632
|
Options: EvaluationFormSingleSelectQuestionOption[];
|
|
546
633
|
};
|
|
634
|
+
/**
|
|
635
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html}
|
|
636
|
+
*/
|
|
637
|
+
export type EvaluationFormTargetConfiguration = {
|
|
638
|
+
/**
|
|
639
|
+
* The interaction type of a contact
|
|
640
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html#cfn-connect-evaluationform-evaluationformtargetconfiguration-contactinteractiontype}
|
|
641
|
+
*/
|
|
642
|
+
ContactInteractionType: "AGENT" | "AUTOMATED";
|
|
643
|
+
};
|
|
547
644
|
/**
|
|
548
645
|
* Information about the automation configuration in text questions.
|
|
549
646
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
|
|
@@ -566,6 +663,28 @@ export type EvaluationFormTextQuestionProperties = {
|
|
|
566
663
|
*/
|
|
567
664
|
Automation?: EvaluationFormTextQuestionAutomation | undefined;
|
|
568
665
|
};
|
|
666
|
+
/**
|
|
667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html}
|
|
668
|
+
*/
|
|
669
|
+
export type MultiSelectQuestionRuleCategoryAutomation = {
|
|
670
|
+
/**
|
|
671
|
+
* The category name as defined in Rules.
|
|
672
|
+
* @minLength 1
|
|
673
|
+
* @maxLength 50
|
|
674
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html#cfn-connect-evaluationform-multiselectquestionrulecategoryautomation-category}
|
|
675
|
+
*/
|
|
676
|
+
Category: string;
|
|
677
|
+
/**
|
|
678
|
+
* The automation condition applied on contact categories.
|
|
679
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html#cfn-connect-evaluationform-multiselectquestionrulecategoryautomation-condition}
|
|
680
|
+
*/
|
|
681
|
+
Condition: "PRESENT" | "NOT_PRESENT";
|
|
682
|
+
/**
|
|
683
|
+
* The list of reference id.
|
|
684
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html#cfn-connect-evaluationform-multiselectquestionrulecategoryautomation-optionrefids}
|
|
685
|
+
*/
|
|
686
|
+
OptionRefIds: string[];
|
|
687
|
+
};
|
|
569
688
|
/**
|
|
570
689
|
* Information about the property value used in automation of a numeric questions.
|
|
571
690
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-numericquestionpropertyvalueautomation.html}
|
|
@@ -575,7 +694,7 @@ export type NumericQuestionPropertyValueAutomation = {
|
|
|
575
694
|
* The property label of the automation.
|
|
576
695
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-numericquestionpropertyvalueautomation.html#cfn-connect-evaluationform-numericquestionpropertyvalueautomation-label}
|
|
577
696
|
*/
|
|
578
|
-
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";
|
|
697
|
+
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";
|
|
579
698
|
};
|
|
580
699
|
/**
|
|
581
700
|
* A scoring strategy of the evaluation form.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::DevOpsAgent::AgentSpace
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html}
|
|
5
|
+
*/
|
|
6
|
+
export type DevOpsAgentAgentSpace = ResourceDefinitionWithAttributes<"AWS::DevOpsAgent::AgentSpace", DevOpsAgentAgentSpaceProps, DevOpsAgentAgentSpaceAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::DevOpsAgent::AgentSpace
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html}
|
|
10
|
+
*/
|
|
11
|
+
export type DevOpsAgentAgentSpaceProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The description of the AgentSpace.
|
|
14
|
+
* @minLength 1
|
|
15
|
+
* @maxLength 1000
|
|
16
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-description}
|
|
17
|
+
*/
|
|
18
|
+
Description?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* The name of the AgentSpace.
|
|
21
|
+
* @minLength 1
|
|
22
|
+
* @maxLength 255
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-name}
|
|
24
|
+
*/
|
|
25
|
+
Name: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#aws-resource-devopsagent-agentspace-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type DevOpsAgentAgentSpaceAttribs = {
|
|
31
|
+
/**
|
|
32
|
+
* The unique identifier of the AgentSpace
|
|
33
|
+
* @minLength 1
|
|
34
|
+
* @maxLength 255
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-agentspaceid}
|
|
36
|
+
*/
|
|
37
|
+
AgentSpaceId: string;
|
|
38
|
+
/**
|
|
39
|
+
* The Amazon Resource Name (ARN) of the AgentSpace.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-arn}
|
|
41
|
+
*/
|
|
42
|
+
Arn: string;
|
|
43
|
+
/**
|
|
44
|
+
* The timestamp when the resource was created.
|
|
45
|
+
* @format date-time
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-createdat}
|
|
47
|
+
*/
|
|
48
|
+
CreatedAt: string;
|
|
49
|
+
/**
|
|
50
|
+
* The timestamp when the resource was last updated.
|
|
51
|
+
* @format date-time
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-updatedat}
|
|
53
|
+
*/
|
|
54
|
+
UpdatedAt: string;
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=aws-devopsagent-agentspace.d.ts.map
|