@awboost/cfn-resource-types 0.1.495 → 0.1.496

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.
@@ -34,6 +34,10 @@ export type BedrockDataAutomationProjectProperties = {
34
34
  * @pattern `^[a-zA-Z0-9-_]+$`
35
35
  */
36
36
  ProjectName: string;
37
+ /**
38
+ * Type of the DataAutomationProject - Sync or Async
39
+ */
40
+ ProjectType?: "ASYNC" | "SYNC";
37
41
  /**
38
42
  * Standard output configuration
39
43
  */
@@ -112,6 +116,7 @@ export type AudioLanguageConfiguration = {
112
116
  export type AudioOverrideConfiguration = {
113
117
  LanguageConfiguration?: AudioLanguageConfiguration;
114
118
  ModalityProcessing?: ModalityProcessingConfiguration;
119
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
115
120
  };
116
121
  /**
117
122
  * Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardExtraction`.
@@ -253,6 +258,7 @@ export type DocumentOutputTextFormatType = "PLAIN_TEXT" | "MARKDOWN" | "HTML" |
253
258
  */
254
259
  export type DocumentOverrideConfiguration = {
255
260
  ModalityProcessing?: ModalityProcessingConfiguration;
261
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
256
262
  Splitter?: SplitterConfiguration;
257
263
  };
258
264
  /**
@@ -305,6 +311,7 @@ export type ImageExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION
305
311
  */
306
312
  export type ImageOverrideConfiguration = {
307
313
  ModalityProcessing?: ModalityProcessingConfiguration;
314
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
308
315
  };
309
316
  /**
310
317
  * Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardExtraction`.
@@ -373,6 +380,43 @@ export type OverrideConfiguration = {
373
380
  ModalityRouting?: ModalityRoutingConfiguration;
374
381
  Video?: VideoOverrideConfiguration;
375
382
  };
383
+ /**
384
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntitiesConfiguration`.
385
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitiesconfiguration.html}
386
+ */
387
+ export type PIIEntitiesConfiguration = {
388
+ PiiEntityTypes?: PIIEntityTypes[];
389
+ RedactionMaskMode?: PIIRedactionMaskMode;
390
+ };
391
+ /**
392
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntityTypes`.
393
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitytypes.html}
394
+ */
395
+ export type PIIEntityTypes = "ALL" | "ADDRESS" | "AGE" | "NAME" | "EMAIL" | "PHONE" | "USERNAME" | "PASSWORD" | "DRIVER_ID" | "LICENSE_PLATE" | "VEHICLE_IDENTIFICATION_NUMBER" | "CREDIT_DEBIT_CARD_CVV" | "CREDIT_DEBIT_CARD_EXPIRY" | "CREDIT_DEBIT_CARD_NUMBER" | "PIN" | "INTERNATIONAL_BANK_ACCOUNT_NUMBER" | "SWIFT_CODE" | "IP_ADDRESS" | "MAC_ADDRESS" | "URL" | "AWS_ACCESS_KEY" | "AWS_SECRET_KEY" | "US_BANK_ACCOUNT_NUMBER" | "US_BANK_ROUTING_NUMBER" | "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER" | "US_PASSPORT_NUMBER" | "US_SOCIAL_SECURITY_NUMBER" | "CA_HEALTH_NUMBER" | "CA_SOCIAL_INSURANCE_NUMBER" | "UK_NATIONAL_HEALTH_SERVICE_NUMBER" | "UK_NATIONAL_INSURANCE_NUMBER" | "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
396
+ /**
397
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIRedactionMaskMode`.
398
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piiredactionmaskmode.html}
399
+ */
400
+ export type PIIRedactionMaskMode = "PII" | "ENTITY_TYPE";
401
+ /**
402
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataConfiguration`.
403
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedataconfiguration.html}
404
+ */
405
+ export type SensitiveDataConfiguration = {
406
+ DetectionMode?: SensitiveDataDetectionMode;
407
+ DetectionScope?: SensitiveDataDetectionScope[];
408
+ PiiEntitiesConfiguration?: PIIEntitiesConfiguration;
409
+ };
410
+ /**
411
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionMode`.
412
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionmode.html}
413
+ */
414
+ export type SensitiveDataDetectionMode = "DETECTION" | "DETECTION_AND_REDACTION";
415
+ /**
416
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionScope`.
417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionscope.html}
418
+ */
419
+ export type SensitiveDataDetectionScope = "STANDARD" | "CUSTOM";
376
420
  /**
377
421
  * Type definition for `AWS::Bedrock::DataAutomationProject.SpeakerLabelingConfiguration`.
378
422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html}
@@ -458,6 +502,7 @@ export type VideoExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION
458
502
  */
459
503
  export type VideoOverrideConfiguration = {
460
504
  ModalityProcessing?: ModalityProcessingConfiguration;
505
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
461
506
  };
462
507
  /**
463
508
  * Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardExtraction`.
@@ -70,12 +70,42 @@ export type BedrockKnowledgeBaseAttributes = {
70
70
  */
71
71
  UpdatedAt: string;
72
72
  };
73
+ /**
74
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioConfiguration`.
75
+ * Configure the audio configuration for multi modal ingestion.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audioconfiguration.html}
77
+ */
78
+ export type AudioConfiguration = {
79
+ /**
80
+ * Configure the audio segmentation configuration for multi modal ingestion.
81
+ */
82
+ SegmentationConfiguration: AudioSegmentationConfiguration;
83
+ };
84
+ /**
85
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioSegmentationConfiguration`.
86
+ * Configure the audio segmentation configuration for multi modal ingestion.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audiosegmentationconfiguration.html}
88
+ */
89
+ export type AudioSegmentationConfiguration = {
90
+ /**
91
+ * Duration in seconds to segment the multi modal media
92
+ * @min `1`
93
+ * @max `30`
94
+ */
95
+ FixedLengthDuration: number;
96
+ };
73
97
  /**
74
98
  * Type definition for `AWS::Bedrock::KnowledgeBase.BedrockEmbeddingModelConfiguration`.
75
99
  * The vector configuration details for the Bedrock embeddings model.
76
100
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-bedrockembeddingmodelconfiguration.html}
77
101
  */
78
102
  export type BedrockEmbeddingModelConfiguration = {
103
+ /**
104
+ * List of audio configurations for multi modal ingestion.
105
+ * @minLength `1`
106
+ * @maxLength `1`
107
+ */
108
+ Audio?: AudioConfiguration[];
79
109
  /**
80
110
  * The dimensions details for the vector configuration used on the Bedrock embeddings model.
81
111
  * @min `0`
@@ -86,6 +116,12 @@ export type BedrockEmbeddingModelConfiguration = {
86
116
  * The data type for the vectors when using a model to convert text into vector embeddings.
87
117
  */
88
118
  EmbeddingDataType?: "FLOAT32" | "BINARY";
119
+ /**
120
+ * List of video configurations for multi modal ingestion.
121
+ * @minLength `1`
122
+ * @maxLength `1`
123
+ */
124
+ Video?: VideoConfiguration[];
89
125
  };
90
126
  /**
91
127
  * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
@@ -928,6 +964,30 @@ export type VectorKnowledgeBaseConfiguration = {
928
964
  */
929
965
  SupplementalDataStorageConfiguration?: SupplementalDataStorageConfiguration;
930
966
  };
