@propulsionworks/cloudformation 0.1.11 → 0.1.12

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.
Files changed (33) hide show
  1. package/out/exports/resources.generated/aws-amplify-app.d.ts +2 -2
  2. package/out/exports/resources.generated/aws-apigateway-method.d.ts +1 -1
  3. package/out/exports/resources.generated/aws-appsync-apicache.d.ts +4 -0
  4. package/out/exports/resources.generated/aws-athena-workgroup.d.ts +37 -0
  5. package/out/exports/resources.generated/aws-bedrock-flow.d.ts +48 -21
  6. package/out/exports/resources.generated/aws-connect-emailaddress.d.ts +1 -1
  7. package/out/exports/resources.generated/aws-connect-queue.d.ts +1 -1
  8. package/out/exports/resources.generated/aws-customerprofiles-calculatedattributedefinition.d.ts +50 -1
  9. package/out/exports/resources.generated/aws-customerprofiles-objecttype.d.ts +13 -1
  10. package/out/exports/resources.generated/aws-customerprofiles-segmentdefinition.d.ts +4 -4
  11. package/out/exports/resources.generated/aws-deadline-fleet.d.ts +1 -0
  12. package/out/exports/resources.generated/aws-dsql-cluster.d.ts +17 -9
  13. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +55 -0
  14. package/out/exports/resources.generated/aws-ec2-egressonlyinternetgateway.d.ts +6 -1
  15. package/out/exports/resources.generated/aws-efs-mounttarget.d.ts +15 -3
  16. package/out/exports/resources.generated/aws-eks-addon.d.ts +3 -3
  17. package/out/exports/resources.generated/aws-eks-cluster.d.ts +14 -12
  18. package/out/exports/resources.generated/aws-eks-podidentityassociation.d.ts +24 -2
  19. package/out/exports/resources.generated/aws-entityresolution-matchingworkflow.d.ts +15 -5
  20. package/out/exports/resources.generated/aws-evs-environment.d.ts +62 -7
  21. package/out/exports/resources.generated/aws-fis-experimenttemplate.d.ts +1 -1
  22. package/out/exports/resources.generated/aws-kms-key.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-lambda-eventinvokeconfig.d.ts +4 -2
  24. package/out/exports/resources.generated/aws-lambda-eventsourcemapping.d.ts +2 -2
  25. package/out/exports/resources.generated/aws-msk-cluster.d.ts +15 -1
  26. package/out/exports/resources.generated/aws-mwaa-environment.d.ts +10 -0
  27. package/out/exports/resources.generated/aws-networkfirewall-loggingconfiguration.d.ts +4 -0
  28. package/out/exports/resources.generated/aws-networkfirewall-vpcendpointassociation.d.ts +38 -6
  29. package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +5 -5
  30. package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +65 -0
  31. package/out/exports/resources.generated/aws-wafv2-rulegroup.d.ts +23 -1
  32. package/out/exports/resources.generated/aws-wafv2-webacl.d.ts +111 -4
  33. package/package.json +1 -1
