@awboost/cfntypes 0.100.202 → 0.100.204

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.
@@ -2446,6 +2446,7 @@ export type ApiGatewayDomainNameProps = {
2446
2446
  */
2447
2447
  OwnershipVerificationCertificateArn?: string;
2448
2448
  RegionalCertificateArn?: string;
2449
+ RoutingMode?: "BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING" | "ROUTING_RULE_ONLY";
2449
2450
  SecurityPolicy?: string;
2450
2451
  Tags?: ApiGatewayDomainNameTag[];
2451
2452
  };
@@ -2535,6 +2536,10 @@ export type ApiGatewayDomainNameV2Props = {
2535
2536
  DomainName?: string;
2536
2537
  EndpointConfiguration?: ApiGatewayDomainNameV2EndpointConfiguration;
2537
2538
  Policy?: Record<string, any> | string;
2539
+ /**
2540
+ * The valid routing modes are [BASE_PATH_MAPPING_ONLY], [ROUTING_RULE_THEN_BASE_PATH_MAPPING] and [ROUTING_RULE_ONLY]. All other inputs are invalid.
2541
+ */
2542
+ RoutingMode?: "BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING" | "ROUTING_RULE_ONLY";
2538
2543
  SecurityPolicy?: string;
2539
2544
  Tags?: ApiGatewayDomainNameV2Tag[];
2540
2545
  };
@@ -3391,6 +3396,7 @@ export type ApiGatewayV2DomainNameProps = {
3391
3396
  * The mutual TLS authentication configuration for a custom domain name.
3392
3397
  */
3393
3398
  MutualTlsAuthentication?: ApiGatewayV2DomainNameMutualTlsAuthentication;
3399
+ RoutingMode?: "API_MAPPING_ONLY" | "ROUTING_RULE_THEN_API_MAPPING" | "ROUTING_RULE_ONLY";
3394
3400
  /**
3395
3401
  * The collection of tags associated with a domain name.
3396
3402
  */
@@ -3757,6 +3763,79 @@ export type ApiGatewayV2RouteResponseParameterConstraints = {
3757
3763
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routeresponse-routeparameters.html}
3758
3764
  */
3759
3765
  export type ApiGatewayV2RouteResponseRouteParameters = Record<string, ApiGatewayV2RouteResponseParameterConstraints>;
3766
+ /**
3767
+ * Schema for AWS::ApiGatewayV2::RoutingRule
3768
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html}
3769
+ */
3770
+ export type ApiGatewayV2RoutingRuleProps = {
3771
+ Actions: ApiGatewayV2RoutingRuleAction[];
3772
+ Conditions: ApiGatewayV2RoutingRuleCondition[];
3773
+ /**
3774
+ * The amazon resource name (ARN) of the domain name resource.
3775
+ */
3776
+ DomainNameArn: string;
3777
+ Priority: number;
3778
+ };
3779
+ /**
3780
+ * Attribute type definition for `AWS::ApiGatewayV2::RoutingRule`.
3781
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-routingrule.html#aws-resource-apigatewayv2-routingrule-return-values}
3782
+ */
3783
+ export type ApiGatewayV2RoutingRuleAttributes = {
3784
+ /**
3785
+ * Amazon Resource Name (ARN) of the resource.
3786
+ */
3787
+ RoutingRuleArn: string;
3788
+ /**
3789
+ * RoutingRule Id generated by service
3790
+ */
3791
+ RoutingRuleId: string;
3792
+ };
3793
+ /**
3794
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.Action`.
3795
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-action.html}
3796
+ */
3797
+ export type ApiGatewayV2RoutingRuleAction = {
3798
+ InvokeApi: ApiGatewayV2RoutingRuleActionInvokeApi;
3799
+ };
3800
+ /**
3801
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.ActionInvokeApi`.
3802
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-actioninvokeapi.html}
3803
+ */
3804
+ export type ApiGatewayV2RoutingRuleActionInvokeApi = {
3805
+ ApiId: string;
3806
+ Stage: string;
3807
+ StripBasePath?: boolean;
3808
+ };
3809
+ /**
3810
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.Condition`.
3811
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-condition.html}
3812
+ */
3813
+ export type ApiGatewayV2RoutingRuleCondition = {
3814
+ MatchBasePaths?: ApiGatewayV2RoutingRuleMatchBasePaths;
3815
+ MatchHeaders?: ApiGatewayV2RoutingRuleMatchHeaders;
3816
+ };
3817
+ /**
3818
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.MatchBasePaths`.
3819
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchbasepaths.html}
3820
+ */
3821
+ export type ApiGatewayV2RoutingRuleMatchBasePaths = {
3822
+ AnyOf: string[];
3823
+ };
3824
+ /**
3825
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.MatchHeaders`.
3826
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheaders.html}
3827
+ */
3828
+ export type ApiGatewayV2RoutingRuleMatchHeaders = {
3829
+ AnyOf: ApiGatewayV2RoutingRuleMatchHeaderValue[];
3830
+ };
3831
+ /**
3832
+ * Type definition for `AWS::ApiGatewayV2::RoutingRule.MatchHeaderValue`.
3833
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html}
3834
+ */
3835
+ export type ApiGatewayV2RoutingRuleMatchHeaderValue = {
3836
+ Header: string;
3837
+ ValueGlob: string;
3838
+ };
3760
3839
  /**
3761
3840
  * Resource Type definition for AWS::ApiGatewayV2::Stage
3762
3841
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html}
@@ -19987,6 +20066,11 @@ export type BedrockFlowAttributes = {
19987
20066
  */
19988
20067
  Version: string;
19989
20068
  };