967
+ /**
968
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoConfiguration`.
969
+ * Configure the video configuration for multi modal ingestion.
970
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videoconfiguration.html}
971
+ */
972
+ export type VideoConfiguration = {
973
+ /**
974
+ * Configure the video segmentation configuration for multi modal ingestion.
975
+ */
976
+ SegmentationConfiguration: VideoSegmentationConfiguration;
977
+ };
978
+ /**
979
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoSegmentationConfiguration`.
980
+ * Configure the video segmentation configuration for multi modal ingestion.
981
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videosegmentationconfiguration.html}
982
+ */
983
+ export type VideoSegmentationConfiguration = {
984
+ /**
985
+ * Duration in seconds to segment the multi modal media
986
+ * @min `1`
987
+ * @max `30`
988
+ */
989
+ FixedLengthDuration: number;
990
+ };
931
991
  /**
932
992
  * Definition of AWS::Bedrock::KnowledgeBase Resource Type
933
993
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-knowledgebase.html}
@@ -0,0 +1,326 @@
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::Connect::Workspace
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
6
+ */
7
+ export type ConnectWorkspaceProperties = {
8
+ /**
9
+ * The resource ARNs associated with the workspace
10
+ */
11
+ Associations?: string[];
12
+ /**
13
+ * The description of the workspace
14
+ * @minLength `0`
15
+ * @maxLength `500`
16
+ * @pattern `^[\P{C}
17
+ ]*$`
18
+ */
19
+ Description?: string;
20
+ /**
21
+ * The identifier of the Amazon Connect instance.
22
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
23
+ */
24
+ InstanceArn: string;
25
+ /**
26
+ * The media items for the workspace
27
+ * @maxLength `4`
28
+ */
29
+ Media?: MediaItem[];
30
+ /**
31
+ * The name of the workspace.
32
+ * @minLength `1`
33
+ * @maxLength `127`
34
+ * @pattern `.*\S.*`
35
+ */
36
+ Name: string;
37
+ /**
38
+ * The pages associated with the workspace
39
+ */
40
+ Pages?: WorkspacePage[];
41
+ /**
42
+ * An array of key-value pairs to apply to this resource.
43
+ * @maxLength `50`
44
+ */
45
+ Tags?: Tag[];
46
+ /**
47
+ * The theme configuration for the workspace
48
+ */
49
+ Theme?: WorkspaceTheme;
50
+ /**
51
+ * The title of the workspace
52
+ * @minLength `0`
53
+ * @maxLength `127`
54
+ * @pattern `^[\P{C}]*$`
55
+ */
56
+ Title?: string;
57
+ /**
58
+ * The visibility of the workspace. Will always be set to ASSIGNED oninitial creation.
59
+ */
60
+ Visibility?: Visibility;
61
+ };
62
+ /**
63
+ * Attribute type definition for `AWS::Connect::Workspace`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html#aws-resource-connect-workspace-return-values}
65
+ */
66
+ export type ConnectWorkspaceAttributes = {
67
+ /**
68
+ * The Amazon Resource Name (ARN) for the workspace.
69
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*workspace/[-a-zA-Z0-9]*$`
70
+ */
71
+ Arn: string;
72
+ /**
73
+ * The identifier of the workspace.
74
+ * @pattern `^.{0,256}$`
75
+ */
76
+ Id: string;
77
+ };
78
+ /**
79
+ * Type definition for `AWS::Connect::Workspace.FontFamily`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-fontfamily.html}
81
+ */
82
+ export type FontFamily = {
83
+ Default?: WorkspaceFontFamily;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::Connect::Workspace.MediaItem`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediaitem.html}
88
+ */
89
+ export type MediaItem = {
90
+ /**
91
+ * @minLength `1`
92
+ * @maxLength `533333`
93
+ * @pattern `.*\S.*`
94
+ */
95
+ Source?: string;
96
+ /**
97
+ * The type of media
98
+ */
99
+ Type: MediaType;
100
+ };
101
+ /**
102
+ * Type definition for `AWS::Connect::Workspace.MediaType`.
103
+ * The type of media
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediatype.html}
105
+ */
106
+ export type MediaType = "IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL";
107
+ /**
108
+ * Type definition for `AWS::Connect::Workspace.PaletteCanvas`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettecanvas.html}
110
+ */
111
+ export type PaletteCanvas = {
112
+ /**
113
+ * @minLength `1`
114
+ * @maxLength `127`
115
+ * @pattern `.*\S.*`
116
+ */
117
+ ActiveBackground?: string;
118
+ /**
119
+ * @minLength `1`
120
+ * @maxLength `127`
121
+ * @pattern `.*\S.*`
122
+ */
123
+ ContainerBackground?: string;
124
+ /**
125
+ * @minLength `1`
126
+ * @maxLength `127`
127
+ * @pattern `.*\S.*`
128
+ */
129
+ PageBackground?: string;
130
+ };
131
+ /**
132
+ * Type definition for `AWS::Connect::Workspace.PaletteHeader`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteheader.html}
134
+ */
135
+ export type PaletteHeader = {
136
+ /**
137
+ * @minLength `1`
138
+ * @maxLength `127`
139
+ * @pattern `.*\S.*`
140
+ */
141
+ Background?: string;
142
+ InvertActionsColors?: boolean;
143
+ /**
144
+ * @minLength `1`
145
+ * @maxLength `127`
146
+ * @pattern `.*\S.*`
147
+ */
148
+ Text?: string;
149
+ /**
150
+ * @minLength `1`
151
+ * @maxLength `127`
152
+ * @pattern `.*\S.*`
153
+ */
154
+ TextHover?: string;
155
+ };
156
+ /**
157
+ * Type definition for `AWS::Connect::Workspace.PaletteNavigation`.
158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettenavigation.html}
159
+ */
160
+ export type PaletteNavigation = {
161
+ /**
162
+ * @minLength `1`
163
+ * @maxLength `127`
164
+ * @pattern `.*\S.*`
165
+ */
166
+ Background?: string;
167
+ InvertActionsColors?: boolean;
168
+ /**
169
+ * @minLength `1`
170
+ * @maxLength `127`
171
+ * @pattern `.*\S.*`
172
+ */
173
+ Text?: string;
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `127`
177
+ * @pattern `.*\S.*`
178
+ */
179
+ TextActive?: string;
180
+ /**
181
+ * @minLength `1`
182
+ * @maxLength `127`
183
+ * @pattern `.*\S.*`
184
+ */
185
+ TextBackgroundActive?: string;
186
+ /**
187
+ * @minLength `1`
188
+ * @maxLength `127`
189
+ * @pattern `.*\S.*`
190
+ */
191
+ TextBackgroundHover?: string;
192
+ /**
193
+ * @minLength `1`
194
+ * @maxLength `127`
195
+ * @pattern `.*\S.*`
196
+ */
197
+ TextHover?: string;
198
+ };
199
+ /**
200
+ * Type definition for `AWS::Connect::Workspace.PalettePrimary`.
201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteprimary.html}
202
+ */
203
+ export type PalettePrimary = {
204
+ /**
205
+ * @minLength `1`
206
+ * @maxLength `127`
207
+ * @pattern `.*\S.*`
208
+ */
209
+ Active?: string;
210
+ /**
211
+ * @minLength `1`
212
+ * @maxLength `127`
213
+ * @pattern `.*\S.*`
214
+ */
215
+ ContrastText?: string;
216
+ /**
217
+ * @minLength `1`
218
+ * @maxLength `127`
219
+ * @pattern `.*\S.*`
220
+ */
221
+ Default?: string;
222
+ };
223
+ /**
224
+ * Type definition for `AWS::Connect::Workspace.Tag`.
225
+ * A key-value pair to associate with a resource.
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-tag.html}
227
+ */
228
+ export type Tag = {
229
+ /**
230
+ * 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 -.
231
+ * @minLength `1`
232
+ * @maxLength `128`
233
+ */
234
+ Key: string;
235
+ /**
236
+ * 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 -.
237
+ * @minLength `0`
238
+ * @maxLength `256`
239
+ */
240
+ Value: string;
241
+ };
242
+ /**
243
+ * Type definition for `AWS::Connect::Workspace.Visibility`.
244
+ * The visibility of the Connect workspace
245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-visibility.html}
246
+ */
247
+ export type Visibility = "ALL" | "ASSIGNED" | "NONE";
248
+ /**
249
+ * Type definition for `AWS::Connect::Workspace.WorkspaceFontFamily`.
250
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacefontfamily.html}
251
+ */
252
+ export type WorkspaceFontFamily = "ARIAL" | "COURIER_NEW" | "GEORGIA" | "TIMES_NEW_ROMAN" | "TREBUCHET" | "VERDANA";
253
+ /**
254
+ * Type definition for `AWS::Connect::Workspace.WorkspacePage`.
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacepage.html}
256
+ */
257
+ export type WorkspacePage = {
258
+ /**
259
+ * The input data for the page.
260
+ * @minLength `0`
261
+ * @maxLength `4096`
262
+ */
263
+ InputData?: string;
264
+ /**
265
+ * The page identifier.
266
+ * @minLength `1`
267
+ * @maxLength `25`
268
+ * @pattern `^(?!\.$)(?!\.\.$)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
269
+ */
270
+ Page: string;
271
+ /**
272
+ * The Amazon Resource Name (ARN) of the resource associated with the page.
273
+ * @maxLength `2048`
274
+ */
275
+ ResourceArn: string;
276
+ /**
277
+ * The slug for the page.
278
+ * @minLength `0`
279
+ * @maxLength `63`
280
+ * @pattern `^$|^[\p{L}\p{Z}\p{N}\-_.:=@'|]{3,}$`
281
+ */
282
+ Slug?: string;
283
+ };
284
+ /**
285
+ * Type definition for `AWS::Connect::Workspace.WorkspaceTheme`.
286
+ * The theme configuration for the Connect workspace
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacetheme.html}
288
+ */
289
+ export type WorkspaceTheme = {
290
+ Dark?: WorkspaceThemeConfig;
291
+ Light?: WorkspaceThemeConfig;
292
+ };
293
+ /**
294
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeConfig`.
295
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemeconfig.html}
296
+ */
297
+ export type WorkspaceThemeConfig = {
298
+ Palette?: WorkspaceThemePalette;
299
+ Typography?: WorkspaceThemeTypography;
300
+ };
301
+ /**
302
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemePalette`.
303
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemepalette.html}
304
+ */
305
+ export type WorkspaceThemePalette = {
306
+ Canvas?: PaletteCanvas;
307
+ Header?: PaletteHeader;
308
+ Navigation?: PaletteNavigation;
309
+ Primary?: PalettePrimary;
310
+ };
311
+ /**
312
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeTypography`.
313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemetypography.html}
314
+ */
315
+ export type WorkspaceThemeTypography = {
316
+ FontFamily?: FontFamily;
317
+ };
318
+ /**
319
+ * Resource Type definition for AWS::Connect::Workspace
320
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
321
+ */
322
+ export declare class ConnectWorkspace extends $Resource<"AWS::Connect::Workspace", ConnectWorkspaceProperties, ConnectWorkspaceAttributes> {
323
+ static readonly Type = "AWS::Connect::Workspace";
324
+ constructor(logicalId: string, properties: ConnectWorkspaceProperties, options?: $ResourceOptions);
325
+ }
326
+ //# sourceMappingURL=AWS-Connect-Workspace.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Connect::Workspace
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
5
+ */
6
+ export class ConnectWorkspace extends $Resource {
7
+ static Type = "AWS::Connect::Workspace";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectWorkspace.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-Workspace.js.map
@@ -15,6 +15,10 @@ export type DevOpsAgentAssociationProperties = {
15
15
  * The configuration that directs how AgentSpace interacts with the given service
16
16
  */
17
17
  Configuration: ServiceConfiguration;
18
+ /**
19
+ * Set of linked association IDs for parent-child relationships
20
+ */
21
+ LinkedAssociationIds?: string[];
18
22
  /**
19
23
  * The identifier for the associated service
20
24
  * @minLength `1`
@@ -67,6 +67,24 @@ export type ECSExpressGatewayServiceAttributes = {
67
67
  TaskRoleArn: string;
68
68
  }[];
69
69
  CreatedAt: string;
70
+ ECSManagedResourceArns: {
71
+ AutoScaling: {
72
+ ApplicationAutoScalingPolicies: string[];
73
+ ScalableTarget: string;
74
+ };
75
+ IngressPath: {
76
+ CertificateArn: string;
77
+ ListenerArn: string;
78
+ ListenerRuleArn: string;
79
+ LoadBalancerArn: string;
80
+ LoadBalancerSecurityGroups: string[];
81
+ TargetGroupArns: string[];
82
+ };
83
+ LogGroups: string[];
84
+ MetricAlarms: string[];
85
+ ServiceSecurityGroups: string[];
86
+ };
87
+ Endpoint: string;
70
88
  ServiceArn: string;
71
89
  Status: {
72
90
  StatusCode: ExpressGatewayServiceStatusCode;
@@ -1,43 +1,37 @@
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::FSx::DataRepositoryAssociation`.
5
- * Creates an Amazon FSx for Lustre data repository association (DRA). A data repository association is a link between a directory on the file system and an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository associations on a file system. Data repository associations are supported on all FSx for Lustre 2.12 and newer file systems, excluding ``scratch_1`` deployment type.
6
- Each data repository association must have a unique Amazon FSx file system directory and a unique S3 bucket or prefix associated with it. You can configure a data repository association for automatic import only, for automatic export only, or for both. To learn more about linking a data repository to your file system, see [Linking your file system to an S3 bucket](https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html).
4
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
7
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
8
6
  */
9
7
  export type FSxDataRepositoryAssociationProperties = {
10
8
  /**
11
- * A boolean flag indicating whether an import data repository task to import metadata should run after the data repository association is created. The task runs if this flag is set to ``true``.
9
+ * A boolean flag indicating whether an import data repository task to import metadata should run after the data repository association is created. The task runs if this flag is set to true.
12
10
  */
13
11
  BatchImportMetaDataOnCreate?: boolean;
14
12
  /**
15
- * The path to the Amazon S3 data repository that will be linked to the file system. The path can be an S3 bucket or prefix in the format ``s3://myBucket/myPrefix/``. This path specifies where in the S3 data repository files will be imported from or exported to.
13
+ * The path to the Amazon S3 data repository that will be linked to the file system. The path can be an S3 bucket or prefix in the format s3://myBucket/myPrefix/ . This path specifies where in the S3 data repository files will be imported from or exported to.
16
14
  */
17
15
  DataRepositoryPath: string;
18
16
  /**
19
- * The ID of the file system on which the data repository association is configured.
17
+ * The globally unique ID of the file system, assigned by Amazon FSx.
20
18
  */
21
19
  FileSystemId: string;
22
20
  /**
23
- * A path on the Amazon FSx for Lustre file system that points to a high-level directory (such as ``/ns1/``) or subdirectory (such as ``/ns1/subdir/``) that will be mapped 1-1 with ``DataRepositoryPath``. The leading forward slash in the name is required. Two data repository associations cannot have overlapping file system paths. For example, if a data repository is associated with file system path ``/ns1/``, then you cannot link another data repository with file system path ``/ns1/ns2``.
24
- This path specifies where in your file system files will be exported from or imported to. This file system directory can be linked to only one Amazon S3 bucket, and no other S3 bucket can be linked to the directory.
25
- If you specify only a forward slash (``/``) as the file system path, you can link only one data repository to the file system. You can only specify "/" as the file system path for the first data repository associated with a file system.
26
- */
21
+ * This path specifies where in your file system files will be exported from or imported to. This file system directory can be linked to only one Amazon S3 bucket, and no other S3 bucket can be linked to the directory.
22
+ */
27
23
  FileSystemPath: string;
28
24
  /**
29
- * For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system or cache.
30
- The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
31
- */
25
+ * For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.
26
+ */
32
27
  ImportedFileChunkSize?: number;
33
28
  /**
34
29
  * The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
35
30
  */
36
31
  S3?: S3;
37
32
  /**
38
- * An array of key-value pairs to apply to this resource.
39
- For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
40
- */
33
+ * A list of Tag values, with a maximum of 50 elements.
34
+ */
41
35
  Tags?: Tag[];
42
36
  };
43
37
  /**
@@ -45,43 +39,35 @@ export type FSxDataRepositoryAssociationProperties = {
45
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html#aws-resource-fsx-datarepositoryassociation-return-values}
46
40
  */
47
41
  export type FSxDataRepositoryAssociationAttributes = {
42
+ /**
43
+ * The system-generated, unique ID of the data repository association.
44
+ */
48
45
  AssociationId: string;
46
+ /**
47
+ * The Amazon Resource Name (ARN) for a given resource. ARNs uniquely identify Amazon Web Services resources. We require an ARN when you need to specify a resource unambiguously across all of Amazon Web Services. For more information, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
48
+ */
49
49
  ResourceARN: string;
50
50
  };
51
51
  /**
52
52
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoExportPolicy`.
53
- * Describes a data repository association's automatic export policy. The ``AutoExportPolicy`` defines the types of updated objects on the file system that will be automatically exported to the data repository. As you create, modify, or delete files, Amazon FSx for Lustre automatically exports the defined changes asynchronously once your application finishes modifying the file.
54
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
53
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
55
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoexportpolicy.html}
56
55
  */
57
56
  export type AutoExportPolicy = {
58
57
  /**
59
- * The ``AutoExportPolicy`` can have the following event values:
60
- + ``NEW`` - New files and directories are automatically exported to the data repository as they are added to the file system.
61
- + ``CHANGED`` - Changes to files and directories on the file system are automatically exported to the data repository.
62
- + ``DELETED`` - Files and directories are automatically deleted on the data repository when they are deleted on the file system.
63
-
64
- You can define any combination of event types for your ``AutoExportPolicy``.
65
- * @maxLength `3`
66
- */
58
+ * @maxLength `3`
59
+ */
67
60
  Events: EventType[];
68
61
  };
69
62
  /**
70
63
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoImportPolicy`.
71
- * Describes the data repository association's automatic import policy. The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory listings up to date by importing changes to your Amazon FSx for Lustre file system as you modify objects in a linked S3 bucket.
72
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
64
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
73
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoimportpolicy.html}
74
66
  */
75
67
  export type AutoImportPolicy = {
76
68
  /**
77
- * The ``AutoImportPolicy`` can have the following event values:
78
- + ``NEW`` - Amazon FSx automatically imports metadata of files added to the linked S3 bucket that do not currently exist in the FSx file system.
79
- + ``CHANGED`` - Amazon FSx automatically updates file metadata and invalidates existing file content on the file system as files change in the data repository.
80
- + ``DELETED`` - Amazon FSx automatically deletes files on the file system as corresponding files are deleted in the data repository.
81
-
82
- You can define any combination of event types for your ``AutoImportPolicy``.
83
- * @maxLength `3`
84
- */
69
+ * @maxLength `3`
70
+ */
85
71
  Events: EventType[];
86
72
  };
87
73
  /**
@@ -96,39 +82,35 @@ export type EventType = "NEW" | "CHANGED" | "DELETED";
96
82
  */
97
83
  export type S3 = {
98
84
  /**
99
- * Describes a data repository association's automatic export policy. The ``AutoExportPolicy`` defines the types of updated objects on the file system that will be automatically exported to the data repository. As you create, modify, or delete files, Amazon FSx for Lustre automatically exports the defined changes asynchronously once your application finishes modifying the file.
100
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
101
- */
85
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
86
+ */
102
87
  AutoExportPolicy?: AutoExportPolicy;
103
88
  /**
104
- * Describes the data repository association's automatic import policy. The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory listings up to date by importing changes to your Amazon FSx for Lustre file system as you modify objects in a linked S3 bucket.
105
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
106
- */
89
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
90
+ */
107
91
  AutoImportPolicy?: AutoImportPolicy;
108
92
  };
109
93
  /**
110
94
  * Type definition for `AWS::FSx::DataRepositoryAssociation.Tag`.
111
- * Specifies a key-value pair for a resource tag.
95
+ * A key-value pair to associate with a resource.
112
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-tag.html}
113
97
  */
114
98
  export type Tag = {
115
99
  /**
116
- * A value that specifies the ``TagKey``, the name of the tag. Tag keys must be unique for the resource to which they are attached.
100
+ * 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 -.
117
101
  * @minLength `1`
118
102
  * @maxLength `128`
119
103
  */
120
104
  Key: string;
121
105
  /**
122
- * A value that specifies the ``TagValue``, the value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key-value pair in a tag set of ``finances : April`` and also of ``payroll : April``.
106
+ * 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 -.
123
107
  * @minLength `0`
124
108
  * @maxLength `256`
125
109
  */
126
110
  Value: string;
127
111
  };
128
112
  /**
129
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
130
- * Creates an Amazon FSx for Lustre data repository association (DRA). A data repository association is a link between a directory on the file system and an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository associations on a file system. Data repository associations are supported on all FSx for Lustre 2.12 and newer file systems, excluding ``scratch_1`` deployment type.
131
- Each data repository association must have a unique Amazon FSx file system directory and a unique S3 bucket or prefix associated with it. You can configure a data repository association for automatic import only, for automatic export only, or for both. To learn more about linking a data repository to your file system, see [Linking your file system to an S3 bucket](https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html).
113
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
132
114
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
133
115
  */
134
116
  export declare class FSxDataRepositoryAssociation extends $Resource<"AWS::FSx::DataRepositoryAssociation", FSxDataRepositoryAssociationProperties, FSxDataRepositoryAssociationAttributes> {
@@ -1,8 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
4
- * Creates an Amazon FSx for Lustre data repository association (DRA). A data repository association is a link between a directory on the file system and an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository associations on a file system. Data repository associations are supported on all FSx for Lustre 2.12 and newer file systems, excluding ``scratch_1`` deployment type.
5
- Each data repository association must have a unique Amazon FSx file system directory and a unique S3 bucket or prefix associated with it. You can configure a data repository association for automatic import only, for automatic export only, or for both. To learn more about linking a data repository to your file system, see [Linking your file system to an S3 bucket](https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html).
3
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
6
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
7
5
  */
8
6
  export class FSxDataRepositoryAssociation extends $Resource {
@@ -26,6 +26,7 @@ export type Route53HostedZoneProperties = {
26
26
  If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
27
27
  */
28
28
  HostedZoneConfig?: HostedZoneConfig;
29
+ HostedZoneFeatures?: HostedZoneFeatures;
29
30
  /**
30
31
  * Adds, edits, or deletes tags for a health check or a hosted zone.
31
32
  For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *User Guide*.
@@ -74,6 +75,16 @@ export type HostedZoneConfig = {
74
75
  */
75
76
  Comment?: string;
76
77
  };
78
+ /**
79
+ * Type definition for `AWS::Route53::HostedZone.HostedZoneFeatures`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html}
81
+ */
82
+ export type HostedZoneFeatures = {
83
+ /**
84
+ * Enable accelerated recovery on your public hosted zone to gain the ability to make changes to DNS records in the event of us-east-1 unavailability.
85
+ */
86
+ EnableAcceleratedRecovery?: boolean;
87
+ };
77
88
  /**
78
89
  * Type definition for `AWS::Route53::HostedZone.HostedZoneTag`.
79
90
  * A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.495",
3
+ "version": "0.1.496",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },