@awboost/cfntypes 0.100.349 → 0.100.351

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.
@@ -20635,6 +20635,10 @@ export type BedrockDataAutomationProjectProps = {
20635
20635
  * @pattern `^[a-zA-Z0-9-_]+$`
20636
20636
  */
20637
20637
  ProjectName: string;
20638
+ /**
20639
+ * Type of the DataAutomationProject - Sync or Async
20640
+ */
20641
+ ProjectType?: "ASYNC" | "SYNC";
20638
20642
  /**
20639
20643
  * Standard output configuration
20640
20644
  */
@@ -20713,6 +20717,7 @@ export type BedrockDataAutomationProjectAudioLanguageConfiguration = {
20713
20717
  export type BedrockDataAutomationProjectAudioOverrideConfiguration = {
20714
20718
  LanguageConfiguration?: BedrockDataAutomationProjectAudioLanguageConfiguration;
20715
20719
  ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
20720
+ SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
20716
20721
  };
20717
20722
  /**
20718
20723
  * Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardExtraction`.
@@ -20854,6 +20859,7 @@ export type BedrockDataAutomationProjectDocumentOutputTextFormatType = "PLAIN_TE
20854
20859
  */
20855
20860
  export type BedrockDataAutomationProjectDocumentOverrideConfiguration = {
20856
20861
  ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
20862
+ SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
20857
20863
  Splitter?: BedrockDataAutomationProjectSplitterConfiguration;
20858
20864
  };
20859
20865
  /**
@@ -20906,6 +20912,7 @@ export type BedrockDataAutomationProjectImageExtractionCategoryType = "CONTENT_M
20906
20912
  */
20907
20913
  export type BedrockDataAutomationProjectImageOverrideConfiguration = {
20908
20914
  ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
20915
+ SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
20909
20916
  };
20910
20917
  /**
20911
20918
  * Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardExtraction`.
@@ -20974,6 +20981,43 @@ export type BedrockDataAutomationProjectOverrideConfiguration = {
20974
20981
  ModalityRouting?: BedrockDataAutomationProjectModalityRoutingConfiguration;
20975
20982
  Video?: BedrockDataAutomationProjectVideoOverrideConfiguration;
20976
20983
  };
20984
+ /**
20985
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntitiesConfiguration`.
20986
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitiesconfiguration.html}
20987
+ */
20988
+ export type BedrockDataAutomationProjectPIIEntitiesConfiguration = {
20989
+ PiiEntityTypes?: BedrockDataAutomationProjectPIIEntityTypes[];
20990
+ RedactionMaskMode?: BedrockDataAutomationProjectPIIRedactionMaskMode;
20991
+ };
20992
+ /**
20993
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntityTypes`.
20994
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitytypes.html}
20995
+ */
20996
+ export type BedrockDataAutomationProjectPIIEntityTypes = "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";
20997
+ /**
20998
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIRedactionMaskMode`.
20999
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piiredactionmaskmode.html}
21000
+ */
21001
+ export type BedrockDataAutomationProjectPIIRedactionMaskMode = "PII" | "ENTITY_TYPE";
21002
+ /**
21003
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataConfiguration`.
21004
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedataconfiguration.html}
21005
+ */
21006
+ export type BedrockDataAutomationProjectSensitiveDataConfiguration = {
21007
+ DetectionMode?: BedrockDataAutomationProjectSensitiveDataDetectionMode;
21008
+ DetectionScope?: BedrockDataAutomationProjectSensitiveDataDetectionScope[];
21009
+ PiiEntitiesConfiguration?: BedrockDataAutomationProjectPIIEntitiesConfiguration;
21010
+ };
21011
+ /**
21012
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionMode`.
21013
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionmode.html}
21014
+ */
21015
+ export type BedrockDataAutomationProjectSensitiveDataDetectionMode = "DETECTION" | "DETECTION_AND_REDACTION";
21016
+ /**
21017
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionScope`.
21018
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionscope.html}
21019
+ */
21020
+ export type BedrockDataAutomationProjectSensitiveDataDetectionScope = "STANDARD" | "CUSTOM";
20977
21021
  /**
20978
21022
  * Type definition for `AWS::Bedrock::DataAutomationProject.SpeakerLabelingConfiguration`.
20979
21023
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html}
@@ -21059,6 +21103,7 @@ export type BedrockDataAutomationProjectVideoExtractionCategoryType = "CONTENT_M
21059
21103
  */
21060
21104
  export type BedrockDataAutomationProjectVideoOverrideConfiguration = {
21061
21105
  ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
21106
+ SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
21062
21107
  };
21063
21108
  /**
21064
21109
  * Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardExtraction`.
@@ -24677,12 +24722,42 @@ export type BedrockKnowledgeBaseAttributes = {
24677
24722
  */
24678
24723
  UpdatedAt: string;
24679
24724
  };
24725
+ /**
24726
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioConfiguration`.
24727
+ * Configure the audio configuration for multi modal ingestion.
24728
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audioconfiguration.html}
24729
+ */
24730
+ export type BedrockKnowledgeBaseAudioConfiguration = {
24731
+ /**
24732
+ * Configure the audio segmentation configuration for multi modal ingestion.
24733
+ */
24734
+ SegmentationConfiguration: BedrockKnowledgeBaseAudioSegmentationConfiguration;
24735
+ };
24736
+ /**
24737
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioSegmentationConfiguration`.
24738
+ * Configure the audio segmentation configuration for multi modal ingestion.
24739
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audiosegmentationconfiguration.html}
24740
+ */
24741
+ export type BedrockKnowledgeBaseAudioSegmentationConfiguration = {
24742
+ /**
24743
+ * Duration in seconds to segment the multi modal media
24744
+ * @min `1`
24745
+ * @max `30`
24746
+ */
24747
+ FixedLengthDuration: number;
24748
+ };
24680
24749
  /**
24681
24750
  * Type definition for `AWS::Bedrock::KnowledgeBase.BedrockEmbeddingModelConfiguration`.
24682
24751
  * The vector configuration details for the Bedrock embeddings model.
24683
24752
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-bedrockembeddingmodelconfiguration.html}
24684
24753
  */
24685
24754
  export type BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration = {
24755
+ /**
24756
+ * List of audio configurations for multi modal ingestion.
24757
+ * @minLength `1`
24758
+ * @maxLength `1`
24759
+ */
24760
+ Audio?: BedrockKnowledgeBaseAudioConfiguration[];
24686
24761
  /**
24687
24762
  * The dimensions details for the vector configuration used on the Bedrock embeddings model.
24688
24763
  * @min `0`
@@ -24693,6 +24768,12 @@ export type BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration = {
24693
24768
  * The data type for the vectors when using a model to convert text into vector embeddings.
24694
24769
  */
24695
24770
  EmbeddingDataType?: "FLOAT32" | "BINARY";
24771
+ /**
24772
+ * List of video configurations for multi modal ingestion.
24773
+ * @minLength `1`
24774
+ * @maxLength `1`
24775
+ */
24776
+ Video?: BedrockKnowledgeBaseVideoConfiguration[];
24696
24777
  };
24697
24778
  /**
24698
24779
  * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
@@ -25535,6 +25616,30 @@ export type BedrockKnowledgeBaseVectorKnowledgeBaseConfiguration = {
25535
25616
  */
25536
25617
  SupplementalDataStorageConfiguration?: BedrockKnowledgeBaseSupplementalDataStorageConfiguration;
25537
25618
  };
25619
+ /**
25620
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoConfiguration`.
25621
+ * Configure the video configuration for multi modal ingestion.
25622
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videoconfiguration.html}
25623
+ */
25624
+ export type BedrockKnowledgeBaseVideoConfiguration = {
25625
+ /**
25626
+ * Configure the video segmentation configuration for multi modal ingestion.
25627
+ */
25628
+ SegmentationConfiguration: BedrockKnowledgeBaseVideoSegmentationConfiguration;
25629
+ };
25630
+ /**
25631
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoSegmentationConfiguration`.
25632
+ * Configure the video segmentation configuration for multi modal ingestion.
25633
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videosegmentationconfiguration.html}
25634
+ */
25635
+ export type BedrockKnowledgeBaseVideoSegmentationConfiguration = {
25636
+ /**
25637
+ * Duration in seconds to segment the multi modal media
25638
+ * @min `1`
25639
+ * @max `30`
25640
+ */
25641
+ FixedLengthDuration: number;
25642
+ };
25538
25643
  /**
25539
25644
  * Definition of AWS::Bedrock::Prompt Resource Type
25540
25645
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-prompt.html}
@@ -45099,6 +45204,321 @@ export type ConnectViewVersionAttributes = {
45099
45204
  */
45100
45205
  ViewVersionArn: string;
45101
45206
  };
45207
+ /**
45208
+ * Resource Type definition for AWS::Connect::Workspace
45209
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
45210
+ */
45211
+ export type ConnectWorkspaceProps = {
45212
+ /**
45213
+ * The resource ARNs associated with the workspace
45214
+ */
45215
+ Associations?: string[];
45216
+ /**
45217
+ * The description of the workspace
45218
+ * @minLength `0`
45219
+ * @maxLength `500`
45220
+ * @pattern `^[\P{C}
45221
+ ]*$`
45222
+ */
45223
+ Description?: string;
45224
+ /**
45225
+ * The identifier of the Amazon Connect instance.
45226
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
45227
+ */
45228
+ InstanceArn: string;
45229
+ /**
45230
+ * The media items for the workspace
45231
+ * @maxLength `4`
45232
+ */
45233
+ Media?: ConnectWorkspaceMediaItem[];
45234
+ /**
45235
+ * The name of the workspace.
45236
+ * @minLength `1`
45237
+ * @maxLength `127`
45238
+ * @pattern `.*\S.*`
45239
+ */
45240
+ Name: string;
45241
+ /**
45242
+ * The pages associated with the workspace
45243
+ */
45244
+ Pages?: ConnectWorkspaceWorkspacePage[];
45245
+ /**
45246
+ * An array of key-value pairs to apply to this resource.
45247
+ * @maxLength `50`
45248
+ */
45249
+ Tags?: ConnectWorkspaceTag[];
45250
+ /**
45251
+ * The theme configuration for the workspace
45252
+ */
45253
+ Theme?: ConnectWorkspaceWorkspaceTheme;
45254
+ /**
45255
+ * The title of the workspace
45256
+ * @minLength `0`
45257
+ * @maxLength `127`
45258
+ * @pattern `^[\P{C}]*$`
45259
+ */
45260
+ Title?: string;
45261
+ /**
45262
+ * The visibility of the workspace. Will always be set to ASSIGNED oninitial creation.
45263
+ */
45264
+ Visibility?: ConnectWorkspaceVisibility;
45265
+ };
45266
+ /**
45267
+ * Attribute type definition for `AWS::Connect::Workspace`.
45268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html#aws-resource-connect-workspace-return-values}
45269
+ */
45270
+ export type ConnectWorkspaceAttributes = {
45271
+ /**
45272
+ * The Amazon Resource Name (ARN) for the workspace.
45273
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*workspace/[-a-zA-Z0-9]*$`
45274
+ */
45275
+ Arn: string;
45276
+ /**
45277
+ * The identifier of the workspace.
45278
+ * @pattern `^.{0,256}$`
45279
+ */
45280
+ Id: string;
45281
+ };
45282
+ /**
45283
+ * Type definition for `AWS::Connect::Workspace.FontFamily`.
45284
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-fontfamily.html}
45285
+ */
45286
+ export type ConnectWorkspaceFontFamily = {
45287
+ Default?: ConnectWorkspaceWorkspaceFontFamily;
45288
+ };
45289
+ /**
45290
+ * Type definition for `AWS::Connect::Workspace.MediaItem`.
45291
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediaitem.html}
45292
+ */
45293
+ export type ConnectWorkspaceMediaItem = {
45294
+ /**
45295
+ * @minLength `1`
45296
+ * @maxLength `533333`
45297
+ * @pattern `.*\S.*`
45298
+ */
45299
+ Source?: string;
45300
+ /**
45301
+ * The type of media
45302
+ */
45303
+ Type: ConnectWorkspaceMediaType;
45304
+ };
45305
+ /**
45306
+ * Type definition for `AWS::Connect::Workspace.MediaType`.
45307
+ * The type of media
45308
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediatype.html}
45309
+ */
45310
+ export type ConnectWorkspaceMediaType = "IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL";
45311
+ /**
45312
+ * Type definition for `AWS::Connect::Workspace.PaletteCanvas`.
45313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettecanvas.html}
45314
+ */
45315
+ export type ConnectWorkspacePaletteCanvas = {
45316
+ /**
45317
+ * @minLength `1`
45318
+ * @maxLength `127`
45319
+ * @pattern `.*\S.*`
45320
+ */
45321
+ ActiveBackground?: string;
45322
+ /**
45323
+ * @minLength `1`
45324
+ * @maxLength `127`
45325
+ * @pattern `.*\S.*`
45326
+ */
45327
+ ContainerBackground?: string;
45328
+ /**
45329
+ * @minLength `1`
45330
+ * @maxLength `127`
45331
+ * @pattern `.*\S.*`
45332
+ */
45333
+ PageBackground?: string;
45334
+ };
45335
+ /**
45336
+ * Type definition for `AWS::Connect::Workspace.PaletteHeader`.
45337
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteheader.html}
45338
+ */
45339
+ export type ConnectWorkspacePaletteHeader = {
45340
+ /**
45341
+ * @minLength `1`
45342
+ * @maxLength `127`
45343
+ * @pattern `.*\S.*`
45344
+ */
45345
+ Background?: string;
45346
+ InvertActionsColors?: boolean;
45347
+ /**
45348
+ * @minLength `1`
45349
+ * @maxLength `127`
45350
+ * @pattern `.*\S.*`
45351
+ */
45352
+ Text?: string;
45353
+ /**
45354
+ * @minLength `1`
45355
+ * @maxLength `127`
45356
+ * @pattern `.*\S.*`
45357
+ */
45358
+ TextHover?: string;
45359
+ };
45360
+ /**
45361
+ * Type definition for `AWS::Connect::Workspace.PaletteNavigation`.
45362
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettenavigation.html}
45363
+ */
45364
+ export type ConnectWorkspacePaletteNavigation = {
45365
+ /**
45366
+ * @minLength `1`
45367
+ * @maxLength `127`
45368
+ * @pattern `.*\S.*`
45369
+ */
45370
+ Background?: string;
45371
+ InvertActionsColors?: boolean;
45372
+ /**
45373
+ * @minLength `1`
45374
+ * @maxLength `127`
45375
+ * @pattern `.*\S.*`
45376
+ */
45377
+ Text?: string;
45378
+ /**
45379
+ * @minLength `1`
45380
+ * @maxLength `127`
45381
+ * @pattern `.*\S.*`
45382
+ */
45383
+ TextActive?: string;
45384
+ /**
45385
+ * @minLength `1`
45386
+ * @maxLength `127`
45387
+ * @pattern `.*\S.*`
45388
+ */
45389
+ TextBackgroundActive?: string;
45390
+ /**
45391
+ * @minLength `1`
45392
+ * @maxLength `127`
45393
+ * @pattern `.*\S.*`
45394
+ */
45395
+ TextBackgroundHover?: string;
45396
+ /**
45397
+ * @minLength `1`
45398
+ * @maxLength `127`
45399
+ * @pattern `.*\S.*`
45400
+ */
45401
+ TextHover?: string;
45402
+ };
45403
+ /**
45404
+ * Type definition for `AWS::Connect::Workspace.PalettePrimary`.
45405
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteprimary.html}
45406
+ */
45407
+ export type ConnectWorkspacePalettePrimary = {
45408
+ /**
45409
+ * @minLength `1`
45410
+ * @maxLength `127`
45411
+ * @pattern `.*\S.*`
45412
+ */
45413
+ Active?: string;
45414
+ /**
45415
+ * @minLength `1`
45416
+ * @maxLength `127`
45417
+ * @pattern `.*\S.*`
45418
+ */
45419
+ ContrastText?: string;
45420
+ /**
45421
+ * @minLength `1`
45422
+ * @maxLength `127`
45423
+ * @pattern `.*\S.*`
45424
+ */
45425
+ Default?: string;
45426
+ };
45427
+ /**
45428
+ * Type definition for `AWS::Connect::Workspace.Tag`.
45429
+ * A key-value pair to associate with a resource.
45430
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-tag.html}
45431
+ */
45432
+ export type ConnectWorkspaceTag = {
45433
+ /**
45434
+ * 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 -.
45435
+ * @minLength `1`
45436
+ * @maxLength `128`
45437
+ */
45438
+ Key: string;
45439
+ /**
45440
+ * 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 -.
45441
+ * @minLength `0`
45442
+ * @maxLength `256`
45443
+ */
45444
+ Value: string;
45445
+ };
45446
+ /**
45447
+ * Type definition for `AWS::Connect::Workspace.Visibility`.
45448
+ * The visibility of the Connect workspace
45449
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-visibility.html}
45450
+ */
45451
+ export type ConnectWorkspaceVisibility = "ALL" | "ASSIGNED" | "NONE";
45452
+ /**
45453
+ * Type definition for `AWS::Connect::Workspace.WorkspaceFontFamily`.
45454
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacefontfamily.html}
45455
+ */
45456
+ export type ConnectWorkspaceWorkspaceFontFamily = "ARIAL" | "COURIER_NEW" | "GEORGIA" | "TIMES_NEW_ROMAN" | "TREBUCHET" | "VERDANA";
45457
+ /**
45458
+ * Type definition for `AWS::Connect::Workspace.WorkspacePage`.
45459
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacepage.html}
45460
+ */
45461
+ export type ConnectWorkspaceWorkspacePage = {
45462
+ /**
45463
+ * The input data for the page.
45464
+ * @minLength `0`
45465
+ * @maxLength `4096`
45466
+ */
45467
+ InputData?: string;
45468
+ /**
45469
+ * The page identifier.
45470
+ * @minLength `1`
45471
+ * @maxLength `25`
45472
+ * @pattern `^(?!\.$)(?!\.\.$)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
45473
+ */
45474
+ Page: string;
45475
+ /**
45476
+ * The Amazon Resource Name (ARN) of the resource associated with the page.
45477
+ * @maxLength `2048`
45478
+ */
45479
+ ResourceArn: string;
45480
+ /**
45481
+ * The slug for the page.
45482
+ * @minLength `0`
45483
+ * @maxLength `63`
45484
+ * @pattern `^$|^[\p{L}\p{Z}\p{N}\-_.:=@'|]{3,}$`
45485
+ */
45486
+ Slug?: string;
45487
+ };
45488
+ /**
45489
+ * Type definition for `AWS::Connect::Workspace.WorkspaceTheme`.
45490
+ * The theme configuration for the Connect workspace
45491
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacetheme.html}
45492
+ */
45493
+ export type ConnectWorkspaceWorkspaceTheme = {
45494
+ Dark?: ConnectWorkspaceWorkspaceThemeConfig;
45495
+ Light?: ConnectWorkspaceWorkspaceThemeConfig;
45496
+ };
45497
+ /**
45498
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeConfig`.
45499
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemeconfig.html}
45500
+ */
45501
+ export type ConnectWorkspaceWorkspaceThemeConfig = {
45502
+ Palette?: ConnectWorkspaceWorkspaceThemePalette;
45503
+ Typography?: ConnectWorkspaceWorkspaceThemeTypography;
45504
+ };
45505
+ /**
45506
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemePalette`.
45507
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemepalette.html}
45508
+ */
45509
+ export type ConnectWorkspaceWorkspaceThemePalette = {
45510
+ Canvas?: ConnectWorkspacePaletteCanvas;
45511
+ Header?: ConnectWorkspacePaletteHeader;
45512
+ Navigation?: ConnectWorkspacePaletteNavigation;
45513
+ Primary?: ConnectWorkspacePalettePrimary;
45514
+ };
45515
+ /**
45516
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeTypography`.
45517
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemetypography.html}
45518
+ */
45519
+ export type ConnectWorkspaceWorkspaceThemeTypography = {
45520
+ FontFamily?: ConnectWorkspaceFontFamily;
45521
+ };
45102
45522
  /**
45103
45523
  * Definition of AWS::ConnectCampaigns::Campaign Resource Type
45104
45524
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html}
@@ -55176,6 +55596,10 @@ export type DevOpsAgentAssociationProps = {
55176
55596
  * The configuration that directs how AgentSpace interacts with the given service
55177
55597
  */
55178
55598
  Configuration: DevOpsAgentAssociationServiceConfiguration;
55599
+ /**
55600
+ * Set of linked association IDs for parent-child relationships
55601
+ */
55602
+ LinkedAssociationIds?: string[];
55179
55603
  /**
55180
55604
  * The identifier for the associated service
55181
55605
  * @minLength `1`
@@ -69707,6 +70131,24 @@ export type ECSExpressGatewayServiceAttributes = {
69707
70131
  TaskRoleArn: string;
69708
70132
  }[];
69709
70133
  CreatedAt: string;
70134
+ ECSManagedResourceArns: {
70135
+ AutoScaling: {
70136
+ ApplicationAutoScalingPolicies: string[];
70137
+ ScalableTarget: string;
70138
+ };
70139
+ IngressPath: {
70140
+ CertificateArn: string;
70141
+ ListenerArn: string;
70142
+ ListenerRuleArn: string;
70143
+ LoadBalancerArn: string;
70144
+ LoadBalancerSecurityGroups: string[];
70145
+ TargetGroupArns: string[];
70146
+ };
70147
+ LogGroups: string[];
70148
+ MetricAlarms: string[];
70149
+ ServiceSecurityGroups: string[];
70150
+ };
70151
+ Endpoint: string;
69710
70152
  ServiceArn: string;
69711
70153
  Status: {
69712
70154
  StatusCode: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
@@ -82314,43 +82756,37 @@ export type FraudDetectorVariableTag = {
82314
82756
  Value: string;
82315
82757
  };
82316
82758
  /**
82317
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
82318
- * 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.
82319
- 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).
82759
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
82320
82760
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
82321
82761
  */