20069
+ /**
20070
+ * Type definition for `AWS::Bedrock::Flow.AdditionalModelRequestFields`.
20071
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-additionalmodelrequestfields.html}
20072
+ */
20073
+ export type BedrockFlowAdditionalModelRequestFields = Record<string, any>;
19990
20074
  /**
19991
20075
  * Type definition for `AWS::Bedrock::Flow.AgentFlowNodeConfiguration`.
19992
20076
  * Agent flow node configuration
@@ -20025,6 +20109,19 @@ export type BedrockFlowConditionFlowNodeConfiguration = {
20025
20109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-definitionsubstitutions.html}
20026
20110
  */
20027
20111
  export type BedrockFlowDefinitionSubstitutions = Record<string, string | number | boolean>;
20112
+ /**
20113
+ * Type definition for `AWS::Bedrock::Flow.FieldForReranking`.
20114
+ * Field name for reranking
20115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-fieldforreranking.html}
20116
+ */
20117
+ export type BedrockFlowFieldForReranking = {
20118
+ /**
20119
+ * Field name for reranking
20120
+ * @minLength `1`
20121
+ * @maxLength `2000`
20122
+ */
20123
+ FieldName: string;
20124
+ };
20028
20125
  /**
20029
20126
  * Type definition for `AWS::Bedrock::Flow.FlowCondition`.
20030
20127
  * Condition branch for a condition node
@@ -20241,6 +20338,21 @@ export type BedrockFlowFlowNodeConfiguration = {
20241
20338
  * Inline code config strucuture, contains code configs
20242
20339
  */
20243
20340
  InlineCode: BedrockFlowInlineCodeFlowNodeConfiguration;
20341
+ } | {
20342
+ /**
20343
+ * Loop node config, contains loop's internal definition
20344
+ */
20345
+ Loop: BedrockFlowLoopFlowNodeConfiguration;
20346
+ } | {
20347
+ /**
20348
+ * Configuration for the LoopInput node
20349
+ */
20350
+ LoopInput: BedrockFlowLoopInputFlowNodeConfiguration;
20351
+ } | {
20352
+ /**
20353
+ * Configuration for the LoopController node, which manages loop execution
20354
+ */
20355
+ LoopController: BedrockFlowLoopControllerFlowNodeConfiguration;
20244
20356
  };
20245
20357
  /**
20246
20358
  * Type definition for `AWS::Bedrock::Flow.FlowNodeInput`.
@@ -20248,6 +20360,10 @@ export type BedrockFlowFlowNodeConfiguration = {
20248
20360
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html}
20249
20361
  */
20250
20362
  export type BedrockFlowFlowNodeInput = {
20363
+ /**
20364
+ * Optional tag to classify input type, currently exclusive to LoopNode
20365
+ */
20366
+ Category?: BedrockFlowFlowNodeInputCategory;
20251
20367
  /**
20252
20368
  * Expression for a node input in a flow
20253
20369
  * @minLength `1`
@@ -20264,6 +20380,12 @@ export type BedrockFlowFlowNodeInput = {
20264
20380
  */
20265
20381
  Type: BedrockFlowFlowNodeIODataType;
20266
20382
  };
20383
+ /**
20384
+ * Type definition for `AWS::Bedrock::Flow.FlowNodeInputCategory`.
20385
+ * Optional tag to classify input type, currently exclusive to LoopNode
20386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinputcategory.html}
20387
+ */
20388
+ export type BedrockFlowFlowNodeInputCategory = "LoopCondition" | "ReturnValueToLoopStart" | "ExitLoop";
20267
20389
  /**
20268
20390
  * Type definition for `AWS::Bedrock::Flow.FlowNodeIODataType`.
20269
20391
  * Type of input/output for a node in a flow
@@ -20291,7 +20413,7 @@ export type BedrockFlowFlowNodeOutput = {
20291
20413
  * Flow node types
20292
20414
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodetype.html}
20293
20415
  */
20294
- export type BedrockFlowFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector" | "InlineCode";
20416
+ export type BedrockFlowFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector" | "InlineCode" | "Loop" | "LoopInput" | "LoopController";
20295
20417
  /**
20296
20418
  * Type definition for `AWS::Bedrock::Flow.FlowStatus`.
20297
20419
  * Schema Type for Flow APIs
@@ -20365,6 +20487,7 @@ export type BedrockFlowKnowledgeBaseFlowNodeConfiguration = {
20365
20487
  * Configuration for a guardrail
20366
20488
  */
20367
20489
  GuardrailConfiguration?: BedrockFlowGuardrailConfiguration;
20490
+ InferenceConfiguration?: BedrockFlowPromptInferenceConfiguration;
20368
20491
  /**
20369
20492
  * Identifier of the KnowledgeBase
20370
20493
  * @maxLength `10`
@@ -20378,6 +20501,36 @@ export type BedrockFlowKnowledgeBaseFlowNodeConfiguration = {
20378
20501
  * @pattern `^(arn:aws(-[^:]{1,12})?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-zA-Z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$`
20379
20502
  */
20380
20503
  ModelId?: string;
20504
+ /**
20505
+ * Number Of Results to Retrieve
20506
+ * @min `1`
20507
+ * @max `100`
20508
+ */
20509
+ NumberOfResults?: number;
20510
+ OrchestrationConfiguration?: BedrockFlowKnowledgeBaseOrchestrationConfiguration;
20511
+ PromptTemplate?: BedrockFlowKnowledgeBasePromptTemplate;
20512
+ RerankingConfiguration?: BedrockFlowVectorSearchRerankingConfiguration;
20513
+ };
20514
+ /**
20515
+ * Type definition for `AWS::Bedrock::Flow.KnowledgeBaseOrchestrationConfiguration`.
20516
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseorchestrationconfiguration.html}
20517
+ */
20518
+ export type BedrockFlowKnowledgeBaseOrchestrationConfiguration = {
20519
+ AdditionalModelRequestFields?: BedrockFlowAdditionalModelRequestFields;
20520
+ InferenceConfig?: BedrockFlowPromptInferenceConfiguration;
20521
+ PerformanceConfig?: BedrockFlowPerformanceConfiguration;
20522
+ PromptTemplate?: BedrockFlowKnowledgeBasePromptTemplate;
20523
+ };
20524
+ /**
20525
+ * Type definition for `AWS::Bedrock::Flow.KnowledgeBasePromptTemplate`.
20526
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseprompttemplate.html}
20527
+ */
20528
+ export type BedrockFlowKnowledgeBasePromptTemplate = {
20529
+ /**
20530
+ * @minLength `1`
20531
+ * @maxLength `100000`
20532
+ */
20533
+ TextPromptTemplate: string;
20381
20534
  };
