@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.
@@ -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
@@ -0,0 +1,155 @@
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::Template`.
5
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
7
+ */
8
+ export type CasesTemplateProperties = {
9
+ /**
10
+ * A description explaining the purpose and use case for this template. Should indicate what types of cases this template is designed for and any specific workflow it supports.
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
+ * Specifies the default layout to use when displaying cases created from this template. The layout determines which fields are visible and their arrangement in the agent interface.
22
+ */
23
+ LayoutConfiguration?: LayoutConfiguration;
24
+ /**
25
+ * A name for the template. It must be unique per domain.
26
+ * @minLength `1`
27
+ * @maxLength `100`
28
+ * @pattern `^.*[\S]$`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * A list of fields that must contain a value for a case to be successfully created with this template.
33
+ * @maxLength `100`
34
+ */
35
+ RequiredFields?: RequiredField[];
36
+ /**
37
+ * A list of case rules (also known as case field conditions) on a template.
38
+ * @maxLength `50`
39
+ */
40
+ Rules?: TemplateRule[];
41
+ /**
42
+ * The current status of the template. Active templates can be used to create new cases, while Inactive templates are disabled but preserved for existing cases.
43
+ */
44
+ Status?: TemplateStatus;
45
+ /**
46
+ * The tags that you attach to this template.
47
+ */
48
+ Tags?: Tag[];
49
+ };
50
+ /**
51
+ * Attribute type definition for `AWS::Cases::Template`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#aws-resource-cases-template-return-values}
53
+ */
54
+ export type CasesTemplateAttributes = {
55
+ /**
56
+ * The time at which the template was created.
57
+ */
58
+ CreatedTime: string;
59
+ /**
60
+ * The time at which the template was created or last modified.
61
+ */
62
+ LastModifiedTime: string;
63
+ /**
64
+ * The Amazon Resource Name (ARN) of the template.
65
+ * @minLength `1`
66
+ * @maxLength `500`
67
+ */
68
+ TemplateArn: string;
69
+ /**
70
+ * The unique identifier of a template.
71
+ * @minLength `1`
72
+ * @maxLength `500`
73
+ */
74
+ TemplateId: string;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::Cases::Template.LayoutConfiguration`.
78
+ * Specifies the default layout to use when displaying cases created from this template. The layout determines which fields are visible and their arrangement in the agent interface.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-layoutconfiguration.html}
80
+ */
81
+ export type LayoutConfiguration = {
82
+ /**
83
+ * The unique identifier of a layout.
84
+ * @minLength `1`
85
+ * @maxLength `500`
86
+ */
87
+ DefaultLayout?: string;
88
+ };
89
+ /**
90
+ * Type definition for `AWS::Cases::Template.RequiredField`.
91
+ * Wrapper object containing a field identifier
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-requiredfield.html}
93
+ */
94
+ export type RequiredField = {
95
+ /**
96
+ * The unique identifier of a field.
97
+ * @minLength `1`
98
+ * @maxLength `500`
99
+ */
100
+ FieldId: string;
101
+ };
102
+ /**
103
+ * Type definition for `AWS::Cases::Template.Tag`.
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-tag.html}
105
+ */
106
+ export type Tag = {
107
+ /**
108
+ * 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 -.
109
+ * @minLength `1`
110
+ * @maxLength `128`
111
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
112
+ */
113
+ Key: string;
114
+ /**
115
+ * 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 -.
116
+ * @minLength `0`
117
+ * @maxLength `256`
118
+ */
119
+ Value: string;
120
+ };
121
+ /**
122
+ * Type definition for `AWS::Cases::Template.TemplateRule`.
123
+ * Links a case rule to a specific field within this template. When specified, the rule's conditions will be evaluated for the associated field, controlling behavior like required status, visibility, or available options.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templaterule.html}
125
+ */
126
+ export type TemplateRule = {
127
+ /**
128
+ * The unique identifier of a case rule.
129
+ * @minLength `1`
130
+ * @maxLength `500`
131
+ */
132
+ CaseRuleId: string;
133
+ /**
134
+ * The ID of the field that this rule applies to.
135
+ * @minLength `1`
136
+ * @maxLength `500`
137
+ */
138
+ FieldId?: string;
139
+ };
140
+ /**
141
+ * Type definition for `AWS::Cases::Template.TemplateStatus`.
142
+ * The current status of the template. Active templates can be used to create new cases, while Inactive templates are disabled but preserved for existing cases.
143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templatestatus.html}
144
+ */
145
+ export type TemplateStatus = "Active" | "Inactive";
146
+ /**
147
+ * Resource type definition for `AWS::Cases::Template`.
148
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
150
+ */
151
+ export declare class CasesTemplate extends $Resource<"AWS::Cases::Template", CasesTemplateProperties, CasesTemplateAttributes> {
152
+ static readonly Type = "AWS::Cases::Template";
153
+ constructor(logicalId: string, properties: CasesTemplateProperties, options?: $ResourceOptions);
154
+ }
155
+ //# sourceMappingURL=AWS-Cases-Template.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::Template`.
4
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
6
+ */
7
+ export class CasesTemplate extends $Resource {
8
+ static Type = "AWS::Cases::Template";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CasesTemplate.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Cases-Template.js.map
@@ -17,6 +17,15 @@ export type ConnectContactFlowModuleProperties = {
17
17
  * @pattern `.*\S.*`
18
18
  */
19
19
  Description?: string;
20
+ /**
21
+ * Defines the external invocation configuration of the flow module resource
22
+ */
23
+ ExternalInvocationConfiguration?: {
24
+ /**
25
+ * Specifies whether the flow module resource is enabled for external invocation
26
+ */
27
+ Enabled: boolean;
28
+ };
20
29
  /**
21
30
  * The identifier of the Amazon Connect instance (ARN).
22
31
  * @minLength `1`
@@ -31,6 +40,11 @@ export type ConnectContactFlowModuleProperties = {
31
40
  * @pattern `.*\S.*`
32
41
  */
33
42
  Name: string;
43
+ /**
44
+ * The schema of the settings for contact flow module in JSON Schema V4 format.
45
+ * @maxLength `256000`
46
+ */
47
+ Settings?: string;
34
48
  /**
35
49
  * The state of the contact flow module.
36
50
  * @maxLength `500`
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-hoursofoperation.html}
6
6
  */
7
7
  export type ConnectHoursOfOperationProperties = {
8
+ /**
9
+ * List of child hours of operations.
10
+ */
11
+ ChildHoursOfOperations?: HoursOfOperationsIdentifier[];
8
12
  /**
9
13
  * Configuration information for the hours of operation: day, start time, and end time.
10
14
  * @maxLength `100`
@@ -32,6 +36,10 @@ export type ConnectHoursOfOperationProperties = {
32
36
  * @maxLength `127`
33
37
  */
34
38
  Name: string;
39
+ /**
40
+ * List of parent hours of operations.
41
+ */
42
+ ParentHoursOfOperations?: HoursOfOperationsIdentifier[];
35
43
  /**
36
44
  * One or more tags.
37
45
  * @maxLength `50`
@@ -110,6 +118,14 @@ export type HoursOfOperationOverride = {
110
118
  * @maxLength `127`
111
119
  */
112
120
  OverrideName: string;
121
+ /**
122
+ * The type of hours of operation override.
123
+ */
124
+ OverrideType?: OverrideType;
125
+ /**
126
+ * Configuration for recurring hours of operation overrides.
127
+ */
128
+ RecurrenceConfig?: RecurrenceConfig;
113
129
  };
114
130
  /**
115
131
  * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationOverrideConfig`.
@@ -130,6 +146,23 @@ export type HoursOfOperationOverrideConfig = {
130
146
  */
131
147
  StartTime: OverrideTimeSlice;
132
148
  };
149
+ /**
150
+ * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationsIdentifier`.
151
+ * Identifier for hours of operation.
152
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationsidentifier.html}
153
+ */
154
+ export type HoursOfOperationsIdentifier = {
155
+ /**
156
+ * The identifier for the hours of operation.
157
+ */
158
+ Id: string;
159
+ /**
160
+ * The name of the hours of operation.
161
+ * @minLength `1`
162
+ * @maxLength `127`
163
+ */
164
+ Name?: string;
165
+ };
133
166
  /**
134
167
  * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice`.
135
168
  * The start time or end time for an hours of operation.
@@ -168,6 +201,58 @@ export type OverrideTimeSlice = {
168
201
  */
169
202
  Minutes: number;
170
203
  };