82322
82762
  export type FSxDataRepositoryAssociationProps = {
82323
82763
  /**
82324
- * 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``.
82764
+ * 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.
82325
82765
  */
82326
82766
  BatchImportMetaDataOnCreate?: boolean;
82327
82767
  /**
82328
- * 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.
82768
+ * 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.
82329
82769
  */
82330
82770
  DataRepositoryPath: string;
82331
82771
  /**
82332
- * The ID of the file system on which the data repository association is configured.
82772
+ * The globally unique ID of the file system, assigned by Amazon FSx.
82333
82773
  */
82334
82774
  FileSystemId: string;
82335
82775
  /**
82336
- * 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``.
82337
- 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.
82338
- 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.
82339
- */
82776
+ * 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.
82777
+ */
82340
82778
  FileSystemPath: string;
82341
82779
  /**
82342
- * 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.
82343
- 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.
82344
- */
82780
+ * 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.
82781
+ */
82345
82782
  ImportedFileChunkSize?: number;
82346
82783
  /**
82347
82784
  * 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.
82348
82785
  */
82349
82786
  S3?: FSxDataRepositoryAssociationS3;
82350
82787
  /**
82351
- * An array of key-value pairs to apply to this resource.
82352
- For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
82353
- */
82788
+ * A list of Tag values, with a maximum of 50 elements.
82789
+ */
82354
82790
  Tags?: FSxDataRepositoryAssociationTag[];
82355
82791
  };