20382
20535
  /**
20383
20536
  * Type definition for `AWS::Bedrock::Flow.LambdaFunctionFlowNodeConfiguration`.
@@ -20411,12 +20564,76 @@ export type BedrockFlowLexFlowNodeConfiguration = {
20411
20564
  */
20412
20565
  LocaleId: string;
20413
20566
  };
20567
+ /**
20568
+ * Type definition for `AWS::Bedrock::Flow.LoopControllerFlowNodeConfiguration`.
20569
+ * Configuration for the LoopController node, which manages loop execution
20570
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopcontrollerflownodeconfiguration.html}
20571
+ */
20572
+ export type BedrockFlowLoopControllerFlowNodeConfiguration = {
20573
+ /**
20574
+ * Condition branch for a condition node
20575
+ */
20576
+ ContinueCondition: BedrockFlowFlowCondition;
20577
+ /**
20578
+ * Maximum number of iterations the loop can perform
20579
+ * @min `1`
20580
+ * @max `1000`
20581
+ */
20582
+ MaxIterations?: number;
20583
+ };
20584
+ /**
20585
+ * Type definition for `AWS::Bedrock::Flow.LoopFlowNodeConfiguration`.
20586
+ * Loop node config, contains loop's internal definition
20587
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopflownodeconfiguration.html}
20588
+ */
20589
+ export type BedrockFlowLoopFlowNodeConfiguration = {
20590
+ /**
20591
+ * Flow definition
20592
+ */
20593
+ Definition: BedrockFlowFlowDefinition;
20594
+ };
20595
+ /**
20596
+ * Type definition for `AWS::Bedrock::Flow.LoopInputFlowNodeConfiguration`.
20597
+ * Configuration for the LoopInput node
20598
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-loopinputflownodeconfiguration.html}
20599
+ */
20600
+ export type BedrockFlowLoopInputFlowNodeConfiguration = Record<string, any>;
20601
+ /**
20602
+ * Type definition for `AWS::Bedrock::Flow.MetadataConfigurationForReranking`.
20603
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-metadataconfigurationforreranking.html}
20604
+ */
20605
+ export type BedrockFlowMetadataConfigurationForReranking = {
20606
+ /**
20607
+ * Reranking Metadata Selection Mode
20608
+ */
20609
+ SelectionMode: BedrockFlowRerankingMetadataSelectionMode;
20610
+ /**
20611
+ * Reranking Metadata Selective Mode Configuration
20612
+ */
20613
+ SelectiveModeConfiguration?: BedrockFlowRerankingMetadataSelectiveModeConfiguration;
20614
+ };
20414
20615
  /**
20415
20616
  * Type definition for `AWS::Bedrock::Flow.OutputFlowNodeConfiguration`.
20416
20617
  * Output flow node configuration
20417
20618
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-outputflownodeconfiguration.html}
20418
20619
  */
20419
20620
  export type BedrockFlowOutputFlowNodeConfiguration = Record<string, any>;
20621
+ /**
20622
+ * Type definition for `AWS::Bedrock::Flow.PerformanceConfiguration`.
20623
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-performanceconfiguration.html}
20624
+ */
20625
+ export type BedrockFlowPerformanceConfiguration = {
20626
+ /**
20627
+ * Performance Configuration Latency
20628
+ */
20629
+ Latency?: BedrockFlowPerformanceConfigurationLatency;
20630
+ };
20631
+ /**
20632
+ * Type definition for `AWS::Bedrock::Flow.PerformanceConfigurationLatency`.
20633
+ * Performance Configuration Latency
20634
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-performanceconfigurationlatency.html}
20635
+ */
20636
+ export type BedrockFlowPerformanceConfigurationLatency = "standard" | "optimized";
20420
20637
  /**
20421
20638
  * Type definition for `AWS::Bedrock::Flow.PromptFlowNodeConfiguration`.
20422
20639
  * Prompt flow node configuration
@@ -20549,6 +20766,32 @@ export type BedrockFlowPromptTemplateConfiguration = {
20549
20766
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-prompttemplatetype.html}
20550
20767
  */
20551
20768
  export type BedrockFlowPromptTemplateType = "TEXT";
20769
+ /**
20770
+ * Type definition for `AWS::Bedrock::Flow.RerankingMetadataSelectionMode`.
20771
+ * Reranking Metadata Selection Mode
20772
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-rerankingmetadataselectionmode.html}
20773
+ */
20774
+ export type BedrockFlowRerankingMetadataSelectionMode = "SELECTIVE" | "ALL";
20775
+ /**
20776
+ * Type definition for `AWS::Bedrock::Flow.RerankingMetadataSelectiveModeConfiguration`.
20777
+ * Reranking Metadata Selective Mode Configuration
20778
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-rerankingmetadataselectivemodeconfiguration.html}
20779
+ */
20780
+ export type BedrockFlowRerankingMetadataSelectiveModeConfiguration = {
20781
+ /**
20782
+ * List of Fields For Reranking
20783
+ * @minLength `1`
20784
+ * @maxLength `100`
20785
+ */
20786
+ FieldsToInclude: BedrockFlowFieldForReranking[];
20787
+ } | {
20788
+ /**
20789
+ * List of Fields For Reranking
20790
+ * @minLength `1`
20791
+ * @maxLength `100`
20792
+ */
20793
+ FieldsToExclude: BedrockFlowFieldForReranking[];
20794
+ };
20552
20795
  /**
20553
20796
  * Type definition for `AWS::Bedrock::Flow.RetrievalFlowNodeConfiguration`.
20554
20797
  * Retrieval flow node configuration
@@ -20666,6 +20909,51 @@ export type BedrockFlowTextPromptTemplateConfiguration = {
20666
20909
  */