@@ -282,9 +282,9 @@ export type CacheConfig = {
282
282
  /**
283
283
  * The type of cache configuration to use for an Amplify app.
284
284
  *
285
- * The `AMPLIFY_MANAGED` cache configuration automatically applies an optimized cache configuration for your app based on its platform, routing rules, and rewrite rules. This is the default setting.
285
+ * The `AMPLIFY_MANAGED` cache configuration automatically applies an optimized cache configuration for your app based on its platform, routing rules, and rewrite rules.
286
286
  *
287
- * The `AMPLIFY_MANAGED_NO_COOKIES` cache configuration type is the same as `AMPLIFY_MANAGED` , except that it excludes all cookies from the cache key.
287
+ * The `AMPLIFY_MANAGED_NO_COOKIES` cache configuration type is the same as `AMPLIFY_MANAGED` , except that it excludes all cookies from the cache key. This is the default setting.
288
288
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-cacheconfig.html#cfn-amplify-app-cacheconfig-type}
289
289
  */
290
290
  Type?: "AMPLIFY_MANAGED" | "AMPLIFY_MANAGED_NO_COOKIES" | undefined;
@@ -140,7 +140,7 @@ export type Integration = {
140
140
  */
141
141
  RequestTemplates?: Record<string, string> | undefined;
142
142
  /**
143
- * Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds or 29 seconds.
143
+ * Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds or 29 seconds. You can increase the default value to longer than 29 seconds for Regional or private APIs only.
144
144
  * @min 50
145
145
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-method-integration.html#cfn-apigateway-method-integration-timeoutinmillis}
146
146
  */
@@ -24,6 +24,8 @@ export type AppSyncApiCacheProps = {
24
24
  */
25
25
  ApiId: string;
26
26
  /**
27
+ * *This parameter has been deprecated* .
28
+ *
27
29
  * At-rest encryption flag for cache. You cannot update this setting after creation.
28
30
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-atrestencryptionenabled}
29
31
  */
@@ -39,6 +41,8 @@ export type AppSyncApiCacheProps = {
39
41
  */
40
42
  HealthMetricsConfig?: string | undefined;
41
43
  /**
44
+ * *This parameter has been deprecated* .
45
+ *
42
46
  * Transit encryption flag when connecting to cache. You cannot update this setting after creation.
43
47
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html#cfn-appsync-apicache-transitencryptionenabled}
44
48
  */
@@ -124,6 +124,33 @@ export type EngineVersion = {
124
124
  */
125
125
  SelectedEngineVersion?: string | undefined;
126
126
  };
127
+ /**
128
+ * The configuration for storing results in Athena owned storage, which includes whether this feature is enabled; whether encryption configuration, if any, is used for encrypting query results.
129
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedqueryresultsconfiguration.html}
130
+ */
131
+ export type ManagedQueryResultsConfiguration = {
132
+ /**
133
+ * If set to true, allows you to store query results in Athena owned storage. If set to false, workgroup member stores query results in location specified under `ResultConfiguration$OutputLocation` . The default is false. A workgroup cannot have the `ResultConfiguration$OutputLocation` parameter when you set this field to true.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedqueryresultsconfiguration.html#cfn-athena-workgroup-managedqueryresultsconfiguration-enabled}
135
+ */
136
+ Enabled?: boolean | undefined;
137
+ /**
138
+ * If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedqueryresultsconfiguration.html#cfn-athena-workgroup-managedqueryresultsconfiguration-encryptionconfiguration}
140
+ */
141
+ EncryptionConfiguration?: ManagedStorageEncryptionConfiguration | undefined;
142
+ };
143
+ /**
144
+ * Indicates the encryption configuration for Athena Managed Storage. If not setting this field, Managed Storage will encrypt the query results with Athena's encryption key
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedstorageencryptionconfiguration.html}
146
+ */
147
+ export type ManagedStorageEncryptionConfiguration = {
148
+ /**
149
+ * For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedstorageencryptionconfiguration.html#cfn-athena-workgroup-managedstorageencryptionconfiguration-kmskey}
151
+ */
152
+ KmsKey?: string | undefined;
153
+ };
127
154
  /**
128
155
  * The location in Amazon S3 where query and calculation results are stored and the encryption option, if any, used for query and calculation results. These are known as "client-side settings". If workgroup settings override client-side settings, then the query uses the workgroup settings.
129
156
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-resultconfiguration.html}
@@ -242,6 +269,11 @@ export type WorkGroupConfiguration = {
242
269
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-executionrole}
243
270
  */
244
271
  ExecutionRole?: string | undefined;
272
+ /**
273
+ * The configuration for storing results in Athena owned storage, which includes whether this feature is enabled; whether encryption configuration, if any, is used for encrypting query results.
274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-managedqueryresultsconfiguration}
275
+ */
276
+ ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration | undefined;
245
277
  /**
246
278
  * Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
247
279
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfiguration.html#cfn-athena-workgroup-workgroupconfiguration-publishcloudwatchmetricsenabled}
@@ -293,6 +325,11 @@ export type WorkGroupConfigurationUpdates = {
293
325
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-executionrole}
294
326
  */
295
327
  ExecutionRole?: string | undefined;
328
+ /**
329
+ * The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
330
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-managedqueryresultsconfiguration}
331
+ */
332
+ ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration | undefined;
296
333
  /**
297
334
  * Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
298
335
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-workgroupconfigurationupdates.html#cfn-athena-workgroup-workgroupconfigurationupdates-publishcloudwatchmetricsenabled}
@@ -164,12 +164,12 @@ export type ConditionFlowNodeConfiguration = {
164
164
  Conditions: FlowCondition[];
165
165
  };
166
166
  /**
167
- * Field name for reranking
167
+ * Contains information for a metadata field to include in or exclude from consideration when reranking.
168
168
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-fieldforreranking.html}
169
169
  */
170
170
  export type FieldForReranking = {
171
171
  /**
172
- * Field name for reranking
172
+ * The name of a metadata field to include in or exclude from consideration when reranking.
173
173
  * @minLength 1
174
174
  * @maxLength 2000
175
175
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-fieldforreranking.html#cfn-bedrock-flow-fieldforreranking-fieldname}
@@ -369,7 +369,11 @@ export type FlowNodeIODataType = "String" | "Number" | "Boolean" | "Object" | "A
369
369
  */
370
370
  export type FlowNodeInput = {
371
371
  /**
372
- * Optional tag to classify input type, currently exclusive to LoopNode
372
+ * Specifies how input data flows between iterations in a DoWhile loop.
373
+ *
374
+ * - `LoopCondition` - Controls whether the loop continues by evaluating condition expressions against the input data. Use this category to define the condition that determines if the loop should continue.
375
+ * - `ReturnValueToLoopStart` - Defines data to pass back to the start of the loop's next iteration. Use this category for variables that you want to update for each loop iteration.
376
+ * - `ExitLoop` - Defines the value that's available once the loop ends. Use this category to expose loop results to nodes outside the loop.
373
377
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html#cfn-bedrock-flow-flownodeinput-category}
374
378
  */
375
379
  Category?: FlowNodeInputCategory | undefined;
@@ -475,7 +479,7 @@ export type KnowledgeBaseFlowNodeConfiguration = {
475
479
  */
476
480
  GuardrailConfiguration?: GuardrailConfiguration | undefined;
477
481
  /**
478
- * Model inference configuration
482
+ * Contains inference configurations for the prompt.
479
483
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-inferenceconfiguration}
480
484
  */
481
485
  InferenceConfiguration?: PromptInferenceConfiguration | undefined;
@@ -495,51 +499,56 @@ export type KnowledgeBaseFlowNodeConfiguration = {
495
499
  */
496
500
  ModelId?: string | undefined;
497
501
  /**
498
- * Number Of Results to Retrieve
502
+ * The number of results to retrieve from the knowledge base.
499
503
  * @min 1
500
504
  * @max 100
501
505
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-numberofresults}
502
506
  */
503
507
  NumberOfResults?: number | undefined;
504
508
  /**
509
+ * The configuration for orchestrating the retrieval and generation process in the knowledge base node.
505
510
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-orchestrationconfiguration}
506
511
  */
507
512
  OrchestrationConfiguration?: KnowledgeBaseOrchestrationConfiguration | undefined;
508
513
  /**
509
- * Knowledge Base Prompt template
514
+ * A custom prompt template to use with the knowledge base for generating responses.
510
515
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-prompttemplate}
511
516
  */
512
517
  PromptTemplate?: KnowledgeBasePromptTemplate | undefined;
513
518
  /**
519
+ * The configuration for reranking the retrieved results from the knowledge base to improve relevance.
514
520
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-rerankingconfiguration}
515
521
  */
516
522
  RerankingConfiguration?: VectorSearchRerankingConfiguration | undefined;
517
523
  };
518
524
  /**
525
+ * Configures how the knowledge base orchestrates the retrieval and generation process, allowing for customization of prompts, inference parameters, and performance settings.
519
526
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html}
520
527
  */
521
528
  export type KnowledgeBaseOrchestrationConfiguration = {
522
529
  /**
530
+ * The additional model-specific request parameters as key-value pairs to be included in the request to the foundation model.
523
531
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html#cfn-bedrock-flow-knowledgebaseorchestrationconfiguration-additionalmodelrequestfields}
524
532
  */
525
533
  AdditionalModelRequestFields?: Record<string, unknown> | undefined;
526
534
  /**
527
- * Model inference configuration
535
+ * Contains inference configurations for the prompt.
528
536
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html#cfn-bedrock-flow-knowledgebaseorchestrationconfiguration-inferenceconfig}
529
537
  */
530
538
  InferenceConfig?: PromptInferenceConfiguration | undefined;
531
539
  /**
540
+ * The performance configuration options for the knowledge base retrieval and generation process.
532
541
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html#cfn-bedrock-flow-knowledgebaseorchestrationconfiguration-performanceconfig}
533
542
  */
534
543
  PerformanceConfig?: PerformanceConfiguration | undefined;
535
544
  /**
536
- * Knowledge Base Prompt template
545
+ * A custom prompt template for orchestrating the retrieval and generation process.
537
546
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html#cfn-bedrock-flow-knowledgebaseorchestrationconfiguration-prompttemplate}
538
547
  */
539
548
  PromptTemplate?: KnowledgeBasePromptTemplate | undefined;
540
549
  };
541
550
  /**
542
- * Knowledge Base Prompt template
551
+ * Defines a custom prompt template for orchestrating the retrieval and generation process.
543
552
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseprompttemplate.html}
544
553
  */
545
554
  export type KnowledgeBasePromptTemplate = {
@@ -583,17 +592,17 @@ export type LexFlowNodeConfiguration = {
583
592
  LocaleId: string;
584
593
  };
585
594
  /**
586
- * Configuration for the LoopController node, which manages loop execution
595
+ * Contains configurations for the controller node of a DoWhile loop in the flow.
587
596
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopcontrollerflownodeconfiguration.html}
588
597
  */
589
598
  export type LoopControllerFlowNodeConfiguration = {
590
599
  /**
591
- * Condition branch for a condition node
600
+ * Specifies the condition that determines when the flow exits the DoWhile loop. The loop executes until this condition evaluates to true.
592
601
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopcontrollerflownodeconfiguration.html#cfn-bedrock-flow-loopcontrollerflownodeconfiguration-continuecondition}
593
602
  */
594
603
  ContinueCondition: FlowCondition;
595
604
  /**
596
- * Maximum number of iterations the loop can perform
605
+ * Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.
597
606
  * @min 1
598
607
  * @max 1000
599
608
  * @default 10
@@ -602,37 +611,48 @@ export type LoopControllerFlowNodeConfiguration = {
602
611
  MaxIterations?: number | undefined;
603
612
  };
604
613
  /**
605
- * Loop node config, contains loop's internal definition
614
+ * Contains configurations for the nodes of a DoWhile loop in your flow.
615
+ *
616
+ * A DoWhile loop is made up of the following nodes:
617
+ *
618
+ * - `Loop` - The container node that holds the loop's flow definition. This node encompasses the entire loop structure.
619
+ * - `LoopInput` - The entry point node for the loop. This node receives inputs from nodes outside the loop and from previous loop iterations.
620
+ * - Body nodes - The processing nodes that execute within each loop iteration. These can be nodes for handling data in your flow, such as a prompt or Lambda function nodes. Some node types aren't supported inside a DoWhile loop body. For more information, see [LoopIncompatibleNodeTypeFlowValidationDetails](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_LoopIncompatibleNodeTypeFlowValidationDetails.html) .
621
+ * - `LoopController` - The node that evaluates whether the loop should continue or exit based on a condition.
622
+ *
623
+ * These nodes work together to create a loop that runs at least once and continues until a specified condition is met or a maximum number of iterations is reached.
606
624
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopflownodeconfiguration.html}
607
625
  */
608
626
  export type LoopFlowNodeConfiguration = {
609
627
  /**
610
- * Flow definition
628
+ * The definition of the DoWhile loop nodes and connections between nodes in the flow.
611
629
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopflownodeconfiguration.html#cfn-bedrock-flow-loopflownodeconfiguration-definition}
612
630
  */
613
631
  Definition: FlowDefinition;
614
632
  };
615
633
  /**
634
+ * Contains configurations for the metadata to use in reranking.
616
635
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-metadataconfigurationforreranking.html}
617
636
  */
618
637
  export type MetadataConfigurationForReranking = {
619
638
  /**
620
- * Reranking Metadata Selection Mode
639
+ * Specifies whether to consider all metadata when reranking, or only the metadata that you select. If you specify `SELECTIVE` , include the `selectiveModeConfiguration` field.
621
640
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-metadataconfigurationforreranking.html#cfn-bedrock-flow-metadataconfigurationforreranking-selectionmode}
622
641
  */
623
642
  SelectionMode: RerankingMetadataSelectionMode;
624
643
  /**
625
- * Reranking Metadata Selective Mode Configuration
644
+ * Contains configurations for the metadata fields to include or exclude when considering reranking.
626
645
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-metadataconfigurationforreranking.html#cfn-bedrock-flow-metadataconfigurationforreranking-selectivemodeconfiguration}
627
646
  */
628
647
  SelectiveModeConfiguration?: RerankingMetadataSelectiveModeConfiguration | undefined;
629
648
  };
630
649
  /**
650
+ * Performance settings for a model.
631
651
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-performanceconfiguration.html}
632
652
  */
633
653
  export type PerformanceConfiguration = {
634
654
  /**
635
- * Performance Configuration Latency
655
+ * To use a latency-optimized version of the model, set to `optimized` .
636
656
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-performanceconfiguration.html#cfn-bedrock-flow-performanceconfiguration-latency}
637
657
  */
638
658
  Latency?: PerformanceConfigurationLatency | undefined;
@@ -777,7 +797,7 @@ export type PromptTemplateType = "TEXT";
777
797
  */
778
798
  export type RerankingMetadataSelectionMode = "SELECTIVE" | "ALL";
779
799
  /**
780
- * Reranking Metadata Selective Mode Configuration
800
+ * Contains configurations for the metadata fields to include or exclude when considering reranking. If you include the `fieldsToExclude` field, the reranker ignores all the metadata fields that you specify. If you include the `fieldsToInclude` field, the reranker uses only the metadata fields that you specify and ignores all others. You can include only one of these fields.
781
801
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-rerankingmetadataselectivemodeconfiguration.html}
782
802
  */
783
803
  export type RerankingMetadataSelectiveModeConfiguration = {
@@ -897,19 +917,22 @@ export type TextPromptTemplateConfiguration = {
897
917
  Text: string;
898
918
  };
899
919
  /**
920
+ * Contains configurations for reranking with an Amazon Bedrock reranker model.
900
921
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingconfiguration.html}
901
922
  */
902
923
  export type VectorSearchBedrockRerankingConfiguration = {
903
924
  /**
925
+ * Contains configurations for the metadata to use in reranking.
904
926
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingconfiguration.html#cfn-bedrock-flow-vectorsearchbedrockrerankingconfiguration-metadataconfiguration}
905
927
  */
906
928
  MetadataConfiguration?: MetadataConfigurationForReranking | undefined;
907
929
  /**
930
+ * Contains configurations for the reranker model.
908
931
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingconfiguration.html#cfn-bedrock-flow-vectorsearchbedrockrerankingconfiguration-modelconfiguration}
909
932
  */
910
933
  ModelConfiguration: VectorSearchBedrockRerankingModelConfiguration;
911
934
  /**
912
- * Number Of Results For Reranking
935
+ * The number of results to return after reranking.
913
936
  * @min 1
914
937
  * @max 100
915
938
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingconfiguration.html#cfn-bedrock-flow-vectorsearchbedrockrerankingconfiguration-numberofrerankedresults}
@@ -917,29 +940,33 @@ export type VectorSearchBedrockRerankingConfiguration = {
917
940
  NumberOfRerankedResults?: number | undefined;
918
941
  };
919
942
  /**
943
+ * Contains configurations for an Amazon Bedrock reranker model.
920
944
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration.html}
921
945
  */
922
946
  export type VectorSearchBedrockRerankingModelConfiguration = {
923
947
  /**
948
+ * A JSON object whose keys are request fields for the model and whose values are values for those fields.
924
949
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration.html#cfn-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration-additionalmodelrequestfields}
925
950
  */
926
951
  AdditionalModelRequestFields?: Record<string, unknown> | undefined;
927
952
  /**
928
- * Arn of a Bedrock Reranking model
953
+ * The ARN of the reranker model to use.
929
954
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration.html#cfn-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration-modelarn}
930
955
  */
931
956
  ModelArn: string;
932
957
  };
933
958
  /**
959
+ * Contains configurations for reranking the retrieved results.
934
960
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchrerankingconfiguration.html}
935
961
  */
936
962
  export type VectorSearchRerankingConfiguration = {
937
963
  /**
964
+ * Contains configurations for an Amazon Bedrock reranker model.
938
965
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchrerankingconfiguration.html#cfn-bedrock-flow-vectorsearchrerankingconfiguration-bedrockrerankingconfiguration}
939
966
  */
940
967
  BedrockRerankingConfiguration?: VectorSearchBedrockRerankingConfiguration | undefined;
941
968
  /**
942
- * Enum of Rerank Configuration Types
969
+ * The type of reranker model.
943
970
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchrerankingconfiguration.html#cfn-bedrock-flow-vectorsearchrerankingconfiguration-type}
944
971
  */
945
972
  Type: VectorSearchRerankingConfigurationType;
@@ -26,7 +26,7 @@ export type ConnectEmailAddressProps = {
26
26
  */
27
27
  DisplayName?: string | undefined;
28
28
  /**
29
- * The email address with the instance, in [^\s@]+@[^\s@]+\.[^\s@]+ format.
29
+ * The email address, including the domain.
30
30
  * @minLength 1
31
31
  * @maxLength 255
32
32
  * @pattern ([^\s@]+@[^\s@]+\.[^\s@]+)
@@ -107,7 +107,7 @@ export type OutboundCallerConfig = {
107
107
  OutboundFlowArn?: string | undefined;
108
108
  };
109
109
  /**
110
- * The outbound email address Id.
110
+ * The outbound email address ID.
111
111
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-queue-outboundemailconfig.html}
112
112
  */
113
113
  export type OutboundEmailConfig = {
@@ -49,6 +49,11 @@ export type CustomerProfilesCalculatedAttributeDefinitionProps = {
49
49
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html#cfn-customerprofiles-calculatedattributedefinition-tags}
50
50
  */
51
51
  Tags?: Tag[] | undefined;
52
+ /**
53
+ * Whether historical data ingested before the Calculated Attribute was created should be included in calculations.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html#cfn-customerprofiles-calculatedattributedefinition-usehistoricaldata}
55
+ */
56
+ UseHistoricalData?: boolean | undefined;
52
57
  };
53
58
  /**
54
59
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html#aws-resource-customerprofiles-calculatedattributedefinition-return-values}
@@ -64,6 +69,11 @@ export type CustomerProfilesCalculatedAttributeDefinitionAttribs = {
64
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html#cfn-customerprofiles-calculatedattributedefinition-lastupdatedat}
65
70
  */
66
71
  LastUpdatedAt: string;
72
+ /**
73
+ * Status of the Calculated Attribute creation (whether all historical data has been indexed.)
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html#cfn-customerprofiles-calculatedattributedefinition-status}
75
+ */
76
+ Status: "IN_PROGRESS" | "PREPARING" | "COMPLETED" | "FAILED";
67
77
  };
68
78
  /**
69
79
  * Mathematical expression and a list of attribute items specified in that expression.
@@ -118,6 +128,20 @@ export type Conditions = {
118
128
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html}
119
129
  */
120
130
  export type Range = {
131
+ /**
132
+ * The format the timestamp field in your JSON object is specified. This value should be one of EPOCHMILLI or ISO_8601. E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.235Z"}}, then TimestampFormat should be "ISO_8601".
133
+ * @minLength 1
134
+ * @maxLength 255
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-timestampformat}
136
+ */
137
+ TimestampFormat?: string | undefined;
138
+ /**
139
+ * An expression specifying the field in your JSON object from which the date should be parsed. The expression should follow the structure of \"{ObjectTypeName.<Location of timestamp field in JSON pointer format>}\". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}".
140
+ * @minLength 1
141
+ * @maxLength 255
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-timestampsource}
143
+ */
144
+ TimestampSource?: string | undefined;
121
145
  /**
122
146
  * The unit of time.
123
147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-unit}
@@ -127,7 +151,12 @@ export type Range = {
127
151
  * The amount of time of the specified unit.
128
152
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-value}
129
153
  */
130
- Value: number;
154
+ Value?: number | undefined;
155
+ /**
156
+ * A structure specifying the endpoints of the relative time period over which data is included in the aggregation.
157
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-valuerange}
158
+ */
159
+ ValueRange?: ValueRange | undefined;
131
160
  };
132
161
  /**
133
162
  * The unit of time.
@@ -160,4 +189,24 @@ export type Threshold = {
160
189
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-thresholdoperator.html}
161
190
  */
162
191
  export type ThresholdOperator = "EQUAL_TO" | "GREATER_THAN" | "LESS_THAN" | "NOT_EQUAL_TO";
192
+ /**
193
+ * A structure specifying the endpoints of the relative time period over which data is included in the aggregation.
194
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-valuerange.html}
195
+ */
196
+ export type ValueRange = {
197
+ /**
198
+ * The ending point for this range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
199
+ * @min -2147483648
200
+ * @max 2147483647
201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-valuerange.html#cfn-customerprofiles-calculatedattributedefinition-valuerange-end}
202
+ */
203
+ End: number;
204
+ /**
205
+ * The starting point for this range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
206
+ * @min -2147483648
207
+ * @max 2147483647
208
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-valuerange.html#cfn-customerprofiles-calculatedattributedefinition-valuerange-start}
209
+ */
210
+ Start: number;
211
+ };
163
212
  //# sourceMappingURL=aws-customerprofiles-calculatedattributedefinition.d.ts.map
@@ -17,7 +17,7 @@ export type CustomerProfilesObjectTypeProps = {
17
17
  /**
18
18
  * The description of the profile object type mapping.
19
19
  * @minLength 1
20
- * @maxLength 1000
20
+ * @maxLength 10000
21
21
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-description}
22
22
  */
23
23
  Description: string;
@@ -53,6 +53,12 @@ export type CustomerProfilesObjectTypeProps = {
53
53
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-keys}
54
54
  */
55
55
  Keys?: KeyMap[] | undefined;
56
+ /**
57
+ * The amount of profile object max count assigned to the object type.
58
+ * @min 1
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-maxprofileobjectcount}
60
+ */
61
+ MaxProfileObjectCount?: number | undefined;
56
62
  /**
57
63
  * The name of the profile object type.
58
64
  * @minLength 1
@@ -96,6 +102,12 @@ export type CustomerProfilesObjectTypeAttribs = {
96
102
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-lastupdatedat}
97
103
  */
98
104
  LastUpdatedAt: string;
105
+ /**
106
+ * The amount of provisioned profile object max count available.
107
+ * @min 0
108
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html#cfn-customerprofiles-objecttype-maxavailableprofileobjectcount}
109
+ */
110
+ MaxAvailableProfileObjectCount: number;
99
111
  };
100
112
  /**
101
113
  * A map of the name and ObjectType field.
@@ -367,15 +367,15 @@ export type ProfileDimension = {
367
367
  export type RangeOverride = {
368
368
  /**
369
369
  * The end time of when to include objects.
370
- * @min 0
371
- * @max 366
370
+ * @min -2147483648
371
+ * @max 2147483647
372
372
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html#cfn-customerprofiles-segmentdefinition-rangeoverride-end}
373
373
  */
374
374
  End?: number | undefined;
375
375
  /**
376
376
  * The start time of when to include objects.
377
- * @min 1
378
- * @max 366
377
+ * @min -2147483648
378
+ * @max 2147483647
379
379
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html#cfn-customerprofiles-segmentdefinition-rangeoverride-start}
380
380
  */
381
381
  Start: number;
@@ -444,6 +444,7 @@ export type ServiceManagedEc2FleetConfiguration = {
444
444
  */
445
445
  InstanceMarketOptions: ServiceManagedEc2InstanceMarketOptions;
446
446
  /**
447
+ * The storage profile ID.
447
448
  * @pattern ^sp-[0-9a-f]{32}$
448
449
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2fleetconfiguration.html#cfn-deadline-fleet-servicemanagedec2fleetconfiguration-storageprofileid}
449
450
  */
@@ -1,8 +1,10 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * The CreateCluster API allows you to create both single-Region clusters and multi-Region clusters. With the addition of the *multiRegionProperties* parameter, you can create a cluster with witness Region support and establish peer relationships with clusters in other Regions during creation.
3
+ * The `AWS::DSQL::Cluster` resource specifies an cluster. You can use this resource to create, modify, and manage clusters.
4
4
  *
5
- * > Creating multi-Region clusters requires additional IAM permissions beyond those needed for single-Region clusters, as detailed in the *Required permissions* section below.
5
+ * This resource supports both single-Region clusters and multi-Region clusters through the `MultiRegionProperties` parameter.
6
+ *
7
+ * > Creating multi-Region clusters requires additional IAM permissions beyond those needed for single-Region clusters. > - The witness Region specified in `multiRegionProperties.witnessRegion` cannot be the same as the cluster's Region.
6
8
  *
7
9
  * *Required permissions*
8
10
  *
@@ -26,15 +28,15 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
26
28
  * Resources: `arn:aws:dsql:region:account-id:cluster/*`
27
29
  *
28
30
  * Condition Keys: `dsql:WitnessRegion` (matching the specified witness region)
29
- *
30
- * > - The witness Region specified in `multiRegionProperties.witnessRegion` cannot be the same as the cluster's Region.
31
31
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html}
32
32
  */
33
33
  export type DSQLCluster = ResourceDefinitionWithAttributes<"AWS::DSQL::Cluster", DSQLClusterProps, DSQLClusterAttribs>;
34
34
  /**
35
- * The CreateCluster API allows you to create both single-Region clusters and multi-Region clusters. With the addition of the *multiRegionProperties* parameter, you can create a cluster with witness Region support and establish peer relationships with clusters in other Regions during creation.
35
+ * The `AWS::DSQL::Cluster` resource specifies an cluster. You can use this resource to create, modify, and manage clusters.
36
36
  *
37
- * > Creating multi-Region clusters requires additional IAM permissions beyond those needed for single-Region clusters, as detailed in the *Required permissions* section below.
37
+ * This resource supports both single-Region clusters and multi-Region clusters through the `MultiRegionProperties` parameter.
38
+ *
39
+ * > Creating multi-Region clusters requires additional IAM permissions beyond those needed for single-Region clusters. > - The witness Region specified in `multiRegionProperties.witnessRegion` cannot be the same as the cluster's Region.
38
40
  *
39
41
  * *Required permissions*
40
42
  *
@@ -58,8 +60,6 @@ export type DSQLCluster = ResourceDefinitionWithAttributes<"AWS::DSQL::Cluster",
58
60
  * Resources: `arn:aws:dsql:region:account-id:cluster/*`
59
61
  *
60
62
  * Condition Keys: `dsql:WitnessRegion` (matching the specified witness region)
61
- *
62
- * > - The witness Region specified in `multiRegionProperties.witnessRegion` cannot be the same as the cluster's Region.
63
63
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html}
64
64
  */
65
65
  export type DSQLClusterProps = {
@@ -69,7 +69,7 @@ export type DSQLClusterProps = {
69
69
  */
70
70
  DeletionProtectionEnabled?: boolean | undefined;
71
71
  /**
72
- * The multi-Region cluster configuration details that were set during cluster creation
72
+ * Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings.
73
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html#cfn-dsql-cluster-multiregionproperties}
74
74
  */
75
75
  MultiRegionProperties?: {
@@ -106,6 +106,14 @@ export type DSQLClusterAttribs = {
106
106
  ResourceArn: string;
107
107
  /**
108
108
  * The current status of the cluster. Possible values include: CREATING, ACTIVE, DELETING, FAILED.
109
+ *
110
+ * The cluster can have two additional status values when working with multi-Region clusters:
111
+ *
112
+ * `PENDING_SETUP` —Indicates the cluster is being configured
113
+ *
114
+ * `PENDING_DELETE` —Indicates the cluster is being deleted
115
+ *
116
+ * *Note:* These status values only appear for multi-Region cluster operations.
109
117
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html#cfn-dsql-cluster-status}
110
118
  */
111
119
  Status: string;