82356
82792
  /**
@@ -82358,43 +82794,35 @@ export type FSxDataRepositoryAssociationProps = {
82358
82794
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html#aws-resource-fsx-datarepositoryassociation-return-values}
82359
82795
  */
82360
82796
  export type FSxDataRepositoryAssociationAttributes = {
82797
+ /**
82798
+ * The system-generated, unique ID of the data repository association.
82799
+ */
82361
82800
  AssociationId: string;
82801
+ /**
82802
+ * 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.
82803
+ */
82362
82804
  ResourceARN: string;
82363
82805
  };
82364
82806
  /**
82365
82807
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoExportPolicy`.
82366
- * 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.
82367
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
82808
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
82368
82809
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoexportpolicy.html}
82369
82810
  */
82370
82811
  export type FSxDataRepositoryAssociationAutoExportPolicy = {
82371
82812
  /**
82372
- * The ``AutoExportPolicy`` can have the following event values:
82373
- + ``NEW`` - New files and directories are automatically exported to the data repository as they are added to the file system.
82374
- + ``CHANGED`` - Changes to files and directories on the file system are automatically exported to the data repository.
82375
- + ``DELETED`` - Files and directories are automatically deleted on the data repository when they are deleted on the file system.
82376
-
82377
- You can define any combination of event types for your ``AutoExportPolicy``.
82378
- * @maxLength `3`
82379
- */
82813
+ * @maxLength `3`
82814
+ */
82380
82815
  Events: FSxDataRepositoryAssociationEventType[];
82381
82816
  };