20667
20910
  Text: string;
20668
20911
  };
20912
+ /**
20913
+ * Type definition for `AWS::Bedrock::Flow.VectorSearchBedrockRerankingConfiguration`.
20914
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingconfiguration.html}
20915
+ */
20916
+ export type BedrockFlowVectorSearchBedrockRerankingConfiguration = {
20917
+ MetadataConfiguration?: BedrockFlowMetadataConfigurationForReranking;
20918
+ ModelConfiguration: BedrockFlowVectorSearchBedrockRerankingModelConfiguration;
20919
+ /**
20920
+ * Number Of Results For Reranking
20921
+ * @min `1`
20922
+ * @max `100`
20923
+ */
20924
+ NumberOfRerankedResults?: number;
20925
+ };
20926
+ /**
20927
+ * Type definition for `AWS::Bedrock::Flow.VectorSearchBedrockRerankingModelConfiguration`.
20928
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchbedrockrerankingmodelconfiguration.html}
20929
+ */
20930
+ export type BedrockFlowVectorSearchBedrockRerankingModelConfiguration = {
20931
+ AdditionalModelRequestFields?: BedrockFlowAdditionalModelRequestFields;
20932
+ /**
20933
+ * Arn of a Bedrock Reranking model
20934
+ * @minLength `1`
20935
+ * @maxLength `2048`
20936
+ * @pattern `^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?$`
20937
+ */
20938
+ ModelArn: string;
20939
+ };
20940
+ /**
20941
+ * Type definition for `AWS::Bedrock::Flow.VectorSearchRerankingConfiguration`.
20942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchrerankingconfiguration.html}
20943
+ */
20944
+ export type BedrockFlowVectorSearchRerankingConfiguration = {
20945
+ BedrockRerankingConfiguration?: BedrockFlowVectorSearchBedrockRerankingConfiguration;
20946
+ /**
20947
+ * Enum of Rerank Configuration Types
20948
+ */
20949
+ Type: BedrockFlowVectorSearchRerankingConfigurationType;
20950
+ };
20951
+ /**
20952
+ * Type definition for `AWS::Bedrock::Flow.VectorSearchRerankingConfigurationType`.
20953
+ * Enum of Rerank Configuration Types
20954
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-vectorsearchrerankingconfigurationtype.html}
20955
+ */
20956
+ export type BedrockFlowVectorSearchRerankingConfigurationType = "BEDROCK_RERANKING_MODEL";
20669
20957
  /**
20670
20958
  * Definition of AWS::Bedrock::FlowAlias Resource Type
20671
20959
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html}
@@ -20806,92 +21094,7 @@ export type BedrockFlowVersionAttributes = {
20806
21094
  /**
20807
21095
  * Flow definition
20808
21096
  */
20809
- Definition: {
20810
- /**
20811
- * List of connections
20812
- * @maxLength `100`
20813
- */
20814
- Connections: {
20815
- /**
20816
- * Connection configuration
20817
- */
20818
- Configuration: BedrockFlowVersionFlowConnectionConfiguration;
20819
- /**
20820
- * Name of a connection in a flow
20821
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,100}$`
20822
- */
20823
- Name: string;
20824
- /**
20825
- * Name of a node in a flow
20826
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
20827
- */
20828
- Source: string;
20829
- /**
20830
- * Name of a node in a flow
20831
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
20832
- */
20833
- Target: string;
20834
- /**
20835
- * Connection type
20836
- */
20837
- Type: BedrockFlowVersionFlowConnectionType;
20838
- }[];
20839
- /**
20840
- * List of nodes in a flow
20841
- * @maxLength `40`
20842
- */
20843
- Nodes: {
20844
- /**
20845
- * Node configuration in a flow
20846
- */
20847
- Configuration: BedrockFlowVersionFlowNodeConfiguration;
20848
- /**
20849
- * List of node inputs in a flow
20850
- * @maxLength `5`
20851
- */
20852
- Inputs: {
20853
- /**
20854
- * Expression for a node input in a flow
20855
- * @minLength `1`
20856
- * @maxLength `64`
20857
- */
20858
- Expression: string;
20859
- /**
20860
- * Name of a node input in a flow
20861
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
20862
- */
20863
- Name: string;
20864
- /**
20865
- * Type of input/output for a node in a flow
20866
- */
20867
- Type: BedrockFlowVersionFlowNodeIODataType;
20868
- }[];
20869
- /**
20870
- * Name of a node in a flow
20871
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
20872
- */
20873
- Name: string;
20874
- /**
20875
- * List of node outputs in a flow
20876
- * @maxLength `5`
20877
- */
20878
- Outputs: {
20879
- /**
20880
- * Name of a node output in a flow
20881
- * @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
20882
- */
20883
- Name: string;
20884
- /**
20885
- * Type of input/output for a node in a flow
20886
- */
20887
- Type: BedrockFlowVersionFlowNodeIODataType;
20888
- }[];
20889
- /**
20890
- * Flow node types
20891
- */
20892
- Type: BedrockFlowVersionFlowNodeType;
20893
- }[];
20894
- };
21097
+ Definition: BedrockFlowVersionFlowDefinition;
20895
21098
  /**
20896
21099
  * ARN of a IAM role
20897
21100
  * @maxLength `2048`
@@ -20918,6 +21121,11 @@ export type BedrockFlowVersionAttributes = {
20918
21121
  */
20919
21122
  Version: string;
20920
21123
  };
