@awboost/cfn-resource-types 0.1.505 → 0.1.507

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.
@@ -80,6 +80,7 @@ export type AutoScalingAutoScalingGroupProperties = {
80
80
  If you specify ``LaunchTemplate``, ``MixedInstancesPolicy``, or ``LaunchConfigurationName``, don't specify ``InstanceId``.
81
81
  */
82
82
  InstanceId?: string;
83
+ InstanceLifecyclePolicy?: InstanceLifecyclePolicy;
83
84
  /**
84
85
  * An instance maintenance policy. For more information, see [Set instance maintenance policy](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
85
86
  */
@@ -314,6 +315,13 @@ export type CpuPerformanceFactorRequest = {
314
315
  */
315
316
  References?: PerformanceFactorReferenceRequest[];
316
317
  };
318
+ /**
319
+ * Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceLifecyclePolicy`.
320
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancelifecyclepolicy.html}
321
+ */
322
+ export type InstanceLifecyclePolicy = {
323
+ RetentionTriggers?: RetentionTriggers;
324
+ };
317
325
  /**
318
326
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceMaintenancePolicy`.
319
327
  * ``InstanceMaintenancePolicy`` is a property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
@@ -584,6 +592,7 @@ export type LaunchTemplate = {
584
592
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html}
585
593
  */
586
594
  export type LaunchTemplateOverrides = {
595
+ ImageId?: string;
587
596
  /**
588
597
  * The instance requirements. Amazon EC2 Auto Scaling uses your specified requirements to identify instance types. Then, it uses your On-Demand and Spot allocation strategies to launch instances from these instance types.
589
598
  You can specify up to four separate sets of instance requirements per Auto Scaling group. This is useful for provisioning instances from different Amazon Machine Images (AMIs) in the same Auto Scaling group. To do this, create the AMIs and create a new launch template for each AMI. Then, create a compatible set of instance requirements for each launch template.
@@ -849,6 +858,13 @@ export type PerformanceFactorReferenceRequest = {
849
858
  */
850
859
  InstanceFamily?: string;
851
860
  };
861
+ /**
862
+ * Type definition for `AWS::AutoScaling::AutoScalingGroup.RetentionTriggers`.
863
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-retentiontriggers.html}
864
+ */
865
+ export type RetentionTriggers = {
866
+ TerminateHookAbandon?: string;
867
+ };
852
868
  /**
853
869
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.TagProperty`.
854
870
  * A structure that specifies a tag for the ``Tags`` property of [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
@@ -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
- * Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
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
- * Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
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
- * Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
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