82382
82817
  /**
82383
82818
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoImportPolicy`.
82384
- * 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.
82385
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
82819
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
82386
82820
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoimportpolicy.html}
82387
82821
  */
82388
82822
  export type FSxDataRepositoryAssociationAutoImportPolicy = {
82389
82823
  /**
82390
- * The ``AutoImportPolicy`` can have the following event values:
82391
- + ``NEW`` - Amazon FSx automatically imports metadata of files added to the linked S3 bucket that do not currently exist in the FSx file system.
82392
- + ``CHANGED`` - Amazon FSx automatically updates file metadata and invalidates existing file content on the file system as files change in the data repository.
82393
- + ``DELETED`` - Amazon FSx automatically deletes files on the file system as corresponding files are deleted in the data repository.
82394
-
82395
- You can define any combination of event types for your ``AutoImportPolicy``.
82396
- * @maxLength `3`
82397
- */
82824
+ * @maxLength `3`
82825
+ */
82398
82826
  Events: FSxDataRepositoryAssociationEventType[];
82399
82827
  };
82400
82828
  /**
@@ -82409,30 +82837,28 @@ export type FSxDataRepositoryAssociationEventType = "NEW" | "CHANGED" | "DELETED
82409
82837
  */
82410
82838
  export type FSxDataRepositoryAssociationS3 = {
82411
82839
  /**
82412
- * 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.
82413
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
82414
- */
82840
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
82841
+ */
82415
82842
  AutoExportPolicy?: FSxDataRepositoryAssociationAutoExportPolicy;
82416
82843
  /**
82417
- * 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.
82418
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
82419
- */
82844
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
82845
+ */
82420
82846
  AutoImportPolicy?: FSxDataRepositoryAssociationAutoImportPolicy;
82421
82847
  };