21124
+ /**
21125
+ * Type definition for `AWS::Bedrock::FlowVersion.AdditionalModelRequestFields`.
21126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-additionalmodelrequestfields.html}
21127
+ */
21128
+ export type BedrockFlowVersionAdditionalModelRequestFields = Record<string, any>;
20921
21129
  /**
20922
21130
  * Type definition for `AWS::Bedrock::FlowVersion.AgentFlowNodeConfiguration`.
20923
21131
  * Agent flow node configuration
@@ -20950,6 +21158,19 @@ export type BedrockFlowVersionConditionFlowNodeConfiguration = {
20950
21158
  */
20951
21159
  Conditions: BedrockFlowVersionFlowCondition[];
20952
21160
  };
21161
+ /**
21162
+ * Type definition for `AWS::Bedrock::FlowVersion.FieldForReranking`.
21163
+ * Field name for reranking
21164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-fieldforreranking.html}
21165
+ */
21166
+ export type BedrockFlowVersionFieldForReranking = {
21167
+ /**
21168
+ * Field name for reranking
21169
+ * @minLength `1`
21170
+ * @maxLength `2000`
21171
+ */
21172
+ FieldName: string;
21173
+ };
20953
21174
  /**
20954
21175
  * Type definition for `AWS::Bedrock::FlowVersion.FlowCondition`.
20955
21176
  * Condition branch for a condition node
@@ -21166,6 +21387,21 @@ export type BedrockFlowVersionFlowNodeConfiguration = {
21166
21387
  * Inline code config strucuture, contains code configs
21167
21388
  */
21168
21389
  InlineCode: BedrockFlowVersionInlineCodeFlowNodeConfiguration;
21390
+ } | {
21391
+ /**
21392
+ * Loop node config, contains loop's internal definition
21393
+ */
21394
+ Loop: BedrockFlowVersionLoopFlowNodeConfiguration;
21395
+ } | {
21396
+ /**
21397
+ * Configuration for the LoopInput node
21398
+ */
21399
+ LoopInput: BedrockFlowVersionLoopInputFlowNodeConfiguration;
21400
+ } | {
21401
+ /**
21402
+ * Configuration for the LoopController node, which manages loop execution
21403
+ */
21404
+ LoopController: BedrockFlowVersionLoopControllerFlowNodeConfiguration;
21169
21405
  };
21170
21406
  /**
21171
21407
  * Type definition for `AWS::Bedrock::FlowVersion.FlowNodeInput`.
@@ -21216,7 +21452,7 @@ export type BedrockFlowVersionFlowNodeOutput = {
21216
21452
  * Flow node types
21217
21453
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flownodetype.html}
21218
21454
  */
21219
- export type BedrockFlowVersionFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval" | "InlineCode";
21455
+ export type BedrockFlowVersionFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval" | "InlineCode" | "Loop" | "LoopInput" | "LoopController";
21220
21456
  /**
21221
21457
  * Type definition for `AWS::Bedrock::FlowVersion.FlowStatus`.
21222
21458
  * Schema Type for Flow APIs
@@ -21279,6 +21515,7 @@ export type BedrockFlowVersionKnowledgeBaseFlowNodeConfiguration = {
21279
21515
  * Configuration for a guardrail
21280
21516
  */
21281
21517
  GuardrailConfiguration?: BedrockFlowVersionGuardrailConfiguration;
21518
+ InferenceConfiguration?: BedrockFlowVersionPromptInferenceConfiguration;
21282
21519
  /**
21283
21520
  * Identifier of the KnowledgeBase
21284
21521
  * @maxLength `10`
@@ -21292,6 +21529,36 @@ export type BedrockFlowVersionKnowledgeBaseFlowNodeConfiguration = {
21292
21529
  * @pattern `^(arn:aws(-[^:]{1,12})?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-zA-Z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$`
21293
21530
  */
21294
21531
  ModelId?: string;
21532
+ /**
21533
+ * Number Of Results to Retrieve
21534
+ * @min `1`
21535
+ * @max `100`
21536
+ */
21537
+ NumberOfResults?: number;
21538
+ OrchestrationConfiguration?: BedrockFlowVersionKnowledgeBaseOrchestrationConfiguration;
21539
+ PromptTemplate?: BedrockFlowVersionKnowledgeBasePromptTemplate;
21540
+ RerankingConfiguration?: BedrockFlowVersionVectorSearchRerankingConfiguration;
21541
+ };
21542
+ /**
21543
+ * Type definition for `AWS::Bedrock::FlowVersion.KnowledgeBaseOrchestrationConfiguration`.
21544
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-knowledgebaseorchestrationconfiguration.html}
21545
+ */
21546
+ export type BedrockFlowVersionKnowledgeBaseOrchestrationConfiguration = {
21547
+ AdditionalModelRequestFields?: BedrockFlowVersionAdditionalModelRequestFields;
21548
+ InferenceConfig?: BedrockFlowVersionPromptInferenceConfiguration;
21549
+ PerformanceConfig?: BedrockFlowVersionPerformanceConfiguration;
21550
+ PromptTemplate?: BedrockFlowVersionKnowledgeBasePromptTemplate;
21551
+ };
21552
+ /**
21553
+ * Type definition for `AWS::Bedrock::FlowVersion.KnowledgeBasePromptTemplate`.
21554
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-knowledgebaseprompttemplate.html}
21555
+ */
21556
+ export type BedrockFlowVersionKnowledgeBasePromptTemplate = {
21557
+ /**
21558
+ * @minLength `1`
21559
+ * @maxLength `100000`
21560
+ */
21561
+ TextPromptTemplate: string;
21295
21562
  };
21296
21563
  /**
21297
21564
  * Type definition for `AWS::Bedrock::FlowVersion.LambdaFunctionFlowNodeConfiguration`.
@@ -21325,12 +21592,76 @@ export type BedrockFlowVersionLexFlowNodeConfiguration = {
21325
21592
  */
21326
21593
  LocaleId: string;
21327
21594
  };
