@awboost/cfntypes 0.100.203 → 0.100.205
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.
@@ -20066,6 +20066,11 @@ export type BedrockFlowAttributes = {
|
|
20066
20066
|
*/
|
20067
20067
|
Version: string;
|
20068
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>;
|
20069
20074
|
/**
|
20070
20075
|
* Type definition for `AWS::Bedrock::Flow.AgentFlowNodeConfiguration`.
|
20071
20076
|
* Agent flow node configuration
|
@@ -20104,6 +20109,19 @@ export type BedrockFlowConditionFlowNodeConfiguration = {
|
|
20104
20109
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-definitionsubstitutions.html}
|
20105
20110
|
*/
|
20106
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
|
+
};
|
20107
20125
|
/**
|
20108
20126
|
* Type definition for `AWS::Bedrock::Flow.FlowCondition`.
|
20109
20127
|
* Condition branch for a condition node
|
@@ -20320,6 +20338,21 @@ export type BedrockFlowFlowNodeConfiguration = {
|
|
20320
20338
|
* Inline code config strucuture, contains code configs
|
20321
20339
|
*/
|
20322
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;
|
20323
20356
|
};
|
20324
20357
|
/**
|
20325
20358
|
* Type definition for `AWS::Bedrock::Flow.FlowNodeInput`.
|
@@ -20327,6 +20360,10 @@ export type BedrockFlowFlowNodeConfiguration = {
|
|
20327
20360
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html}
|
20328
20361
|
*/
|
20329
20362
|
export type BedrockFlowFlowNodeInput = {
|
20363
|
+
/**
|
20364
|
+
* Optional tag to classify input type, currently exclusive to LoopNode
|
20365
|
+
*/
|
20366
|
+
Category?: BedrockFlowFlowNodeInputCategory;
|
20330
20367
|
/**
|
20331
20368
|
* Expression for a node input in a flow
|
20332
20369
|
* @minLength `1`
|
@@ -20343,6 +20380,12 @@ export type BedrockFlowFlowNodeInput = {
|
|
20343
20380
|
*/
|
20344
20381
|
Type: BedrockFlowFlowNodeIODataType;
|
20345
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";
|
20346
20389
|
/**
|
20347
20390
|
* Type definition for `AWS::Bedrock::Flow.FlowNodeIODataType`.
|
20348
20391
|
* Type of input/output for a node in a flow
|
@@ -20370,7 +20413,7 @@ export type BedrockFlowFlowNodeOutput = {
|
|
20370
20413
|
* Flow node types
|
20371
20414
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodetype.html}
|
20372
20415
|
*/
|
20373
|
-
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";
|
20374
20417
|
/**
|
20375
20418
|
* Type definition for `AWS::Bedrock::Flow.FlowStatus`.
|
20376
20419
|
* Schema Type for Flow APIs
|
@@ -20444,6 +20487,7 @@ export type BedrockFlowKnowledgeBaseFlowNodeConfiguration = {
|
|
20444
20487
|
* Configuration for a guardrail
|
20445
20488
|
*/
|
20446
20489
|
GuardrailConfiguration?: BedrockFlowGuardrailConfiguration;
|
20490
|
+
InferenceConfiguration?: BedrockFlowPromptInferenceConfiguration;
|
20447
20491
|
/**
|
20448
20492
|
* Identifier of the KnowledgeBase
|
20449
20493
|
* @maxLength `10`
|
@@ -20457,6 +20501,36 @@ export type BedrockFlowKnowledgeBaseFlowNodeConfiguration = {
|
|
20457
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})?$`
|
20458
20502
|
*/
|
20459
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;
|
20460
20534
|
};
|
20461
20535
|
/**
|
20462
20536
|
* Type definition for `AWS::Bedrock::Flow.LambdaFunctionFlowNodeConfiguration`.
|
@@ -20490,12 +20564,76 @@ export type BedrockFlowLexFlowNodeConfiguration = {
|
|
20490
20564
|
*/
|
20491
20565
|
LocaleId: string;
|
20492
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
|
+
};
|
20493
20615
|
/**
|
20494
20616
|
* Type definition for `AWS::Bedrock::Flow.OutputFlowNodeConfiguration`.
|
20495
20617
|
* Output flow node configuration
|
20496
20618
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-outputflownodeconfiguration.html}
|
20497
20619
|
*/
|
20498
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";
|
20499
20637
|
/**
|
20500
20638
|
* Type definition for `AWS::Bedrock::Flow.PromptFlowNodeConfiguration`.
|
20501
20639
|
* Prompt flow node configuration
|
@@ -20628,6 +20766,32 @@ export type BedrockFlowPromptTemplateConfiguration = {
|
|
20628
20766
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-prompttemplatetype.html}
|
20629
20767
|
*/
|
20630
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
|
+
};
|
20631
20795
|
/**
|
20632
20796
|
* Type definition for `AWS::Bedrock::Flow.RetrievalFlowNodeConfiguration`.
|
20633
20797
|
* Retrieval flow node configuration
|
@@ -20745,6 +20909,51 @@ export type BedrockFlowTextPromptTemplateConfiguration = {
|
|
20745
20909
|
*/
|
20746
20910
|
Text: string;
|
20747
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";
|
20748
20957
|
/**
|
20749
20958
|
* Definition of AWS::Bedrock::FlowAlias Resource Type
|
20750
20959
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html}
|
@@ -20885,92 +21094,7 @@ export type BedrockFlowVersionAttributes = {
|
|
20885
21094
|
/**
|
20886
21095
|
* Flow definition
|
20887
21096
|
*/
|
20888
|
-
Definition:
|
20889
|
-
/**
|
20890
|
-
* List of connections
|
20891
|
-
* @maxLength `100`
|
20892
|
-
*/
|
20893
|
-
Connections: {
|
20894
|
-
/**
|
20895
|
-
* Connection configuration
|
20896
|
-
*/
|
20897
|
-
Configuration: BedrockFlowVersionFlowConnectionConfiguration;
|
20898
|
-
/**
|
20899
|
-
* Name of a connection in a flow
|
20900
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,100}$`
|
20901
|
-
*/
|
20902
|
-
Name: string;
|
20903
|
-
/**
|
20904
|
-
* Name of a node in a flow
|
20905
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
|
20906
|
-
*/
|
20907
|
-
Source: string;
|
20908
|
-
/**
|
20909
|
-
* Name of a node in a flow
|
20910
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
|
20911
|
-
*/
|
20912
|
-
Target: string;
|
20913
|
-
/**
|
20914
|
-
* Connection type
|
20915
|
-
*/
|
20916
|
-
Type: BedrockFlowVersionFlowConnectionType;
|
20917
|
-
}[];
|
20918
|
-
/**
|
20919
|
-
* List of nodes in a flow
|
20920
|
-
* @maxLength `40`
|
20921
|
-
*/
|
20922
|
-
Nodes: {
|
20923
|
-
/**
|
20924
|
-
* Node configuration in a flow
|
20925
|
-
*/
|
20926
|
-
Configuration: BedrockFlowVersionFlowNodeConfiguration;
|
20927
|
-
/**
|
20928
|
-
* List of node inputs in a flow
|
20929
|
-
* @maxLength `5`
|
20930
|
-
*/
|
20931
|
-
Inputs: {
|
20932
|
-
/**
|
20933
|
-
* Expression for a node input in a flow
|
20934
|
-
* @minLength `1`
|
20935
|
-
* @maxLength `64`
|
20936
|
-
*/
|
20937
|
-
Expression: string;
|
20938
|
-
/**
|
20939
|
-
* Name of a node input in a flow
|
20940
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
|
20941
|
-
*/
|
20942
|
-
Name: string;
|
20943
|
-
/**
|
20944
|
-
* Type of input/output for a node in a flow
|
20945
|
-
*/
|
20946
|
-
Type: BedrockFlowVersionFlowNodeIODataType;
|
20947
|
-
}[];
|
20948
|
-
/**
|
20949
|
-
* Name of a node in a flow
|
20950
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
|
20951
|
-
*/
|
20952
|
-
Name: string;
|
20953
|
-
/**
|
20954
|
-
* List of node outputs in a flow
|
20955
|
-
* @maxLength `5`
|
20956
|
-
*/
|
20957
|
-
Outputs: {
|
20958
|
-
/**
|
20959
|
-
* Name of a node output in a flow
|
20960
|
-
* @pattern `^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$`
|
20961
|
-
*/
|
20962
|
-
Name: string;
|
20963
|
-
/**
|
20964
|
-
* Type of input/output for a node in a flow
|
20965
|
-
*/
|
20966
|
-
Type: BedrockFlowVersionFlowNodeIODataType;
|
20967
|
-
}[];
|
20968
|
-
/**
|
20969
|
-
* Flow node types
|
20970
|
-
*/
|
20971
|
-
Type: BedrockFlowVersionFlowNodeType;
|
20972
|
-
}[];
|
20973
|
-
};
|
21097
|
+
Definition: BedrockFlowVersionFlowDefinition;
|
20974
21098
|
/**
|
20975
21099
|
* ARN of a IAM role
|
20976
21100
|
* @maxLength `2048`
|
@@ -20997,6 +21121,11 @@ export type BedrockFlowVersionAttributes = {
|
|
20997
21121
|
*/
|
20998
21122
|
Version: string;
|
20999
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>;
|
21000
21129
|
/**
|
21001
21130
|
* Type definition for `AWS::Bedrock::FlowVersion.AgentFlowNodeConfiguration`.
|
21002
21131
|
* Agent flow node configuration
|
@@ -21029,6 +21158,19 @@ export type BedrockFlowVersionConditionFlowNodeConfiguration = {
|
|
21029
21158
|
*/
|
21030
21159
|
Conditions: BedrockFlowVersionFlowCondition[];
|
21031
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
|
+
};
|
21032
21174
|
/**
|
21033
21175
|
* Type definition for `AWS::Bedrock::FlowVersion.FlowCondition`.
|
21034
21176
|
* Condition branch for a condition node
|
@@ -21245,6 +21387,21 @@ export type BedrockFlowVersionFlowNodeConfiguration = {
|
|
21245
21387
|
* Inline code config strucuture, contains code configs
|
21246
21388
|
*/
|
21247
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;
|
21248
21405
|
};
|
21249
21406
|
/**
|
21250
21407
|
* Type definition for `AWS::Bedrock::FlowVersion.FlowNodeInput`.
|
@@ -21295,7 +21452,7 @@ export type BedrockFlowVersionFlowNodeOutput = {
|
|
21295
21452
|
* Flow node types
|
21296
21453
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flownodetype.html}
|
21297
21454
|
*/
|
21298
|
-
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";
|
21299
21456
|
/**
|
21300
21457
|
* Type definition for `AWS::Bedrock::FlowVersion.FlowStatus`.
|
21301
21458
|
* Schema Type for Flow APIs
|
@@ -21358,6 +21515,7 @@ export type BedrockFlowVersionKnowledgeBaseFlowNodeConfiguration = {
|
|
21358
21515
|
* Configuration for a guardrail
|
21359
21516
|
*/
|
21360
21517
|
GuardrailConfiguration?: BedrockFlowVersionGuardrailConfiguration;
|
21518
|
+
InferenceConfiguration?: BedrockFlowVersionPromptInferenceConfiguration;
|
21361
21519
|
/**
|
21362
21520
|
* Identifier of the KnowledgeBase
|
21363
21521
|
* @maxLength `10`
|
@@ -21371,6 +21529,36 @@ export type BedrockFlowVersionKnowledgeBaseFlowNodeConfiguration = {
|
|
21371
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})?$`
|
21372
21530
|
*/
|
21373
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;
|
21374
21562
|
};
|
21375
21563
|
/**
|
21376
21564
|
* Type definition for `AWS::Bedrock::FlowVersion.LambdaFunctionFlowNodeConfiguration`.
|
@@ -21404,12 +21592,76 @@ export type BedrockFlowVersionLexFlowNodeConfiguration = {
|
|
21404
21592
|
*/
|
21405
21593
|
LocaleId: string;
|
21406
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
|
+
};
|
21407
21643
|
/**
|
21408
21644
|
* Type definition for `AWS::Bedrock::FlowVersion.OutputFlowNodeConfiguration`.
|
21409
21645
|
* Output flow node configuration
|
21410
21646
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-outputflownodeconfiguration.html}
|
21411
21647
|
*/
|
21412
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";
|
21413
21665
|
/**
|
21414
21666
|
* Type definition for `AWS::Bedrock::FlowVersion.PromptFlowNodeConfiguration`.
|
21415
21667
|
* Prompt flow node configuration
|
@@ -21542,6 +21794,32 @@ export type BedrockFlowVersionPromptTemplateConfiguration = {
|
|
21542
21794
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-prompttemplatetype.html}
|
21543
21795
|
*/
|
21544
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
|
+
};
|
21545
21823
|
/**
|
21546
21824
|
* Type definition for `AWS::Bedrock::FlowVersion.RetrievalFlowNodeConfiguration`.
|
21547
21825
|
* Retrieval flow node configuration
|
@@ -21627,6 +21905,51 @@ export type BedrockFlowVersionTextPromptTemplateConfiguration = {
|
|
21627
21905
|
*/
|
21628
21906
|
Text: string;
|
21629
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";
|
21630
21953
|
/**
|
21631
21954
|
* Definition of AWS::Bedrock::Guardrail Resource Type
|
21632
21955
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrail.html}
|
@@ -48358,6 +48681,10 @@ export type DeadlineFleetMemoryMiBRange = {
|
|
48358
48681
|
export type DeadlineFleetServiceManagedEc2FleetConfiguration = {
|
48359
48682
|
InstanceCapabilities: DeadlineFleetServiceManagedEc2InstanceCapabilities;
|
48360
48683
|
InstanceMarketOptions: DeadlineFleetServiceManagedEc2InstanceMarketOptions;
|
48684
|
+
/**
|
48685
|
+
* @pattern `^sp-[0-9a-f]{32}$`
|
48686
|
+
*/
|
48687
|
+
StorageProfileId?: string;
|
48361
48688
|
};
|
48362
48689
|
/**
|
48363
48690
|
* Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2InstanceCapabilities`.
|
@@ -52326,6 +52653,16 @@ export type EC2EC2FleetBaselineEbsBandwidthMbpsRequest = {
|
|
52326
52653
|
export type EC2EC2FleetBaselinePerformanceFactorsRequest = {
|
52327
52654
|
Cpu?: EC2EC2FleetCpuPerformanceFactorRequest;
|
52328
52655
|
};
|
52656
|
+
/**
|
52657
|
+
* Type definition for `AWS::EC2::EC2Fleet.BlockDeviceMapping`.
|
52658
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-blockdevicemapping.html}
|
52659
|
+
*/
|
52660
|
+
export type EC2EC2FleetBlockDeviceMapping = {
|
52661
|
+
DeviceName?: string;
|
52662
|
+
Ebs?: EC2EC2FleetEbsBlockDevice;
|
52663
|
+
NoDevice?: string;
|
52664
|
+
VirtualName?: string;
|
52665
|
+
};
|
52329
52666
|
/**
|
52330
52667
|
* Type definition for `AWS::EC2::EC2Fleet.CapacityRebalance`.
|
52331
52668
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityrebalance.html}
|
@@ -52348,6 +52685,19 @@ export type EC2EC2FleetCapacityReservationOptionsRequest = {
|
|
52348
52685
|
export type EC2EC2FleetCpuPerformanceFactorRequest = {
|
52349
52686
|
References?: EC2EC2FleetPerformanceFactorReferenceRequest[];
|
52350
52687
|
};
|
52688
|
+
/**
|
52689
|
+
* Type definition for `AWS::EC2::EC2Fleet.EbsBlockDevice`.
|
52690
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ebsblockdevice.html}
|
52691
|
+
*/
|
52692
|
+
export type EC2EC2FleetEbsBlockDevice = {
|
52693
|
+
DeleteOnTermination?: boolean;
|
52694
|
+
Encrypted?: boolean;
|
52695
|
+
Iops?: number;
|
52696
|
+
KmsKeyId?: string;
|
52697
|
+
SnapshotId?: string;
|
52698
|
+
VolumeSize?: number;
|
52699
|
+
VolumeType?: "gp2" | "gp3" | "io1" | "io2" | "sc1" | "st1" | "standard";
|
52700
|
+
};
|
52351
52701
|
/**
|
52352
52702
|
* Type definition for `AWS::EC2::EC2Fleet.FleetLaunchTemplateConfigRequest`.
|
52353
52703
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateconfigrequest.html}
|
@@ -52362,6 +52712,7 @@ export type EC2EC2FleetFleetLaunchTemplateConfigRequest = {
|
|
52362
52712
|
*/
|
52363
52713
|
export type EC2EC2FleetFleetLaunchTemplateOverridesRequest = {
|
52364
52714
|
AvailabilityZone?: string;
|
52715
|
+
BlockDeviceMappings?: EC2EC2FleetBlockDeviceMapping[];
|
52365
52716
|
InstanceRequirements?: EC2EC2FleetInstanceRequirementsRequest;
|
52366
52717
|
InstanceType?: string;
|
52367
52718
|
MaxPrice?: string;
|
@@ -71646,6 +71997,232 @@ export type EvidentlySegmentTag = {
|
|
71646
71997
|
*/
|
71647
71998
|
Value: string;
|
71648
71999
|
};
|
72000
|
+
/**
|
72001
|
+
* Resource type definition for `AWS::EVS::Environment`.
|
72002
|
+
* An environment created within the EVS service
|
72003
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
|
72004
|
+
*/
|
72005
|
+
export type EVSEnvironmentProps = {
|
72006
|
+
ConnectivityInfo: {
|
72007
|
+
/**
|
72008
|
+
* @minLength `2`
|
72009
|
+
* @maxLength `2`
|
72010
|
+
*/
|
72011
|
+
PrivateRouteServerPeerings: string[];
|
72012
|
+
};
|
72013
|
+
/**
|
72014
|
+
* The name of an EVS environment
|
72015
|
+
* @pattern `^[a-zA-Z0-9_-]{1,100}$`
|
72016
|
+
*/
|
72017
|
+
EnvironmentName?: string;
|
72018
|
+
/**
|
72019
|
+
* The initial hosts for environment only required upon creation. Modification after creation will have no effect
|
72020
|
+
* @minLength `4`
|
72021
|
+
* @maxLength `4`
|
72022
|
+
*/
|
72023
|
+
Hosts?: EVSEnvironmentHostInfoForCreate[];
|
72024
|
+
/**
|
72025
|
+
* The initial Vlan configuration only required upon creation. Modification after creation will have no effect
|
72026
|
+
*/
|
72027
|
+
InitialVlans?: {
|
72028
|
+
EdgeVTep: EVSEnvironmentInitialVlanInfo;
|
72029
|
+
ExpansionVlan1: EVSEnvironmentInitialVlanInfo;
|
72030
|
+
ExpansionVlan2: EVSEnvironmentInitialVlanInfo;
|
72031
|
+
Hcx: EVSEnvironmentInitialVlanInfo;
|
72032
|
+
NsxUpLink: EVSEnvironmentInitialVlanInfo;
|
72033
|
+
VMotion: EVSEnvironmentInitialVlanInfo;
|
72034
|
+
VSan: EVSEnvironmentInitialVlanInfo;
|
72035
|
+
VTep: EVSEnvironmentInitialVlanInfo;
|
72036
|
+
VmManagement: EVSEnvironmentInitialVlanInfo;
|
72037
|
+
VmkManagement: EVSEnvironmentInitialVlanInfo;
|
72038
|
+
};
|
72039
|
+
KmsKeyId?: string;
|
72040
|
+
/**
|
72041
|
+
* The license information for an EVS environment
|
72042
|
+
*/
|
72043
|
+
LicenseInfo: {
|
72044
|
+
/**
|
72045
|
+
* @pattern `^[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}$`
|
72046
|
+
*/
|
72047
|
+
SolutionKey: string;
|
72048
|
+
/**
|
72049
|
+
* @pattern `^[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}$`
|
72050
|
+
*/
|
72051
|
+
VsanKey: string;
|
72052
|
+
};
|
72053
|
+
ServiceAccessSecurityGroups?: {
|
72054
|
+
SecurityGroups?: string[];
|
72055
|
+
};
|
72056
|
+
/**
|
72057
|
+
* @minLength `15`
|
72058
|
+
* @maxLength `24`
|
72059
|
+
* @pattern `^subnet-[a-f0-9]{8}([a-f0-9]{9})?$`
|
72060
|
+
*/
|
72061
|
+
ServiceAccessSubnetId: string;
|
72062
|
+
SiteId: string;
|
72063
|
+
/**
|
72064
|
+
* An array of key-value pairs to apply to this resource.
|
72065
|
+
*/
|
72066
|
+
Tags?: EVSEnvironmentTag[];
|
72067
|
+
TermsAccepted: boolean;
|
72068
|
+
VcfHostnames: {
|
72069
|
+
/**
|
72070
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72071
|
+
*/
|
72072
|
+
CloudBuilder: string;
|
72073
|
+
/**
|
72074
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72075
|
+
*/
|
72076
|
+
Nsx: string;
|
72077
|
+
/**
|
72078
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72079
|
+
*/
|
72080
|
+
NsxEdge1: string;
|
72081
|
+
/**
|
72082
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72083
|
+
*/
|
72084
|
+
NsxEdge2: string;
|
72085
|
+
/**
|
72086
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72087
|
+
*/
|
72088
|
+
NsxManager1: string;
|
72089
|
+
/**
|
72090
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72091
|
+
*/
|
72092
|
+
NsxManager2: string;
|
72093
|
+
/**
|
72094
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72095
|
+
*/
|
72096
|
+
NsxManager3: string;
|
72097
|
+
/**
|
72098
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72099
|
+
*/
|
72100
|
+
SddcManager: string;
|
72101
|
+
/**
|
72102
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72103
|
+
*/
|
72104
|
+
VCenter: string;
|
72105
|
+
};
|
72106
|
+
VcfVersion: "VCF-5.2.1";
|
72107
|
+
/**
|
72108
|
+
* @minLength `12`
|
72109
|
+
* @maxLength `21`
|
72110
|
+
* @pattern `^vpc-[a-f0-9]{8}([a-f0-9]{9})?$`
|
72111
|
+
*/
|
72112
|
+
VpcId: string;
|
72113
|
+
};
|
72114
|
+
/**
|
72115
|
+
* Attribute type definition for `AWS::EVS::Environment`.
|
72116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#aws-resource-evs-environment-return-values}
|
72117
|
+
*/
|
72118
|
+
export type EVSEnvironmentAttributes = {
|
72119
|
+
Checks: {
|
72120
|
+
ImpairedSince: string;
|
72121
|
+
Result: EVSEnvironmentCheckResult;
|
72122
|
+
Type: "KEY_REUSE" | "KEY_COVERAGE" | "REACHABILITY" | "VCF_VERSION" | "HOST_COUNT";
|
72123
|
+
}[];
|
72124
|
+
CreatedAt: string;
|
72125
|
+
Credentials: {
|
72126
|
+
SecretArn: string;
|
72127
|
+
}[];
|
72128
|
+
/**
|
72129
|
+
* @minLength `1`
|
72130
|
+
* @maxLength `1011`
|
72131
|
+
* @pattern `^arn:aws:evs:[a-z]{2}-[a-z]+-[0-9]:[0-9]{12}:environment/[a-zA-Z0-9_-]+$`
|
72132
|
+
*/
|
72133
|
+
EnvironmentArn: string;
|
72134
|
+
/**
|
72135
|
+
* @pattern `^(env-[a-zA-Z0-9]{10})$`
|
72136
|
+
*/
|
72137
|
+
EnvironmentId: string;
|
72138
|
+
EnvironmentState: EVSEnvironmentEnvironmentState;
|
72139
|
+
ModifiedAt: string;
|
72140
|
+
StateDetails: string;
|
72141
|
+
};
|
72142
|
+
/**
|
72143
|
+
* Type definition for `AWS::EVS::Environment.Check`.
|
72144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-check.html}
|
72145
|
+
*/
|
72146
|
+
export type EVSEnvironmentCheck = {
|
72147
|
+
ImpairedSince?: string;
|
72148
|
+
Result: EVSEnvironmentCheckResult;
|
72149
|
+
Type: "KEY_REUSE" | "KEY_COVERAGE" | "REACHABILITY" | "VCF_VERSION" | "HOST_COUNT";
|
72150
|
+
};
|
72151
|
+
/**
|
72152
|
+
* Type definition for `AWS::EVS::Environment.CheckResult`.
|
72153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-checkresult.html}
|
72154
|
+
*/
|
72155
|
+
export type EVSEnvironmentCheckResult = "PASSED" | "FAILED" | "UNKNOWN";
|
72156
|
+
/**
|
72157
|
+
* Type definition for `AWS::EVS::Environment.EnvironmentState`.
|
72158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-environmentstate.html}
|
72159
|
+
*/
|
72160
|
+
export type EVSEnvironmentEnvironmentState = "CREATING" | "CREATED" | "DELETING" | "DELETED" | "CREATE_FAILED";
|
72161
|
+
/**
|
72162
|
+
* Type definition for `AWS::EVS::Environment.HostInfoForCreate`.
|
72163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-hostinfoforcreate.html}
|
72164
|
+
*/
|
72165
|
+
export type EVSEnvironmentHostInfoForCreate = {
|
72166
|
+
/**
|
72167
|
+
* @minLength `1`
|
72168
|
+
* @maxLength `25`
|
72169
|
+
* @pattern `^h-[a-f0-9]{8}([a-f0-9]{9})?$`
|
72170
|
+
*/
|
72171
|
+
DedicatedHostId?: string;
|
72172
|
+
/**
|
72173
|
+
* @pattern `^([a-zA-Z0-9\-]*)$`
|
72174
|
+
*/
|
72175
|
+
HostName: string;
|
72176
|
+
InstanceType: "i4i.metal";
|
72177
|
+
/**
|
72178
|
+
* @minLength `1`
|
72179
|
+
* @maxLength `255`
|
72180
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
72181
|
+
*/
|
72182
|
+
KeyName: string;
|
72183
|
+
/**
|
72184
|
+
* @minLength `1`
|
72185
|
+
* @maxLength `25`
|
72186
|
+
* @pattern `^pg-[a-f0-9]{8}([a-f0-9]{9})?$`
|
72187
|
+
*/
|
72188
|
+
PlacementGroupId?: string;
|
72189
|
+
};
|
72190
|
+
/**
|
72191
|
+
* Type definition for `AWS::EVS::Environment.InitialVlanInfo`.
|
72192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-initialvlaninfo.html}
|
72193
|
+
*/
|
72194
|
+
export type EVSEnvironmentInitialVlanInfo = {
|
72195
|
+
/**
|
72196
|
+
* @pattern `^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(3[0-2]|[1-2][0-9]|[0-9])$`
|
72197
|
+
*/
|
72198
|
+
Cidr: string;
|
72199
|
+
};
|
72200
|
+
/**
|
72201
|
+
* Type definition for `AWS::EVS::Environment.Secret`.
|
72202
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-secret.html}
|
72203
|
+
*/
|
72204
|
+
export type EVSEnvironmentSecret = {
|
72205
|
+
SecretArn?: string;
|
72206
|
+
};
|
72207
|
+
/**
|
72208
|
+
* Type definition for `AWS::EVS::Environment.Tag`.
|
72209
|
+
* A key-value pair to associate with a resource.
|
72210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-tag.html}
|
72211
|
+
*/
|
72212
|
+
export type EVSEnvironmentTag = {
|
72213
|
+
/**
|
72214
|
+
* 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 -.
|
72215
|
+
* @minLength `1`
|
72216
|
+
* @maxLength `128`
|
72217
|
+
*/
|
72218
|
+
Key: string;
|
72219
|
+
/**
|
72220
|
+
* 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 -.
|
72221
|
+
* @minLength `0`
|
72222
|
+
* @maxLength `256`
|
72223
|
+
*/
|
72224
|
+
Value: string;
|
72225
|
+
};
|
71649
72226
|
/**
|
71650
72227
|
* Resource type definition for `AWS::FinSpace::Environment`.
|
71651
72228
|
* An example resource schema demonstrating some basic constructs and validation rules.
|
@@ -101224,7 +101801,7 @@ export type LexBotAttributes = {
|
|
101224
101801
|
/**
|
101225
101802
|
* @minLength `1`
|
101226
101803
|
* @maxLength `1011`
|
101227
|
-
* @pattern `^arn:aws[a-zA-Z-]*:lex:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:bot/[0-9a-zA-Z]+$`
|
101804
|
+
* @pattern `^arn:aws[a-zA-Z-]*:lex:[a-z]+-(?:[a-z]+-)*[0-9]:[0-9]{12}:bot/[0-9a-zA-Z]+$`
|
101228
101805
|
*/
|
101229
101806
|
Arn: string;
|
101230
101807
|
/**
|
@@ -101870,7 +102447,7 @@ export type LexBotKendraConfiguration = {
|
|
101870
102447
|
/**
|
101871
102448
|
* @minLength `32`
|
101872
102449
|
* @maxLength `2048`
|
101873
|
-
* @pattern `^arn:aws[a-zA-Z-]*:kendra:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:index/[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
102450
|
+
* @pattern `^arn:aws[a-zA-Z-]*:kendra:[a-z]+-(?:[a-z]+-)*[0-9]:[0-9]{12}:index/[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
101874
102451
|
*/
|
101875
102452
|
KendraIndex: string;
|
101876
102453
|
/**
|
@@ -117883,6 +118460,87 @@ export type NetworkFirewallTLSInspectionConfigurationTLSInspectionConfiguration
|
|
117883
118460
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-tlsinspectionconfiguration-unknownstatusaction.html}
|
117884
118461
|
*/
|
117885
118462
|
export type NetworkFirewallTLSInspectionConfigurationUnknownStatusAction = "PASS" | "DROP" | "REJECT";
|
118463
|
+
/**
|
118464
|
+
* Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
|
118465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
|
118466
|
+
*/
|
118467
|
+
export type NetworkFirewallVpcEndpointAssociationProps = {
|
118468
|
+
/**
|
118469
|
+
* @maxLength `512`
|
118470
|
+
* @pattern `^.*$`
|
118471
|
+
*/
|
118472
|
+
Description?: string;
|
118473
|
+
/**
|
118474
|
+
* A resource ARN.
|
118475
|
+
* @minLength `1`
|
118476
|
+
* @maxLength `256`
|
118477
|
+
* @pattern `^(arn:aws.*)$`
|
118478
|
+
*/
|
118479
|
+
FirewallArn: string;
|
118480
|
+
SubnetMapping: NetworkFirewallVpcEndpointAssociationSubnetMapping;
|
118481
|
+
Tags?: NetworkFirewallVpcEndpointAssociationTag[];
|
118482
|
+
/**
|
118483
|
+
* @minLength `1`
|
118484
|
+
* @maxLength `128`
|
118485
|
+
* @pattern `^vpc-[0-9a-f]+$`
|
118486
|
+
*/
|
118487
|
+
VpcId: string;
|
118488
|
+
};
|
118489
|
+
/**
|
118490
|
+
* Attribute type definition for `AWS::NetworkFirewall::VpcEndpointAssociation`.
|
118491
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#aws-resource-networkfirewall-vpcendpointassociation-return-values}
|
118492
|
+
*/
|
118493
|
+
export type NetworkFirewallVpcEndpointAssociationAttributes = {
|
118494
|
+
/**
|
118495
|
+
* An endpoint Id.
|
118496
|
+
*/
|
118497
|
+
EndpointId: string;
|
118498
|
+
/**
|
118499
|
+
* A resource ARN.
|
118500
|
+
* @minLength `1`
|
118501
|
+
* @maxLength `256`
|
118502
|
+
* @pattern `^(arn:aws.*)$`
|
118503
|
+
*/
|
118504
|
+
VpcEndpointAssociationArn: string;
|
118505
|
+
/**
|
118506
|
+
* @minLength `36`
|
118507
|
+
* @maxLength `36`
|
118508
|
+
* @pattern `^([0-9a-f]{8})-([0-9a-f]{4}-){3}([0-9a-f]{12})$`
|
118509
|
+
*/
|
118510
|
+
VpcEndpointAssociationId: string;
|
118511
|
+
};
|
118512
|
+
/**
|
118513
|
+
* Type definition for `AWS::NetworkFirewall::VpcEndpointAssociation.SubnetMapping`.
|
118514
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-subnetmapping.html}
|
118515
|
+
*/
|
118516
|
+
export type NetworkFirewallVpcEndpointAssociationSubnetMapping = {
|
118517
|
+
/**
|
118518
|
+
* A IPAddressType
|
118519
|
+
*/
|
118520
|
+
IPAddressType?: string;
|
118521
|
+
/**
|
118522
|
+
* A SubnetId.
|
118523
|
+
*/
|
118524
|
+
SubnetId: string;
|
118525
|
+
};
|
118526
|
+
/**
|
118527
|
+
* Type definition for `AWS::NetworkFirewall::VpcEndpointAssociation.Tag`.
|
118528
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-tag.html}
|
118529
|
+
*/
|
118530
|
+
export type NetworkFirewallVpcEndpointAssociationTag = {
|
118531
|
+
/**
|
118532
|
+
* @minLength `1`
|
118533
|
+
* @maxLength `128`
|
118534
|
+
* @pattern `^.*$`
|
118535
|
+
*/
|
118536
|
+
Key: string;
|
118537
|
+
/**
|
118538
|
+
* @minLength `0`
|
118539
|
+
* @maxLength `255`
|
118540
|
+
* @pattern `^.*$`
|
118541
|
+
*/
|
118542
|
+
Value: string;
|
118543
|
+
};
|
117886
118544
|
/**
|
117887
118545
|
* AWS::NetworkManager::ConnectAttachment Resource Type Definition
|
117888
118546
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html}
|
@@ -191986,6 +192644,7 @@ export type WAFv2WebACLProps = {
|
|
191986
192644
|
* @pattern `^[0-9A-Za-z_-]{1,128}$`
|
191987
192645
|
*/
|
191988
192646
|
Name?: string;
|
192647
|
+
OnSourceDDoSProtectionConfig?: any;
|
191989
192648
|
/**
|
191990
192649
|
* Collection of Rules.
|
191991
192650
|
*/
|
@@ -197315,6 +197974,7 @@ export interface ResourceTypes {
|
|
197315
197974
|
"AWS::Evidently::Launch": EvidentlyLaunchProps;
|
197316
197975
|
"AWS::Evidently::Project": EvidentlyProjectProps;
|
197317
197976
|
"AWS::Evidently::Segment": EvidentlySegmentProps;
|
197977
|
+
"AWS::EVS::Environment": EVSEnvironmentProps;
|
197318
197978
|
"AWS::FinSpace::Environment": FinSpaceEnvironmentProps;
|
197319
197979
|
"AWS::FIS::ExperimentTemplate": FISExperimentTemplateProps;
|
197320
197980
|
"AWS::FIS::TargetAccountConfiguration": FISTargetAccountConfigurationProps;
|
@@ -197683,6 +198343,7 @@ export interface ResourceTypes {
|
|
197683
198343
|
"AWS::NetworkFirewall::LoggingConfiguration": NetworkFirewallLoggingConfigurationProps;
|
197684
198344
|
"AWS::NetworkFirewall::RuleGroup": NetworkFirewallRuleGroupProps;
|
197685
198345
|
"AWS::NetworkFirewall::TLSInspectionConfiguration": NetworkFirewallTLSInspectionConfigurationProps;
|
198346
|
+
"AWS::NetworkFirewall::VpcEndpointAssociation": NetworkFirewallVpcEndpointAssociationProps;
|
197686
198347
|
"AWS::NetworkManager::ConnectAttachment": NetworkManagerConnectAttachmentProps;
|
197687
198348
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerProps;
|
197688
198349
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
|
@@ -198650,6 +199311,7 @@ export interface AttributeTypes {
|
|
198650
199311
|
"AWS::Evidently::Launch": EvidentlyLaunchAttributes;
|
198651
199312
|
"AWS::Evidently::Project": EvidentlyProjectAttributes;
|
198652
199313
|
"AWS::Evidently::Segment": EvidentlySegmentAttributes;
|
199314
|
+
"AWS::EVS::Environment": EVSEnvironmentAttributes;
|
198653
199315
|
"AWS::FinSpace::Environment": FinSpaceEnvironmentAttributes;
|
198654
199316
|
"AWS::FIS::ExperimentTemplate": FISExperimentTemplateAttributes;
|
198655
199317
|
"AWS::FMS::Policy": FMSPolicyAttributes;
|
@@ -198978,6 +199640,7 @@ export interface AttributeTypes {
|
|
198978
199640
|
"AWS::NetworkFirewall::FirewallPolicy": NetworkFirewallFirewallPolicyAttributes;
|
198979
199641
|
"AWS::NetworkFirewall::RuleGroup": NetworkFirewallRuleGroupAttributes;
|
198980
199642
|
"AWS::NetworkFirewall::TLSInspectionConfiguration": NetworkFirewallTLSInspectionConfigurationAttributes;
|
199643
|
+
"AWS::NetworkFirewall::VpcEndpointAssociation": NetworkFirewallVpcEndpointAssociationAttributes;
|
198981
199644
|
"AWS::NetworkManager::ConnectAttachment": NetworkManagerConnectAttachmentAttributes;
|
198982
199645
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerAttributes;
|
198983
199646
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkAttributes;
|
@@ -199963,6 +200626,7 @@ export declare const ResourceType: {
|
|
199963
200626
|
readonly EvidentlyLaunch: "AWS::Evidently::Launch";
|
199964
200627
|
readonly EvidentlyProject: "AWS::Evidently::Project";
|
199965
200628
|
readonly EvidentlySegment: "AWS::Evidently::Segment";
|
200629
|
+
readonly EVSEnvironment: "AWS::EVS::Environment";
|
199966
200630
|
readonly FinSpaceEnvironment: "AWS::FinSpace::Environment";
|
199967
200631
|
readonly FISExperimentTemplate: "AWS::FIS::ExperimentTemplate";
|
199968
200632
|
readonly FISTargetAccountConfiguration: "AWS::FIS::TargetAccountConfiguration";
|
@@ -200331,6 +200995,7 @@ export declare const ResourceType: {
|
|
200331
200995
|
readonly NetworkFirewallLoggingConfiguration: "AWS::NetworkFirewall::LoggingConfiguration";
|
200332
200996
|
readonly NetworkFirewallRuleGroup: "AWS::NetworkFirewall::RuleGroup";
|
200333
200997
|
readonly NetworkFirewallTLSInspectionConfiguration: "AWS::NetworkFirewall::TLSInspectionConfiguration";
|
200998
|
+
readonly NetworkFirewallVpcEndpointAssociation: "AWS::NetworkFirewall::VpcEndpointAssociation";
|
200334
200999
|
readonly NetworkManagerConnectAttachment: "AWS::NetworkManager::ConnectAttachment";
|
200335
201000
|
readonly NetworkManagerConnectPeer: "AWS::NetworkManager::ConnectPeer";
|
200336
201001
|
readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
|