204
+ /**
205
+ * Type definition for `AWS::Connect::HoursOfOperation.OverrideType`.
206
+ * The type of hours of operation override.
207
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetype.html}
208
+ */
209
+ export type OverrideType = "STANDARD" | "OPEN" | "CLOSED";
210
+ /**
211
+ * Type definition for `AWS::Connect::HoursOfOperation.RecurrenceConfig`.
212
+ * Configuration for recurring hours of operation overrides.
213
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-recurrenceconfig.html}
214
+ */
215
+ export type RecurrenceConfig = {
216
+ /**
217
+ * Pattern for recurring hours of operation overrides.
218
+ */
219
+ RecurrencePattern: RecurrencePattern;
220
+ };
221
+ /**
222
+ * Type definition for `AWS::Connect::HoursOfOperation.RecurrenceFrequency`.
223
+ * The frequency of recurrence for hours of operation overrides.
224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-recurrencefrequency.html}
225
+ */
226
+ export type RecurrenceFrequency = "WEEKLY" | "MONTHLY" | "YEARLY";
227
+ /**
228
+ * Type definition for `AWS::Connect::HoursOfOperation.RecurrencePattern`.
229
+ * Pattern for recurring hours of operation overrides.
230
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-recurrencepattern.html}
231
+ */
232
+ export type RecurrencePattern = {
233
+ /**
234
+ * List of months (1-12) for recurrence pattern.
235
+ */
236
+ ByMonth?: number[];
237
+ /**
238
+ * List of month days (-1 to 31) for recurrence pattern.
239
+ */
240
+ ByMonthDay?: number[];
241
+ /**
242
+ * @minLength `0`
243
+ * @maxLength `1`
244
+ */
245
+ ByWeekdayOccurrence?: number[];
246
+ /**
247
+ * The frequency of recurrence for hours of operation overrides.
248
+ */
249
+ Frequency?: RecurrenceFrequency;
250
+ /**
251
+ * @min `1`
252
+ * @max `6`
253
+ */
254
+ Interval?: number;
255
+ };
171
256
  /**
172
257
  * Type definition for `AWS::Connect::HoursOfOperation.Tag`.
173
258
  * A key-value pair to associate with a 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
- * Resource type definition for AWS::DAX::SubnetGroup
4
+ * Resource Type definition for AWS::DAX::SubnetGroup
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
6
6
  */