21595
+ /**
21596
+ * Type definition for `AWS::Bedrock::FlowVersion.LoopControllerFlowNodeConfiguration`.
21597
+ * Configuration for the LoopController node, which manages loop execution
21598
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-loopcontrollerflownodeconfiguration.html}
21599
+ */
21600
+ export type BedrockFlowVersionLoopControllerFlowNodeConfiguration = {
21601
+ /**
21602
+ * Condition branch for a condition node
21603
+ */
21604
+ ContinueCondition: BedrockFlowVersionFlowCondition;
21605
+ /**
21606
+ * Maximum number of iterations the loop can perform
21607
+ * @min `1`
21608
+ * @max `1000`
21609
+ */
21610
+ MaxIterations?: number;
21611
+ };
21612
+ /**
21613
+ * Type definition for `AWS::Bedrock::FlowVersion.LoopFlowNodeConfiguration`.
21614
+ * Loop node config, contains loop's internal definition
21615
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-loopflownodeconfiguration.html}
21616
+ */
21617
+ export type BedrockFlowVersionLoopFlowNodeConfiguration = {
21618
+ /**
21619
+ * Flow definition
21620
+ */
21621
+ Definition: BedrockFlowVersionFlowDefinition;
21622
+ };
21623
+ /**
21624
+ * Type definition for `AWS::Bedrock::FlowVersion.LoopInputFlowNodeConfiguration`.
21625
+ * Configuration for the LoopInput node
21626
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-loopinputflownodeconfiguration.html}
21627
+ */
21628
+ export type BedrockFlowVersionLoopInputFlowNodeConfiguration = Record<string, any>;
21629
+ /**
21630
+ * Type definition for `AWS::Bedrock::FlowVersion.MetadataConfigurationForReranking`.
21631
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-metadataconfigurationforreranking.html}
21632
+ */
21633
+ export type BedrockFlowVersionMetadataConfigurationForReranking = {
21634
+ /**
21635
+ * Reranking Metadata Selection Mode
21636
+ */
21637
+ SelectionMode: BedrockFlowVersionRerankingMetadataSelectionMode;
21638
+ /**
21639
+ * Reranking Metadata Selective Mode Configuration
21640
+ */
21641
+ SelectiveModeConfiguration?: BedrockFlowVersionRerankingMetadataSelectiveModeConfiguration;
21642
+ };
21328
21643
  /**
21329
21644
  * Type definition for `AWS::Bedrock::FlowVersion.OutputFlowNodeConfiguration`.
21330
21645
  * Output flow node configuration
21331
21646
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-outputflownodeconfiguration.html}
21332
21647
  */
21333
21648
  export type BedrockFlowVersionOutputFlowNodeConfiguration = Record<string, any>;
21649
+ /**
21650
+ * Type definition for `AWS::Bedrock::FlowVersion.PerformanceConfiguration`.
21651
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-performanceconfiguration.html}
21652
+ */
21653
+ export type BedrockFlowVersionPerformanceConfiguration = {
21654
+ /**
21655
+ * Performance Configuration Latency
21656
+ */
21657
+ Latency?: BedrockFlowVersionPerformanceConfigurationLatency;
21658
+ };
21659
+ /**
21660
+ * Type definition for `AWS::Bedrock::FlowVersion.PerformanceConfigurationLatency`.
21661
+ * Performance Configuration Latency
21662
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-performanceconfigurationlatency.html}
21663
+ */
21664
+ export type BedrockFlowVersionPerformanceConfigurationLatency = "standard" | "optimized";
21334
21665
  /**
21335
21666
  * Type definition for `AWS::Bedrock::FlowVersion.PromptFlowNodeConfiguration`.
21336
21667
  * Prompt flow node configuration
@@ -21463,6 +21794,32 @@ export type BedrockFlowVersionPromptTemplateConfiguration = {
21463
21794
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-prompttemplatetype.html}
21464
21795
  */
21465
21796
  export type BedrockFlowVersionPromptTemplateType = "TEXT";
21797
+ /**
21798
+ * Type definition for `AWS::Bedrock::FlowVersion.RerankingMetadataSelectionMode`.
21799
+ * Reranking Metadata Selection Mode
21800
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-rerankingmetadataselectionmode.html}
21801
+ */
21802
+ export type BedrockFlowVersionRerankingMetadataSelectionMode = "SELECTIVE" | "ALL";
21803
+ /**
21804
+ * Type definition for `AWS::Bedrock::FlowVersion.RerankingMetadataSelectiveModeConfiguration`.
21805
+ * Reranking Metadata Selective Mode Configuration
21806
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-rerankingmetadataselectivemodeconfiguration.html}
21807
+ */
21808
+ export type BedrockFlowVersionRerankingMetadataSelectiveModeConfiguration = {
21809
+ /**
21810
+ * List of Fields For Reranking
21811
+ * @minLength `1`
21812
+ * @maxLength `100`
21813
+ */
21814
+ FieldsToInclude: BedrockFlowVersionFieldForReranking[];
21815
+ } | {
21816
+ /**
21817
+ * List of Fields For Reranking
21818
+ * @minLength `1`
21819
+ * @maxLength `100`
21820
+ */
21821
+ FieldsToExclude: BedrockFlowVersionFieldForReranking[];
21822
+ };
21466
21823
  /**
21467
21824
  * Type definition for `AWS::Bedrock::FlowVersion.RetrievalFlowNodeConfiguration`.
21468
21825
  * Retrieval flow node configuration
@@ -21548,6 +21905,51 @@ export type BedrockFlowVersionTextPromptTemplateConfiguration = {
21548
21905
  */
21549
21906
  Text: string;
21550
21907
  };