82422
82848
  /**
82423
82849
  * Type definition for `AWS::FSx::DataRepositoryAssociation.Tag`.
82424
- * Specifies a key-value pair for a resource tag.
82850
+ * A key-value pair to associate with a resource.
82425
82851
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-tag.html}
82426
82852
  */
82427
82853
  export type FSxDataRepositoryAssociationTag = {
82428
82854
  /**
82429
- * A value that specifies the ``TagKey``, the name of the tag. Tag keys must be unique for the resource to which they are attached.
82855
+ * 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 -.
82430
82856
  * @minLength `1`
82431
82857
  * @maxLength `128`
82432
82858
  */
82433
82859
  Key: string;
82434
82860
  /**
82435
- * 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``.
82861
+ * 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 -.
82436
82862
  * @minLength `0`
82437
82863
  * @maxLength `256`
82438
82864
  */
@@ -179607,6 +180033,7 @@ export type Route53HostedZoneProps = {
179607
180033
  If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
179608
180034
  */
179609
180035
  HostedZoneConfig?: Route53HostedZoneHostedZoneConfig;
180036
+ HostedZoneFeatures?: Route53HostedZoneHostedZoneFeatures;
179610
180037
  /**
179611
180038
  * Adds, edits, or deletes tags for a health check or a hosted zone.
179612
180039
  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*.
@@ -179655,6 +180082,16 @@ export type Route53HostedZoneHostedZoneConfig = {
179655
180082
  */
179656
180083
  Comment?: string;
179657
180084
  };
180085
+ /**
180086
+ * Type definition for `AWS::Route53::HostedZone.HostedZoneFeatures`.
180087
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html}
180088
+ */
180089
+ export type Route53HostedZoneHostedZoneFeatures = {
180090
+ /**
180091
+ * 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.
180092
+ */
180093
+ EnableAcceleratedRecovery?: boolean;
180094
+ };
179658
180095
  /**
179659
180096
  * Type definition for `AWS::Route53::HostedZone.HostedZoneTag`.
179660
180097
  * A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
@@ -218622,6 +219059,7 @@ export interface ResourceTypes {
218622
219059
  "AWS::Connect::UserHierarchyStructure": ConnectUserHierarchyStructureProps;
218623
219060
  "AWS::Connect::View": ConnectViewProps;
218624
219061
  "AWS::Connect::ViewVersion": ConnectViewVersionProps;
219062
+ "AWS::Connect::Workspace": ConnectWorkspaceProps;
218625
219063
  "AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignProps;
218626
219064
  "AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignProps;
218627
219065
  "AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineProps;
@@ -220091,6 +220529,7 @@ export interface AttributeTypes {
220091
220529
  "AWS::Connect::UserHierarchyStructure": ConnectUserHierarchyStructureAttributes;
220092
220530
  "AWS::Connect::View": ConnectViewAttributes;
220093
220531
  "AWS::Connect::ViewVersion": ConnectViewVersionAttributes;
220532
+ "AWS::Connect::Workspace": ConnectWorkspaceAttributes;
220094
220533
  "AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignAttributes;
220095
220534
  "AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignAttributes;
220096
220535
  "AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineAttributes;
@@ -221461,6 +221900,7 @@ export declare const ResourceType: {
221461
221900
  readonly ConnectUserHierarchyStructure: "AWS::Connect::UserHierarchyStructure";
221462
221901
  readonly ConnectView: "AWS::Connect::View";
221463
221902
  readonly ConnectViewVersion: "AWS::Connect::ViewVersion";
221903
+ readonly ConnectWorkspace: "AWS::Connect::Workspace";
221464
221904
  readonly ConnectCampaignsCampaign: "AWS::ConnectCampaigns::Campaign";
221465
221905
  readonly ConnectCampaignsV2Campaign: "AWS::ConnectCampaignsV2::Campaign";
221466
221906
  readonly ControlTowerEnabledBaseline: "AWS::ControlTower::EnabledBaseline";