7
7
  export type DAXSubnetGroupProperties = {
@@ -10,10 +10,17 @@ export type DAXSubnetGroupProperties = {
10
10
  SubnetIds: string[];
11
11
  };
12
12
  /**
13
- * Resource type definition for AWS::DAX::SubnetGroup
13
+ * Attribute type definition for `AWS::DAX::SubnetGroup`.
14
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#aws-resource-dax-subnetgroup-return-values}
15
+ */
16
+ export type DAXSubnetGroupAttributes = {
17
+ Id: string;
18
+ };
19
+ /**
20
+ * Resource Type definition for AWS::DAX::SubnetGroup
14
21
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
15
22
  */
16
- export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, Record<string, never>> {
23
+ export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, DAXSubnetGroupAttributes> {
17
24
  static readonly Type = "AWS::DAX::SubnetGroup";
18
25
  constructor(logicalId: string, properties: DAXSubnetGroupProperties, options?: $ResourceOptions);
19
26
  }
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for AWS::DAX::SubnetGroup
3
+ * Resource Type definition for AWS::DAX::SubnetGroup
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
5
5
  */
6
6
  export class DAXSubnetGroup extends $Resource {
@@ -14,12 +14,14 @@ export type EC2ClientVpnEndpointProperties = {
14
14
  Description?: string;
15
15
  DisconnectOnSessionTimeout?: boolean;
16
16
  DnsServers?: string[];
17
+ EndpointIpAddressType?: string;
17
18
  SecurityGroupIds?: string[];
18
19
  SelfServicePortal?: string;
19
20
  ServerCertificateArn: string;
20
21
  SessionTimeoutHours?: number;
21
22
  SplitTunnel?: boolean;
22
23
  TagSpecifications?: TagSpecification[];
24
+ TrafficIpAddressType?: string;
23
25
  TransportProtocol?: string;
24
26
  VpcId?: string;
25
27
  VpnPort?: number;