21908
+ /**
21909
+ * Type definition for `AWS::Bedrock::FlowVersion.VectorSearchBedrockRerankingConfiguration`.
21910
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-vectorsearchbedrockrerankingconfiguration.html}
21911
+ */
21912
+ export type BedrockFlowVersionVectorSearchBedrockRerankingConfiguration = {
21913
+ MetadataConfiguration?: BedrockFlowVersionMetadataConfigurationForReranking;
21914
+ ModelConfiguration: BedrockFlowVersionVectorSearchBedrockRerankingModelConfiguration;
21915
+ /**
21916
+ * Number Of Results For Reranking
21917
+ * @min `1`
21918
+ * @max `100`
21919
+ */
21920
+ NumberOfRerankedResults?: number;
21921
+ };
21922
+ /**
21923
+ * Type definition for `AWS::Bedrock::FlowVersion.VectorSearchBedrockRerankingModelConfiguration`.
21924
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-vectorsearchbedrockrerankingmodelconfiguration.html}
21925
+ */
21926
+ export type BedrockFlowVersionVectorSearchBedrockRerankingModelConfiguration = {
21927
+ AdditionalModelRequestFields?: BedrockFlowVersionAdditionalModelRequestFields;
21928
+ /**
21929
+ * Arn of a Bedrock Reranking model
21930
+ * @minLength `1`
21931
+ * @maxLength `2048`
21932
+ * @pattern `^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?$`
21933
+ */
21934
+ ModelArn: string;
21935
+ };
21936
+ /**
21937
+ * Type definition for `AWS::Bedrock::FlowVersion.VectorSearchRerankingConfiguration`.
21938
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-vectorsearchrerankingconfiguration.html}
21939
+ */
21940
+ export type BedrockFlowVersionVectorSearchRerankingConfiguration = {
21941
+ BedrockRerankingConfiguration?: BedrockFlowVersionVectorSearchBedrockRerankingConfiguration;
21942
+ /**
21943
+ * Enum of Rerank Configuration Types
21944
+ */
21945
+ Type: BedrockFlowVersionVectorSearchRerankingConfigurationType;
21946
+ };
21947
+ /**
21948
+ * Type definition for `AWS::Bedrock::FlowVersion.VectorSearchRerankingConfigurationType`.
21949
+ * Enum of Rerank Configuration Types
21950
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-vectorsearchrerankingconfigurationtype.html}
21951
+ */
21952
+ export type BedrockFlowVersionVectorSearchRerankingConfigurationType = "BEDROCK_RERANKING_MODEL";
21551
21953
  /**
21552
21954
  * Definition of AWS::Bedrock::Guardrail Resource Type
21553
21955
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrail.html}
@@ -31530,6 +31932,11 @@ export type CloudTrailEventDataStoreProps = {
31530
31932
  * The mode that the event data store will use to charge for event storage.
31531
31933
  */
31532
31934
  BillingMode?: string;
31935
+ /**
31936
+ * An array that enriches event records in an existing event data store by including additional information specified in individual ContexKeySelector entries. If you add ContextKeySelectors, you must set MaxEventSize to Large.
31937
+ * @maxLength `2`
31938
+ */
31939
+ ContextKeySelectors?: CloudTrailEventDataStoreContextKeySelector[];
31533
31940
  /**
31534
31941
  * Indicates whether federation is enabled on an event data store.
31535
31942
  */
@@ -31554,6 +31961,10 @@ export type CloudTrailEventDataStoreProps = {
31554
31961
  * Specifies the KMS key ID to use to encrypt the events delivered by CloudTrail. The value can be an alias name prefixed by 'alias/', a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
31555
31962
  */
31556
31963
  KmsKeyId?: string;
31964
+ /**
31965
+ * Specifies the maximum size allowed for the event. Valid values are Standard and Large. If you add ContextKeySelectors, this value must be set to Large.
31966
+ */
31967
+ MaxEventSize?: "Standard" | "Large";
31557
31968
  /**
31558
31969
  * Indicates whether the event data store includes events from all regions, or only from the region in which it was created.
31559
31970
  */
@@ -31660,6 +32071,23 @@ export type CloudTrailEventDataStoreAdvancedFieldSelector = {
31660
32071
  */
31661
32072
  StartsWith?: string[];
31662
32073
  };
32074
+ /**
32075
+ * Type definition for `AWS::CloudTrail::EventDataStore.ContextKeySelector`.
32076
+ * An object that contains information types to be included in CloudTrail enriched events.
32077
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-eventdatastore-contextkeyselector.html}
32078
+ */
32079
+ export type CloudTrailEventDataStoreContextKeySelector = {
32080
+ /**
32081
+ * An operator that includes events that match the exact value of the event record field specified in Type.
32082
+ * @minLength `1`
32083
+ * @maxLength `50`
32084
+ */
32085
+ Equals: string[];
32086
+ /**
32087
+ * Specifies the type of the event record field in ContextKeySelector. Valid values include RequestContext, TagContext.
32088
+ */
32089
+ Type: "RequestContext" | "TagContext";
32090
+ };
31663
32091
  /**
31664
32092
  * Type definition for `AWS::CloudTrail::EventDataStore.InsightSelector`.
31665
32093
  * A string that contains Insights types that are logged on an event data store.
@@ -48253,6 +48681,10 @@ export type DeadlineFleetMemoryMiBRange = {
48253
48681
  export type DeadlineFleetServiceManagedEc2FleetConfiguration = {
48254
48682
  InstanceCapabilities: DeadlineFleetServiceManagedEc2InstanceCapabilities;
48255
48683
  InstanceMarketOptions: DeadlineFleetServiceManagedEc2InstanceMarketOptions;
48684
+ /**
48685
+ * @pattern `^sp-[0-9a-f]{32}$`
48686
+ */
48687
+ StorageProfileId?: string;
48256
48688
  };
48257
48689
  /**
48258
48690
  * Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2InstanceCapabilities`.
@@ -50832,6 +51264,16 @@ export type DSQLClusterProps = {
50832
51264
  * Whether deletion protection is enabled in this cluster.
50833
51265
  */
50834
51266
  DeletionProtectionEnabled?: boolean;
51267
+ /**
51268
+ * The Multi-region properties associated to this cluster.
51269
+ */
51270
+ MultiRegionProperties?: {
51271
+ Clusters?: string[];
51272
+ /**
51273
+ * The witness region in a multi-region cluster.
51274
+ */
51275
+ WitnessRegion?: string;
51276
+ };
50835
51277
  Tags?: DSQLClusterTag[];
