@awboost/cfn-resource-types 0.1.504 → 0.1.506
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-BedrockAgentCore-GatewayTarget.d.ts +15 -2
- package/lib/AWS-BedrockAgentCore-GatewayTarget.js +1 -1
- package/lib/AWS-Cases-CaseRule.d.ts +216 -0
- package/lib/AWS-Cases-CaseRule.js +13 -0
- package/lib/AWS-Cases-Domain.d.ts +81 -0
- package/lib/AWS-Cases-Domain.js +13 -0
- package/lib/AWS-Cases-Field.d.ts +100 -0
- package/lib/AWS-Cases-Field.js +13 -0
- package/lib/AWS-Cases-Layout.d.ts +159 -0
- package/lib/AWS-Cases-Layout.js +13 -0
- package/lib/AWS-Cases-Template.d.ts +155 -0
- package/lib/AWS-Cases-Template.js +13 -0
- package/lib/AWS-Connect-ContactFlowModule.d.ts +14 -0
- package/lib/AWS-DAX-SubnetGroup.d.ts +3 -10
- package/lib/AWS-DAX-SubnetGroup.js +1 -1
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
- package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
- package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
- package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
- package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
- package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
- package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
- package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
- package/lib/AWS-DataSync-Task.d.ts +8 -8
- package/lib/AWS-EC2-Volume.d.ts +35 -19
- package/lib/AWS-EC2-Volume.js +5 -5
- package/lib/AWS-ECR-RepositoryCreationTemplate.d.ts +1 -1
- package/lib/AWS-ECS-CapacityProvider.d.ts +1 -0
- package/lib/AWS-EMR-Step.d.ts +8 -0
- package/lib/AWS-Lex-Bot.d.ts +48 -5
- package/lib/AWS-Lex-Bot.js +1 -1
- package/lib/AWS-Lex-BotAlias.d.ts +3 -2
- package/lib/AWS-Lex-BotAlias.js +1 -1
- package/lib/AWS-QuickSight-Dashboard.d.ts +59 -1
- package/lib/AWS-WorkSpacesWeb-UserSettings.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
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
|
-
*
|
|
4
|
+
* Resource Type definition for AWS::BedrockAgentCore::GatewayTarget
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
6
6
|
*/
|
|
7
7
|
export type BedrockAgentCoreGatewayTargetProperties = {
|
|
@@ -146,6 +146,14 @@ export type McpTargetConfiguration = {
|
|
|
146
146
|
*/
|
|
147
147
|
export type OAuthCredentialProvider = {
|
|
148
148
|
CustomParameters?: OAuthCustomParameters;
|
|
149
|
+
/**
|
|
150
|
+
* Return URL for OAuth callback.
|
|
151
|
+
* @minLength `1`
|
|
152
|
+
* @maxLength `2048`
|
|
153
|
+
* @pattern `\w+:(\/?\/?)[^\s]+`
|
|
154
|
+
*/
|
|
155
|
+
DefaultReturnUrl?: string;
|
|
156
|
+
GrantType?: OAuthGrantType;
|
|
149
157
|
/**
|
|
150
158
|
* @pattern `^arn:([^:]*):([^:]*):([^:]*):([0-9]{12})?:(.+)$`
|
|
151
159
|
*/
|
|
@@ -160,6 +168,11 @@ export type OAuthCredentialProvider = {
|
|
|
160
168
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcustomparameters.html}
|
|
161
169
|
*/
|
|
162
170
|
export type OAuthCustomParameters = Record<string, string>;
|
|
171
|
+
/**
|
|
172
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthGrantType`.
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthgranttype.html}
|
|
174
|
+
*/
|
|
175
|
+
export type OAuthGrantType = "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS";
|
|
163
176
|
/**
|
|
164
177
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.S3Configuration`.
|
|
165
178
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
|
|
@@ -227,7 +240,7 @@ export type ToolSchema = {
|
|
|
227
240
|
InlinePayload: ToolDefinition[];
|
|
228
241
|
};
|
|
229
242
|
/**
|
|
230
|
-
*
|
|
243
|
+
* Resource Type definition for AWS::BedrockAgentCore::GatewayTarget
|
|
231
244
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
232
245
|
*/
|
|
233
246
|
export declare class BedrockAgentCoreGatewayTarget extends $Resource<"AWS::BedrockAgentCore::GatewayTarget", BedrockAgentCoreGatewayTargetProperties, BedrockAgentCoreGatewayTargetAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource Type definition for AWS::BedrockAgentCore::GatewayTarget
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
5
5
|
*/
|
|
6
6
|
export class BedrockAgentCoreGatewayTarget extends $Resource {
|
|
@@ -0,0 +1,216 @@
|
|
|
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::Cases::CaseRule`.
|
|
5
|
+
* A case rule. In the Amazon Connect admin website, case rules are known as case field conditions. Case rules are used to define the situations under which fields should have certain effects (such as required).
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CasesCaseRuleProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* A description explaining the purpose and behavior of this case rule. Helps administrators understand when and why this rule applies to case fields.
|
|
11
|
+
* @maxLength `255`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The unique identifier of the Cases domain.
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `500`
|
|
18
|
+
*/
|
|
19
|
+
DomainId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A descriptive name for the case rule. Must be unique within the domain and should clearly indicate the rule's purpose (e.g., 'Priority Field Required for Urgent Cases').
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `100`
|
|
24
|
+
* @pattern `^.*[\S]$`
|
|
25
|
+
*/
|
|
26
|
+
Name: string;
|
|
27
|
+
/**
|
|
28
|
+
* Defines the rule behavior and conditions. Specifies the rule type and the conditions under which it applies. In the Amazon Connect admin website, this corresponds to case field conditions.
|
|
29
|
+
*/
|
|
30
|
+
Rule: CaseRuleDetails;
|
|
31
|
+
/**
|
|
32
|
+
* The tags that you attach to this case rule.
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[];
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Attribute type definition for `AWS::Cases::CaseRule`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#aws-resource-cases-caserule-return-values}
|
|
39
|
+
*/
|
|
40
|
+
export type CasesCaseRuleAttributes = {
|
|
41
|
+
/**
|
|
42
|
+
* The Amazon Resource Name (ARN) of a case rule.
|
|
43
|
+
* @minLength `1`
|
|
44
|
+
* @maxLength `500`
|
|
45
|
+
*/
|
|
46
|
+
CaseRuleArn: string;
|
|
47
|
+
/**
|
|
48
|
+
* The unique identifier of a case rule.
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `500`
|
|
51
|
+
*/
|
|
52
|
+
CaseRuleId: string;
|
|
53
|
+
/**
|
|
54
|
+
* The time at which the case rule was created.
|
|
55
|
+
*/
|
|
56
|
+
CreatedTime: string;
|
|
57
|
+
/**
|
|
58
|
+
* The time at which the case rule was created or last modified.
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTime: string;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::Cases::CaseRule.BooleanCondition`.
|
|
64
|
+
* A boolean condition for a rule.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleancondition.html}
|
|
66
|
+
*/
|
|
67
|
+
export type BooleanCondition = {
|
|
68
|
+
/**
|
|
69
|
+
* Boolean operands for a condition.
|
|
70
|
+
*/
|
|
71
|
+
EqualTo: BooleanOperands;
|
|
72
|
+
} | {
|
|
73
|
+
/**
|
|
74
|
+
* Boolean operands for a condition.
|
|
75
|
+
*/
|
|
76
|
+
NotEqualTo: BooleanOperands;
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::Cases::CaseRule.BooleanOperands`.
|
|
80
|
+
* Boolean operands for a condition.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleanoperands.html}
|
|
82
|
+
*/
|
|
83
|
+
export type BooleanOperands = {
|
|
84
|
+
OperandOne: OperandOne;
|
|
85
|
+
/**
|
|
86
|
+
* The right hand operand in the condition.
|
|
87
|
+
*/
|
|
88
|
+
OperandTwo: OperandTwo;
|
|
89
|
+
/**
|
|
90
|
+
* The value of the outer rule if the condition evaluates to true.
|
|
91
|
+
*/
|
|
92
|
+
Result: boolean;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::Cases::CaseRule.CaseRuleDetails`.
|
|
96
|
+
* Defines the rule behavior and conditions. Specifies the rule type and the conditions under which it applies. In the Amazon Connect admin website, this corresponds to case field conditions.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-caseruledetails.html}
|
|
98
|
+
*/
|
|
99
|
+
export type CaseRuleDetails = {
|
|
100
|
+
/**
|
|
101
|
+
* A required rule type, used to indicate whether a field is required.
|
|
102
|
+
*/
|
|
103
|
+
Required: RequiredCaseRule;
|
|
104
|
+
} | {
|
|
105
|
+
/**
|
|
106
|
+
* Hidden rule type, used to indicate whether a field is hidden
|
|
107
|
+
*/
|
|
108
|
+
Hidden: HiddenCaseRule;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* Type definition for `AWS::Cases::CaseRule.EmptyOperandValue`.
|
|
112
|
+
* An empty operand value.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-emptyoperandvalue.html}
|
|
114
|
+
*/
|
|
115
|
+
export type EmptyOperandValue = Record<string, any>;
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::Cases::CaseRule.HiddenCaseRule`.
|
|
118
|
+
* Hidden rule type, used to indicate whether a field is hidden
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-hiddencaserule.html}
|
|
120
|
+
*/
|
|
121
|
+
export type HiddenCaseRule = {
|
|
122
|
+
/**
|
|
123
|
+
* List of conditions for the hidden rule; the first condition to evaluate to true dictates the value of the rule
|
|
124
|
+
* @maxLength `100`
|
|
125
|
+
*/
|
|
126
|
+
Conditions: BooleanCondition[];
|
|
127
|
+
/**
|
|
128
|
+
* The value of the rule (i.e. whether the field is hidden) should none of the conditions evaluate to true
|
|
129
|
+
*/
|
|
130
|
+
DefaultValue: boolean;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::Cases::CaseRule.OperandOne`.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-operandone.html}
|
|
135
|
+
*/
|
|
136
|
+
export type OperandOne = {
|
|
137
|
+
/**
|
|
138
|
+
* The field ID this operand should take the value of.
|
|
139
|
+
* @minLength `1`
|
|
140
|
+
* @maxLength `500`
|
|
141
|
+
*/
|
|
142
|
+
FieldId: string;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::Cases::CaseRule.OperandTwo`.
|
|
146
|
+
* The right hand operand in the condition.
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-operandtwo.html}
|
|
148
|
+
*/
|
|
149
|
+
export type OperandTwo = {
|
|
150
|
+
/**
|
|
151
|
+
* A string value to compare against the field value in the condition evaluation.
|
|
152
|
+
* @minLength `1`
|
|
153
|
+
* @maxLength `1500`
|
|
154
|
+
*/
|
|
155
|
+
StringValue: string;
|
|
156
|
+
} | {
|
|
157
|
+
/**
|
|
158
|
+
* A boolean value to compare against the field value in the condition evaluation.
|
|
159
|
+
*/
|
|
160
|
+
BooleanValue: boolean;
|
|
161
|
+
} | {
|
|
162
|
+
/**
|
|
163
|
+
* A numeric value to compare against the field value in the condition evaluation.
|
|
164
|
+
*/
|
|
165
|
+
DoubleValue: number;
|
|
166
|
+
} | {
|
|
167
|
+
/**
|
|
168
|
+
* An empty operand value.
|
|
169
|
+
*/
|
|
170
|
+
EmptyValue: EmptyOperandValue;
|
|
171
|
+
};
|
|
172
|
+
/**
|
|
173
|
+
* Type definition for `AWS::Cases::CaseRule.RequiredCaseRule`.
|
|
174
|
+
* A required rule type, used to indicate whether a field is required.
|
|
175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-requiredcaserule.html}
|
|
176
|
+
*/
|
|
177
|
+
export type RequiredCaseRule = {
|
|
178
|
+
/**
|
|
179
|
+
* An ordered list of boolean conditions that determine when the field should be required. Conditions are evaluated in order, and the first condition that evaluates to true determines whether the field is required, overriding the default value.
|
|
180
|
+
* @maxLength `100`
|
|
181
|
+
*/
|
|
182
|
+
Conditions: BooleanCondition[];
|
|
183
|
+
/**
|
|
184
|
+
* The default required state for the field when none of the specified conditions are met. If true, the field is required by default; if false, the field is optional by default.
|
|
185
|
+
*/
|
|
186
|
+
DefaultValue: boolean;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Type definition for `AWS::Cases::CaseRule.Tag`.
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-tag.html}
|
|
191
|
+
*/
|
|
192
|
+
export type Tag = {
|
|
193
|
+
/**
|
|
194
|
+
* 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 -.
|
|
195
|
+
* @minLength `1`
|
|
196
|
+
* @maxLength `128`
|
|
197
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
198
|
+
*/
|
|
199
|
+
Key: string;
|
|
200
|
+
/**
|
|
201
|
+
* 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 -.
|
|
202
|
+
* @minLength `0`
|
|
203
|
+
* @maxLength `256`
|
|
204
|
+
*/
|
|
205
|
+
Value: string;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Resource type definition for `AWS::Cases::CaseRule`.
|
|
209
|
+
* A case rule. In the Amazon Connect admin website, case rules are known as case field conditions. Case rules are used to define the situations under which fields should have certain effects (such as required).
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html}
|
|
211
|
+
*/
|
|
212
|
+
export declare class CasesCaseRule extends $Resource<"AWS::Cases::CaseRule", CasesCaseRuleProperties, CasesCaseRuleAttributes> {
|
|
213
|
+
static readonly Type = "AWS::Cases::CaseRule";
|
|
214
|
+
constructor(logicalId: string, properties: CasesCaseRuleProperties, options?: $ResourceOptions);
|
|
215
|
+
}
|
|
216
|
+
//# sourceMappingURL=AWS-Cases-CaseRule.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::Cases::CaseRule`.
|
|
4
|
+
* A case rule. In the Amazon Connect admin website, case rules are known as case field conditions. Case rules are used to define the situations under which fields should have certain effects (such as required).
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CasesCaseRule extends $Resource {
|
|
8
|
+
static Type = "AWS::Cases::CaseRule";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CasesCaseRule.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Cases-CaseRule.js.map
|
|
@@ -0,0 +1,81 @@
|
|
|
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::Cases::Domain`.
|
|
5
|
+
* A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CasesDomainProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The name for your Cases domain. It must be unique for your AWS account.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `100`
|
|
13
|
+
* @pattern `^.*[\S]$`
|
|
14
|
+
*/
|
|
15
|
+
Name: string;
|
|
16
|
+
/**
|
|
17
|
+
* The tags that you attach to this domain.
|
|
18
|
+
*/
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::Cases::Domain`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html#aws-resource-cases-domain-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type CasesDomainAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* The time at which the domain was created.
|
|
28
|
+
*/
|
|
29
|
+
CreatedTime: string;
|
|
30
|
+
/**
|
|
31
|
+
* The Amazon Resource Name (ARN) for the Cases domain.
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `500`
|
|
34
|
+
*/
|
|
35
|
+
DomainArn: string;
|
|
36
|
+
/**
|
|
37
|
+
* The unique identifier of the Cases domain.
|
|
38
|
+
* @minLength `1`
|
|
39
|
+
* @maxLength `500`
|
|
40
|
+
*/
|
|
41
|
+
DomainId: string;
|
|
42
|
+
/**
|
|
43
|
+
* The current status of the Cases domain. Indicates whether the domain is Active, CreationInProgress, or CreationFailed.
|
|
44
|
+
*/
|
|
45
|
+
DomainStatus: DomainStatus;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::Cases::Domain.DomainStatus`.
|
|
49
|
+
* The current status of the Cases domain. Indicates whether the domain is Active, CreationInProgress, or CreationFailed.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-domain-domainstatus.html}
|
|
51
|
+
*/
|
|
52
|
+
export type DomainStatus = "Active" | "CreationInProgress" | "CreationFailed";
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::Cases::Domain.Tag`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-domain-tag.html}
|
|
56
|
+
*/
|
|
57
|
+
export type Tag = {
|
|
58
|
+
/**
|
|
59
|
+
* 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 -.
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `128`
|
|
62
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
63
|
+
*/
|
|
64
|
+
Key: string;
|
|
65
|
+
/**
|
|
66
|
+
* 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 -.
|
|
67
|
+
* @minLength `0`
|
|
68
|
+
* @maxLength `256`
|
|
69
|
+
*/
|
|
70
|
+
Value: string;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Resource type definition for `AWS::Cases::Domain`.
|
|
74
|
+
* A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html}
|
|
76
|
+
*/
|
|
77
|
+
export declare class CasesDomain extends $Resource<"AWS::Cases::Domain", CasesDomainProperties, CasesDomainAttributes> {
|
|
78
|
+
static readonly Type = "AWS::Cases::Domain";
|
|
79
|
+
constructor(logicalId: string, properties: CasesDomainProperties, options?: $ResourceOptions);
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=AWS-Cases-Domain.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::Cases::Domain`.
|
|
4
|
+
* A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CasesDomain extends $Resource {
|
|
8
|
+
static Type = "AWS::Cases::Domain";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CasesDomain.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Cases-Domain.js.map
|
|
@@ -0,0 +1,100 @@
|
|
|
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::Cases::Field`.
|
|
5
|
+
* A field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CasesFieldProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* A description explaining the purpose and usage of this field in cases. Helps agents and administrators understand what information should be captured in this field.
|
|
11
|
+
* @maxLength `255`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The unique identifier of the Cases domain.
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `500`
|
|
18
|
+
*/
|
|
19
|
+
DomainId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The display name of the field as it appears to agents in the case interface. Should be descriptive and user-friendly (e.g., 'Customer Priority Level', 'Issue Category').
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `100`
|
|
24
|
+
* @pattern `^.*[\S]$`
|
|
25
|
+
*/
|
|
26
|
+
Name: string;
|
|
27
|
+
/**
|
|
28
|
+
* The tags that you attach to this field.
|
|
29
|
+
*/
|
|
30
|
+
Tags?: Tag[];
|
|
31
|
+
/**
|
|
32
|
+
* The data type of the field, which determines validation rules, input constraints, and display format. Each type has specific constraints: Text (string input), Number (numeric values), Boolean (true/false), DateTime (date/time picker), SingleSelect (dropdown options), Url (URL validation), User (Amazon Connect user selection).
|
|
33
|
+
*/
|
|
34
|
+
Type: FieldType;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Attribute type definition for `AWS::Cases::Field`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html#aws-resource-cases-field-return-values}
|
|
39
|
+
*/
|
|
40
|
+
export type CasesFieldAttributes = {
|
|
41
|
+
/**
|
|
42
|
+
* The time at which the field was created.
|
|
43
|
+
*/
|
|
44
|
+
CreatedTime: string;
|
|
45
|
+
/**
|
|
46
|
+
* The Amazon Resource Name (ARN) of the field.
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `500`
|
|
49
|
+
*/
|
|
50
|
+
FieldArn: string;
|
|
51
|
+
/**
|
|
52
|
+
* The unique identifier of a field.
|
|
53
|
+
* @minLength `1`
|
|
54
|
+
* @maxLength `500`
|
|
55
|
+
*/
|
|
56
|
+
FieldId: string;
|
|
57
|
+
/**
|
|
58
|
+
* The time at which the field was created or last modified.
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTime: string;
|
|
61
|
+
/**
|
|
62
|
+
* Indicates whether this is a System field (predefined by AWS) or a Custom field (created by your organization). System fields cannot be modified or deleted.
|
|
63
|
+
*/
|
|
64
|
+
Namespace: "System" | "Custom";
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::Cases::Field.FieldType`.
|
|
68
|
+
* The data type of the field, which determines validation rules, input constraints, and display format. Each type has specific constraints: Text (string input), Number (numeric values), Boolean (true/false), DateTime (date/time picker), SingleSelect (dropdown options), Url (URL validation), User (Amazon Connect user selection).
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-field-fieldtype.html}
|
|
70
|
+
*/
|
|
71
|
+
export type FieldType = "Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User";
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::Cases::Field.Tag`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-field-tag.html}
|
|
75
|
+
*/
|
|
76
|
+
export type Tag = {
|
|
77
|
+
/**
|
|
78
|
+
* 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 -.
|
|
79
|
+
* @minLength `1`
|
|
80
|
+
* @maxLength `128`
|
|
81
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
82
|
+
*/
|
|
83
|
+
Key: string;
|
|
84
|
+
/**
|
|
85
|
+
* 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 -.
|
|
86
|
+
* @minLength `0`
|
|
87
|
+
* @maxLength `256`
|
|
88
|
+
*/
|
|
89
|
+
Value: string;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Resource type definition for `AWS::Cases::Field`.
|
|
93
|
+
* A field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html}
|
|
95
|
+
*/
|
|
96
|
+
export declare class CasesField extends $Resource<"AWS::Cases::Field", CasesFieldProperties, CasesFieldAttributes> {
|
|
97
|
+
static readonly Type = "AWS::Cases::Field";
|
|
98
|
+
constructor(logicalId: string, properties: CasesFieldProperties, options?: $ResourceOptions);
|
|
99
|
+
}
|
|
100
|
+
//# sourceMappingURL=AWS-Cases-Field.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::Cases::Field`.
|
|
4
|
+
* A field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CasesField extends $Resource {
|
|
8
|
+
static Type = "AWS::Cases::Field";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CasesField.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Cases-Field.js.map
|
|
@@ -0,0 +1,159 @@
|
|
|
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::Cases::Layout`.
|
|
5
|
+
* A layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface: Fields to display to the users and Field ordering.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CasesLayoutProperties = {
|
|
9
|
+
Content: LayoutContent;
|
|
10
|
+
/**
|
|
11
|
+
* The unique identifier of the Cases domain.
|
|
12
|
+
* @minLength `1`
|
|
13
|
+
* @maxLength `500`
|
|
14
|
+
*/
|
|
15
|
+
DomainId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* A descriptive name for the layout. Must be unique within the Cases domain and should clearly indicate the layout's purpose and field organization.
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `100`
|
|
20
|
+
* @pattern `^.*[\S]$`
|
|
21
|
+
*/
|
|
22
|
+
Name: string;
|
|
23
|
+
/**
|
|
24
|
+
* The tags that you attach to this layout.
|
|
25
|
+
*/
|
|
26
|
+
Tags?: Tag[];
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::Cases::Layout`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#aws-resource-cases-layout-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type CasesLayoutAttributes = {
|
|
33
|
+
/**
|
|
34
|
+
* The time at which the layout was created.
|
|
35
|
+
*/
|
|
36
|
+
CreatedTime: string;
|
|
37
|
+
/**
|
|
38
|
+
* The time at which the layout was created or last modified.
|
|
39
|
+
*/
|
|
40
|
+
LastModifiedTime: string;
|
|
41
|
+
/**
|
|
42
|
+
* The Amazon Resource Name (ARN) of the layout.
|
|
43
|
+
* @minLength `1`
|
|
44
|
+
* @maxLength `500`
|
|
45
|
+
*/
|
|
46
|
+
LayoutArn: string;
|
|
47
|
+
/**
|
|
48
|
+
* The unique identifier of the layout.
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `500`
|
|
51
|
+
*/
|
|
52
|
+
LayoutId: string;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::Cases::Layout.BasicLayout`.
|
|
56
|
+
* Defines the field layout for the agent's case interface. Configures which fields appear in the top panel (immediately visible) and More Info tab (expandable section) of the case view, allowing customization of the agent experience.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-basiclayout.html}
|
|
58
|
+
*/
|
|
59
|
+
export type BasicLayout = {
|
|
60
|
+
/**
|
|
61
|
+
* Sections within a panel or tab of the page layout.
|
|
62
|
+
*/
|
|
63
|
+
MoreInfo?: LayoutSections;
|
|
64
|
+
/**
|
|
65
|
+
* Sections within a panel or tab of the page layout.
|
|
66
|
+
*/
|
|
67
|
+
TopPanel?: LayoutSections;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::Cases::Layout.FieldGroup`.
|
|
71
|
+
* Consists of a group of fields and associated properties.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fieldgroup.html}
|
|
73
|
+
*/
|
|
74
|
+
export type FieldGroup = {
|
|
75
|
+
/**
|
|
76
|
+
* An ordered list of fields to display in this group. The order determines the sequence in which fields appear in the agent interface. Each field is referenced by its unique field ID.
|
|
77
|
+
* @maxLength `220`
|
|
78
|
+
*/
|
|
79
|
+
Fields: FieldItem[];
|
|
80
|
+
/**
|
|
81
|
+
* A descriptive name for the field group. Helps organize related fields together in the layout interface.
|
|
82
|
+
* @maxLength `100`
|
|
83
|
+
*/
|
|
84
|
+
Name?: string;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Type definition for `AWS::Cases::Layout.FieldItem`.
|
|
88
|
+
* Field specific properties.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fielditem.html}
|
|
90
|
+
*/
|
|
91
|
+
export type FieldItem = {
|
|
92
|
+
/**
|
|
93
|
+
* The unique identifier of a field.
|
|
94
|
+
* @minLength `1`
|
|
95
|
+
* @maxLength `500`
|
|
96
|
+
*/
|
|
97
|
+
Id: string;
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* Type definition for `AWS::Cases::Layout.LayoutContent`.
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutcontent.html}
|
|
102
|
+
*/
|
|
103
|
+
export type LayoutContent = {
|
|
104
|
+
/**
|
|
105
|
+
* Defines the field layout for the agent's case interface. Configures which fields appear in the top panel (immediately visible) and More Info tab (expandable section) of the case view, allowing customization of the agent experience.
|
|
106
|
+
*/
|
|
107
|
+
Basic: BasicLayout;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* Type definition for `AWS::Cases::Layout.LayoutSections`.
|
|
111
|
+
* Sections within a panel or tab of the page layout.
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html}
|
|
113
|
+
*/
|
|
114
|
+
export type LayoutSections = {
|
|
115
|
+
/**
|
|
116
|
+
* Defines the sections within a panel or tab. Contains field groups that organize related fields together.
|
|
117
|
+
* @maxLength `1`
|
|
118
|
+
*/
|
|
119
|
+
Sections?: Section[];
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::Cases::Layout.Section`.
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-section.html}
|
|
124
|
+
*/
|
|
125
|
+
export type Section = {
|
|
126
|
+
/**
|
|
127
|
+
* Consists of a group of fields and associated properties.
|
|
128
|
+
*/
|
|
129
|
+
FieldGroup: FieldGroup;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::Cases::Layout.Tag`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-tag.html}
|
|
134
|
+
*/
|
|
135
|
+
export type Tag = {
|
|
136
|
+
/**
|
|
137
|
+
* 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 -.
|
|
138
|
+
* @minLength `1`
|
|
139
|
+
* @maxLength `128`
|
|
140
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
141
|
+
*/
|
|
142
|
+
Key: string;
|
|
143
|
+
/**
|
|
144
|
+
* 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 -.
|
|
145
|
+
* @minLength `0`
|
|
146
|
+
* @maxLength `256`
|
|
147
|
+
*/
|
|
148
|
+
Value: string;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Resource type definition for `AWS::Cases::Layout`.
|
|
152
|
+
* A layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface: Fields to display to the users and Field ordering.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html}
|
|
154
|
+
*/
|
|
155
|
+
export declare class CasesLayout extends $Resource<"AWS::Cases::Layout", CasesLayoutProperties, CasesLayoutAttributes> {
|
|
156
|
+
static readonly Type = "AWS::Cases::Layout";
|
|
157
|
+
constructor(logicalId: string, properties: CasesLayoutProperties, options?: $ResourceOptions);
|
|
158
|
+
}
|
|
159
|
+
//# sourceMappingURL=AWS-Cases-Layout.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::Cases::Layout`.
|
|
4
|
+
* A layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface: Fields to display to the users and Field ordering.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CasesLayout extends $Resource {
|
|
8
|
+
static Type = "AWS::Cases::Layout";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CasesLayout.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Cases-Layout.js.map
|