50836
51278
  };
50837
51279
  /**
@@ -64009,7 +64451,7 @@ export type EFSFileSystemProps = {
64009
64451
  + When to move files in the file system from primary storage or IA storage to Archive storage.
64010
64452
  + When to move files that are in IA or Archive storage to primary storage.
64011
64453
 
64012
- EFS requires that each ``LifecyclePolicy`` object have only a single transition. This means that in a request body, ``LifecyclePolicies`` needs to be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive`` ``TransitionToPrimaryStorageClass``. See the example requests in the following section for more information.
64454
+ EFS requires that each ``LifecyclePolicy`` object have only a single transition. This means that in a request body, ``LifecyclePolicies`` needs to be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive````TransitionToPrimaryStorageClass``. See the example requests in the following section for more information.
64013
64455
  */
64014
64456
  LifecyclePolicies?: EFSFileSystemLifecyclePolicy[];
64015
64457
  /**
@@ -64068,8 +64510,8 @@ export type EFSFileSystemAttributes = {
64068
64510
  export type EFSFileSystemBackupPolicy = {
64069
64511
  /**
64070
64512
  * Set the backup policy status for the file system.
64071
- + *ENABLED* - Turns automatic backups on for the file system.
64072
- + *DISABLED* - Turns automatic backups off for the file system.
64513
+ + *ENABLED* - Turns automatic backups on for the file system.
64514
+ + *DISABLED* - Turns automatic backups off for the file system.
64073
64515
  */
64074
64516
  Status: "DISABLED" | "ENABLED";
64075
64517
  };
@@ -64096,9 +64538,9 @@ export type EFSFileSystemElasticFileSystemTag = {
64096
64538
  export type EFSFileSystemFileSystemProtection = {
64097
64539
  /**
64098
64540
  * The status of the file system's replication overwrite protection.
64099
- + ``ENABLED`` – The file system cannot be used as the destination file system in a replication configuration. The file system is writeable. Replication overwrite protection is ``ENABLED`` by default.
64100
- + ``DISABLED`` – The file system can be used as the destination file system in a replication configuration. The file system is read-only and can only be modified by EFS replication.
64101
- + ``REPLICATING`` – The file system is being used as the destination file system in a replication configuration. The file system is read-only and is modified only by EFS replication.
64541
+ + ``ENABLED`` – The file system cannot be used as the destination file system in a replication configuration. The file system is writeable. Replication overwrite protection is ``ENABLED`` by default.
64542
+ + ``DISABLED`` – The file system can be used as the destination file system in a replication configuration. The file system is read-only and can only be modified by EFS replication.
64543
+ + ``REPLICATING`` – The file system is being used as the destination file system in a replication configuration. The file system is read-only and is modified only by EFS replication.
64102
64544
 
64103
64545
  If the replication configuration is deleted, the file system's replication overwrite protection is re-enabled, the file system becomes writeable.
64104
64546
  */
@@ -191871,6 +192313,7 @@ export type WAFv2WebACLProps = {
191871
192313
  * @pattern `^[0-9A-Za-z_-]{1,128}$`
191872
192314
  */
191873
192315
  Name?: string;
192316
+ OnSourceDDoSProtectionConfig?: any;
191874
192317
  /**
191875
192318
  * Collection of Rules.
191876
192319
  */
@@ -196668,6 +197111,7 @@ export interface ResourceTypes {
196668
197111
  "AWS::ApiGatewayV2::Model": ApiGatewayV2ModelProps;
196669
197112
  "AWS::ApiGatewayV2::Route": ApiGatewayV2RouteProps;
196670
197113
  "AWS::ApiGatewayV2::RouteResponse": ApiGatewayV2RouteResponseProps;
197114
+ "AWS::ApiGatewayV2::RoutingRule": ApiGatewayV2RoutingRuleProps;
196671
197115
  "AWS::ApiGatewayV2::Stage": ApiGatewayV2StageProps;
196672
197116
  "AWS::ApiGatewayV2::VpcLink": ApiGatewayV2VpcLinkProps;
196673
197117
  "AWS::AppConfig::Application": AppConfigApplicationProps;
@@ -198064,6 +198508,7 @@ export interface AttributeTypes {
198064
198508
  "AWS::ApiGatewayV2::Model": ApiGatewayV2ModelAttributes;
198065
198509
  "AWS::ApiGatewayV2::Route": ApiGatewayV2RouteAttributes;
198066
198510
  "AWS::ApiGatewayV2::RouteResponse": ApiGatewayV2RouteResponseAttributes;
198511
+ "AWS::ApiGatewayV2::RoutingRule": ApiGatewayV2RoutingRuleAttributes;
198067
198512
  "AWS::ApiGatewayV2::Stage": ApiGatewayV2StageAttributes;
198068
198513
  "AWS::ApiGatewayV2::VpcLink": ApiGatewayV2VpcLinkAttributes;
198069
198514
  "AWS::AppConfig::Application": AppConfigApplicationAttributes;
@@ -199314,6 +199759,7 @@ export declare const ResourceType: {
199314
199759
  readonly ApiGatewayV2Model: "AWS::ApiGatewayV2::Model";
199315
199760
  readonly ApiGatewayV2Route: "AWS::ApiGatewayV2::Route";
199316
199761
  readonly ApiGatewayV2RouteResponse: "AWS::ApiGatewayV2::RouteResponse";
199762
+ readonly ApiGatewayV2RoutingRule: "AWS::ApiGatewayV2::RoutingRule";
199317
199763
  readonly ApiGatewayV2Stage: "AWS::ApiGatewayV2::Stage";
199318
199764
  readonly ApiGatewayV2VpcLink: "AWS::ApiGatewayV2::VpcLink";
199319
199765
  readonly AppConfigApplication: "AWS::AppConfig::Application";