@pulumi/aws 7.1.0-alpha.1753111497 → 7.1.0-alpha.1753127185
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.
- package/amplify/app.d.ts +3 -3
- package/bedrock/agentFlow.d.ts +306 -0
- package/bedrock/agentFlow.js +195 -0
- package/bedrock/agentFlow.js.map +1 -0
- package/bedrock/getInferenceProfiles.d.ts +36 -2
- package/bedrock/getInferenceProfiles.js +26 -2
- package/bedrock/getInferenceProfiles.js.map +1 -1
- package/bedrock/index.d.ts +3 -0
- package/bedrock/index.js +6 -1
- package/bedrock/index.js.map +1 -1
- package/cfg/organizationCustomPolicyRule.d.ts +38 -38
- package/cloudfront/distribution.d.ts +44 -0
- package/cloudfront/distribution.js +44 -0
- package/cloudfront/distribution.js.map +1 -1
- package/cloudwatch/logMetricFilter.d.ts +12 -0
- package/cloudwatch/logMetricFilter.js +2 -0
- package/cloudwatch/logMetricFilter.js.map +1 -1
- package/datasync/locationObjectStorage.d.ts +2 -2
- package/datasync/locationObjectStorage.js +0 -3
- package/datasync/locationObjectStorage.js.map +1 -1
- package/datazone/environmentBlueprintConfiguration.d.ts +36 -3
- package/datazone/environmentBlueprintConfiguration.js +27 -0
- package/datazone/environmentBlueprintConfiguration.js.map +1 -1
- package/ecs/service.d.ts +12 -0
- package/ecs/service.js +2 -0
- package/ecs/service.js.map +1 -1
- package/fsx/index.d.ts +3 -0
- package/fsx/index.js +6 -1
- package/fsx/index.js.map +1 -1
- package/fsx/s3accessPointAttachment.d.ts +156 -0
- package/fsx/s3accessPointAttachment.js +99 -0
- package/fsx/s3accessPointAttachment.js.map +1 -0
- package/lakeformation/getResource.d.ts +12 -0
- package/lakeformation/getResource.js.map +1 -1
- package/lakeformation/resource.d.ts +15 -3
- package/lakeformation/resource.js +2 -0
- package/lakeformation/resource.js.map +1 -1
- package/lambda/function.d.ts +81 -0
- package/lambda/function.js +81 -0
- package/lambda/function.js.map +1 -1
- package/lambda/permission.d.ts +3 -3
- package/package.json +2 -2
- package/s3/bucketObjectv2.d.ts +3 -3
- package/s3/bucketPublicAccessBlock.d.ts +15 -7
- package/s3/bucketPublicAccessBlock.js +2 -4
- package/s3/bucketPublicAccessBlock.js.map +1 -1
- package/s3/getAccessPoint.d.ts +120 -0
- package/s3/getAccessPoint.js +54 -0
- package/s3/getAccessPoint.js.map +1 -0
- package/s3/index.d.ts +3 -0
- package/s3/index.js +5 -2
- package/s3/index.js.map +1 -1
- package/ssm/association.d.ts +2 -2
- package/ssm/association.js +2 -2
- package/synthetics/canary.d.ts +3 -3
- package/types/input.d.ts +633 -2
- package/types/input.js.map +1 -1
- package/types/output.d.ts +667 -12
- package/types/output.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -141,6 +141,10 @@ export declare namespace acm {
|
|
|
141
141
|
* Whether certificate details should be added to a certificate transparency log. Valid values are `ENABLED` or `DISABLED`. See https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency for more details.
|
|
142
142
|
*/
|
|
143
143
|
certificateTransparencyLoggingPreference?: string;
|
|
144
|
+
/**
|
|
145
|
+
* Whether the certificate can be exported. Valid values are `ENABLED` or `DISABLED` (default). **Note** Issuing an exportable certificate is subject to additional charges. See [AWS Certificate Manager pricing](https://aws.amazon.com/certificate-manager/pricing/) for more details.
|
|
146
|
+
*/
|
|
147
|
+
export: string;
|
|
144
148
|
}
|
|
145
149
|
interface CertificateRenewalSummary {
|
|
146
150
|
/**
|
|
@@ -11510,6 +11514,497 @@ export declare namespace bedrock {
|
|
|
11510
11514
|
*/
|
|
11511
11515
|
parsingPromptString: string;
|
|
11512
11516
|
}
|
|
11517
|
+
interface AgentFlowDefinition {
|
|
11518
|
+
/**
|
|
11519
|
+
* A list of connection definitions in the flow. See Connection for more information.
|
|
11520
|
+
*/
|
|
11521
|
+
connections?: outputs.bedrock.AgentFlowDefinitionConnection[];
|
|
11522
|
+
/**
|
|
11523
|
+
* A list of node definitions in the flow. See Node for more information.
|
|
11524
|
+
*/
|
|
11525
|
+
nodes?: outputs.bedrock.AgentFlowDefinitionNode[];
|
|
11526
|
+
}
|
|
11527
|
+
interface AgentFlowDefinitionConnection {
|
|
11528
|
+
/**
|
|
11529
|
+
* Configuration of the connection. See Connection Configuration for more information.
|
|
11530
|
+
*/
|
|
11531
|
+
configuration?: outputs.bedrock.AgentFlowDefinitionConnectionConfiguration;
|
|
11532
|
+
/**
|
|
11533
|
+
* A name for the connection that you can reference.
|
|
11534
|
+
*/
|
|
11535
|
+
name: string;
|
|
11536
|
+
/**
|
|
11537
|
+
* The node that the connection starts at.
|
|
11538
|
+
*/
|
|
11539
|
+
source: string;
|
|
11540
|
+
/**
|
|
11541
|
+
* The node that the connection ends at.
|
|
11542
|
+
*/
|
|
11543
|
+
target: string;
|
|
11544
|
+
/**
|
|
11545
|
+
* Whether the source node that the connection begins from is a condition node `Conditional` or not `Data`.
|
|
11546
|
+
*/
|
|
11547
|
+
type: string;
|
|
11548
|
+
}
|
|
11549
|
+
interface AgentFlowDefinitionConnectionConfiguration {
|
|
11550
|
+
/**
|
|
11551
|
+
* The configuration of a connection originating from a Condition node. See Conditional Connection Configuration for more information.
|
|
11552
|
+
*/
|
|
11553
|
+
conditional?: outputs.bedrock.AgentFlowDefinitionConnectionConfigurationConditional;
|
|
11554
|
+
/**
|
|
11555
|
+
* The configuration of a connection originating from a node that isn’t a Condition node. See Data Connection Configuration for more information.
|
|
11556
|
+
*/
|
|
11557
|
+
data?: outputs.bedrock.AgentFlowDefinitionConnectionConfigurationData;
|
|
11558
|
+
}
|
|
11559
|
+
interface AgentFlowDefinitionConnectionConfigurationConditional {
|
|
11560
|
+
condition: string;
|
|
11561
|
+
}
|
|
11562
|
+
interface AgentFlowDefinitionConnectionConfigurationData {
|
|
11563
|
+
/**
|
|
11564
|
+
* The name of the output in the source node that the connection begins from.
|
|
11565
|
+
*/
|
|
11566
|
+
sourceOutput: string;
|
|
11567
|
+
/**
|
|
11568
|
+
* The name of the input in the target node that the connection ends at.
|
|
11569
|
+
*/
|
|
11570
|
+
targetInput: string;
|
|
11571
|
+
}
|
|
11572
|
+
interface AgentFlowDefinitionNode {
|
|
11573
|
+
/**
|
|
11574
|
+
* Contains configurations for the node. See Node Configuration for more information.
|
|
11575
|
+
*/
|
|
11576
|
+
configuration?: outputs.bedrock.AgentFlowDefinitionNodeConfiguration;
|
|
11577
|
+
/**
|
|
11578
|
+
* A list of objects containing information about an input into the node. See Node Input for more information.
|
|
11579
|
+
*/
|
|
11580
|
+
inputs?: outputs.bedrock.AgentFlowDefinitionNodeInput[];
|
|
11581
|
+
/**
|
|
11582
|
+
* A name for the node.
|
|
11583
|
+
*/
|
|
11584
|
+
name: string;
|
|
11585
|
+
/**
|
|
11586
|
+
* A list of objects containing information about an output from the node. See Node Output for more information.
|
|
11587
|
+
*/
|
|
11588
|
+
outputs?: outputs.bedrock.AgentFlowDefinitionNodeOutput[];
|
|
11589
|
+
/**
|
|
11590
|
+
* The type of node. This value must match the name of the key that you provide in the configuration. Valid values: `Agent`, `Collector`, `Condition`, `Input`, `Iterator`, `KnowledgeBase`, `LambdaFunction`, `Lex`, `Output`, `Prompt`, `Retrieval`, `Storage`
|
|
11591
|
+
*/
|
|
11592
|
+
type: string;
|
|
11593
|
+
}
|
|
11594
|
+
interface AgentFlowDefinitionNodeConfiguration {
|
|
11595
|
+
/**
|
|
11596
|
+
* Contains configurations for an agent node in your flow. Invokes an alias of an agent and returns the response. See Agent Node Configuration for more information.
|
|
11597
|
+
*/
|
|
11598
|
+
agent?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationAgent;
|
|
11599
|
+
/**
|
|
11600
|
+
* Contains configurations for a collector node in your flow. Collects an iteration of inputs and consolidates them into an array of outputs. This object has no fields.
|
|
11601
|
+
*/
|
|
11602
|
+
collector?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationCollector;
|
|
11603
|
+
condition?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationCondition;
|
|
11604
|
+
/**
|
|
11605
|
+
* Contains configurations for an inline code node in your flow. See Inline Code Node Configuration for more information.
|
|
11606
|
+
*/
|
|
11607
|
+
inlineCode?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationInlineCode;
|
|
11608
|
+
input?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationInput;
|
|
11609
|
+
/**
|
|
11610
|
+
* Contains configurations for an iterator node in your flow. Takes an input that is an array and iteratively sends each item of the array as an output to the following node. The size of the array is also returned in the output. The output flow node at the end of the flow iteration will return a response for each member of the array. To return only one response, you can include a collector node downstream from the iterator node. This object has no fields.
|
|
11611
|
+
*/
|
|
11612
|
+
iterator?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationIterator;
|
|
11613
|
+
/**
|
|
11614
|
+
* Contains configurations for a knowledge base node in your flow. Queries a knowledge base and returns the retrieved results or generated response. See Knowledge Base Node Configuration for more information.
|
|
11615
|
+
*/
|
|
11616
|
+
knowledgeBase?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBase;
|
|
11617
|
+
/**
|
|
11618
|
+
* Contains configurations for a Lambda function node in your flow. Invokes a Lambda function. See Lambda Function Node Configuration for more information.
|
|
11619
|
+
*/
|
|
11620
|
+
lambdaFunction?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationLambdaFunction;
|
|
11621
|
+
/**
|
|
11622
|
+
* Contains configurations for a Lex node in your flow. Invokes an Amazon Lex bot to identify the intent of the input and return the intent as the output. See Lex Node Configuration for more information.
|
|
11623
|
+
*/
|
|
11624
|
+
lex?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationLex;
|
|
11625
|
+
output?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationOutput;
|
|
11626
|
+
/**
|
|
11627
|
+
* Contains configurations for a prompt node in your flow. Runs a prompt and generates the model response as the output. You can use a prompt from Prompt management or you can configure one in this node. See Prompt Node Configuration for more information.
|
|
11628
|
+
*/
|
|
11629
|
+
prompt?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPrompt;
|
|
11630
|
+
/**
|
|
11631
|
+
* Contains configurations for a Retrieval node in your flow. Retrieves data from an Amazon S3 location and returns it as the output. See Retrieval Node Configuration for more information.
|
|
11632
|
+
*/
|
|
11633
|
+
retrieval?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrieval;
|
|
11634
|
+
/**
|
|
11635
|
+
* Contains configurations for a Storage node in your flow. Stores an input in an Amazon S3 location. See Storage Node Configuration for more information.
|
|
11636
|
+
*/
|
|
11637
|
+
storage?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationStorage;
|
|
11638
|
+
}
|
|
11639
|
+
interface AgentFlowDefinitionNodeConfigurationAgent {
|
|
11640
|
+
/**
|
|
11641
|
+
* The Amazon Resource Name (ARN) of the alias of the agent to invoke.
|
|
11642
|
+
*/
|
|
11643
|
+
agentAliasArn: string;
|
|
11644
|
+
}
|
|
11645
|
+
interface AgentFlowDefinitionNodeConfigurationCollector {
|
|
11646
|
+
}
|
|
11647
|
+
interface AgentFlowDefinitionNodeConfigurationCondition {
|
|
11648
|
+
conditions: outputs.bedrock.AgentFlowDefinitionNodeConfigurationConditionCondition[];
|
|
11649
|
+
}
|
|
11650
|
+
interface AgentFlowDefinitionNodeConfigurationConditionCondition {
|
|
11651
|
+
expression?: string;
|
|
11652
|
+
/**
|
|
11653
|
+
* A name for the flow.
|
|
11654
|
+
*/
|
|
11655
|
+
name: string;
|
|
11656
|
+
}
|
|
11657
|
+
interface AgentFlowDefinitionNodeConfigurationInlineCode {
|
|
11658
|
+
/**
|
|
11659
|
+
* The code that's executed in your inline code node.
|
|
11660
|
+
*/
|
|
11661
|
+
code: string;
|
|
11662
|
+
/**
|
|
11663
|
+
* The programming language used by your inline code node.
|
|
11664
|
+
*/
|
|
11665
|
+
language: string;
|
|
11666
|
+
}
|
|
11667
|
+
interface AgentFlowDefinitionNodeConfigurationInput {
|
|
11668
|
+
}
|
|
11669
|
+
interface AgentFlowDefinitionNodeConfigurationIterator {
|
|
11670
|
+
}
|
|
11671
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBase {
|
|
11672
|
+
/**
|
|
11673
|
+
* Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration. See Guardrail Configuration for more information.
|
|
11674
|
+
*/
|
|
11675
|
+
guardrailConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseGuardrailConfiguration;
|
|
11676
|
+
/**
|
|
11677
|
+
* Contains inference configurations for the prompt. See Prompt Inference Configuration for more information.
|
|
11678
|
+
*/
|
|
11679
|
+
inferenceConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfiguration;
|
|
11680
|
+
/**
|
|
11681
|
+
* The unique identifier of the knowledge base to query.
|
|
11682
|
+
*/
|
|
11683
|
+
knowledgeBaseId: string;
|
|
11684
|
+
modelId: string;
|
|
11685
|
+
numberOfResults?: number;
|
|
11686
|
+
}
|
|
11687
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseGuardrailConfiguration {
|
|
11688
|
+
/**
|
|
11689
|
+
* The unique identifier of the guardrail.
|
|
11690
|
+
*/
|
|
11691
|
+
guardrailIdentifier: string;
|
|
11692
|
+
/**
|
|
11693
|
+
* The version of the guardrail.
|
|
11694
|
+
*/
|
|
11695
|
+
guardrailVersion: string;
|
|
11696
|
+
}
|
|
11697
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfiguration {
|
|
11698
|
+
text?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfigurationText;
|
|
11699
|
+
}
|
|
11700
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfigurationText {
|
|
11701
|
+
/**
|
|
11702
|
+
* Maximum number of tokens to return in the response.
|
|
11703
|
+
*/
|
|
11704
|
+
maxTokens?: number;
|
|
11705
|
+
/**
|
|
11706
|
+
* List of strings that define sequences after which the model will stop generating.
|
|
11707
|
+
*/
|
|
11708
|
+
stopSequences?: string[];
|
|
11709
|
+
/**
|
|
11710
|
+
* Controls the randomness of the response. Choose a lower value for more predictable outputs and a higher value for more surprising outputs.
|
|
11711
|
+
*/
|
|
11712
|
+
temperature?: number;
|
|
11713
|
+
/**
|
|
11714
|
+
* Percentage of most-likely candidates that the model considers for the next token.
|
|
11715
|
+
*/
|
|
11716
|
+
topP?: number;
|
|
11717
|
+
}
|
|
11718
|
+
interface AgentFlowDefinitionNodeConfigurationLambdaFunction {
|
|
11719
|
+
/**
|
|
11720
|
+
* The Amazon Resource Name (ARN) of the Lambda function to invoke.
|
|
11721
|
+
*/
|
|
11722
|
+
lambdaArn: string;
|
|
11723
|
+
}
|
|
11724
|
+
interface AgentFlowDefinitionNodeConfigurationLex {
|
|
11725
|
+
/**
|
|
11726
|
+
* The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
|
|
11727
|
+
*/
|
|
11728
|
+
botAliasArn: string;
|
|
11729
|
+
/**
|
|
11730
|
+
* The Region to invoke the Amazon Lex bot in
|
|
11731
|
+
*/
|
|
11732
|
+
localeId: string;
|
|
11733
|
+
}
|
|
11734
|
+
interface AgentFlowDefinitionNodeConfigurationOutput {
|
|
11735
|
+
}
|
|
11736
|
+
interface AgentFlowDefinitionNodeConfigurationPrompt {
|
|
11737
|
+
/**
|
|
11738
|
+
* Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration. See Guardrail Configuration for more information.
|
|
11739
|
+
*/
|
|
11740
|
+
guardrailConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptGuardrailConfiguration;
|
|
11741
|
+
sourceConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfiguration;
|
|
11742
|
+
}
|
|
11743
|
+
interface AgentFlowDefinitionNodeConfigurationPromptGuardrailConfiguration {
|
|
11744
|
+
/**
|
|
11745
|
+
* The unique identifier of the guardrail.
|
|
11746
|
+
*/
|
|
11747
|
+
guardrailIdentifier: string;
|
|
11748
|
+
/**
|
|
11749
|
+
* The version of the guardrail.
|
|
11750
|
+
*/
|
|
11751
|
+
guardrailVersion: string;
|
|
11752
|
+
}
|
|
11753
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfiguration {
|
|
11754
|
+
/**
|
|
11755
|
+
* Contains configurations for a prompt that is defined inline. See Prompt Inline Configuration for more information.
|
|
11756
|
+
*/
|
|
11757
|
+
inline?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInline;
|
|
11758
|
+
/**
|
|
11759
|
+
* Contains configurations for a prompt from Prompt management. See Prompt Resource Configuration for more information.
|
|
11760
|
+
*/
|
|
11761
|
+
resource?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationResource;
|
|
11762
|
+
}
|
|
11763
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInline {
|
|
11764
|
+
/**
|
|
11765
|
+
* Additional fields to be included in the model request for the Prompt node.
|
|
11766
|
+
*/
|
|
11767
|
+
additionalModelRequestFields?: string;
|
|
11768
|
+
/**
|
|
11769
|
+
* Contains inference configurations for the prompt. See Prompt Inference Configuration for more information.
|
|
11770
|
+
*/
|
|
11771
|
+
inferenceConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfiguration;
|
|
11772
|
+
modelId: string;
|
|
11773
|
+
/**
|
|
11774
|
+
* Contains a prompt and variables in the prompt that can be replaced with values at runtime. See Prompt Template Configuration for more information.
|
|
11775
|
+
*/
|
|
11776
|
+
templateConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfiguration;
|
|
11777
|
+
/**
|
|
11778
|
+
* The type of prompt template. Valid values: `TEXT`, `CHAT`.
|
|
11779
|
+
*/
|
|
11780
|
+
templateType: string;
|
|
11781
|
+
}
|
|
11782
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfiguration {
|
|
11783
|
+
text?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfigurationText;
|
|
11784
|
+
}
|
|
11785
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfigurationText {
|
|
11786
|
+
/**
|
|
11787
|
+
* Maximum number of tokens to return in the response.
|
|
11788
|
+
*/
|
|
11789
|
+
maxTokens?: number;
|
|
11790
|
+
/**
|
|
11791
|
+
* List of strings that define sequences after which the model will stop generating.
|
|
11792
|
+
*/
|
|
11793
|
+
stopSequences?: string[];
|
|
11794
|
+
/**
|
|
11795
|
+
* Controls the randomness of the response. Choose a lower value for more predictable outputs and a higher value for more surprising outputs.
|
|
11796
|
+
*/
|
|
11797
|
+
temperature?: number;
|
|
11798
|
+
/**
|
|
11799
|
+
* Percentage of most-likely candidates that the model considers for the next token.
|
|
11800
|
+
*/
|
|
11801
|
+
topP?: number;
|
|
11802
|
+
}
|
|
11803
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfiguration {
|
|
11804
|
+
/**
|
|
11805
|
+
* Contains configurations to use the prompt in a conversational format. See Chat Template Configuration for more information.
|
|
11806
|
+
*/
|
|
11807
|
+
chat?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChat;
|
|
11808
|
+
text?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationText;
|
|
11809
|
+
}
|
|
11810
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChat {
|
|
11811
|
+
inputVariables?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatInputVariable[];
|
|
11812
|
+
/**
|
|
11813
|
+
* A list of messages in the chat for the prompt. See Message for more information.
|
|
11814
|
+
*/
|
|
11815
|
+
messages?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessage[];
|
|
11816
|
+
/**
|
|
11817
|
+
* A list of system prompts to provide context to the model or to describe how it should behave. See System for more information.
|
|
11818
|
+
*/
|
|
11819
|
+
systems?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystem[];
|
|
11820
|
+
/**
|
|
11821
|
+
* Configuration information for the tools that the model can use when generating a response. See Tool Configuration for more information.
|
|
11822
|
+
*/
|
|
11823
|
+
toolConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfiguration;
|
|
11824
|
+
}
|
|
11825
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatInputVariable {
|
|
11826
|
+
/**
|
|
11827
|
+
* The name of the variable.
|
|
11828
|
+
*/
|
|
11829
|
+
name: string;
|
|
11830
|
+
}
|
|
11831
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessage {
|
|
11832
|
+
/**
|
|
11833
|
+
* Contains the content for the message you pass to, or receive from a model. See [Message Content] for more information.
|
|
11834
|
+
*/
|
|
11835
|
+
content?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContent;
|
|
11836
|
+
/**
|
|
11837
|
+
* The role that the message belongs to.
|
|
11838
|
+
*/
|
|
11839
|
+
role: string;
|
|
11840
|
+
}
|
|
11841
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContent {
|
|
11842
|
+
cachePoint?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContentCachePoint;
|
|
11843
|
+
text?: string;
|
|
11844
|
+
}
|
|
11845
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContentCachePoint {
|
|
11846
|
+
/**
|
|
11847
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
11848
|
+
*/
|
|
11849
|
+
type: string;
|
|
11850
|
+
}
|
|
11851
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystem {
|
|
11852
|
+
/**
|
|
11853
|
+
* Creates a cache checkpoint within a tool designation. See Cache Point for more information.
|
|
11854
|
+
*/
|
|
11855
|
+
cachePoint?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystemCachePoint;
|
|
11856
|
+
/**
|
|
11857
|
+
* The text in the system prompt.
|
|
11858
|
+
*/
|
|
11859
|
+
text?: string;
|
|
11860
|
+
}
|
|
11861
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystemCachePoint {
|
|
11862
|
+
/**
|
|
11863
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
11864
|
+
*/
|
|
11865
|
+
type: string;
|
|
11866
|
+
}
|
|
11867
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfiguration {
|
|
11868
|
+
/**
|
|
11869
|
+
* Defines which tools the model should request when invoked. See Tool Choice for more information.
|
|
11870
|
+
*/
|
|
11871
|
+
toolChoice?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoice;
|
|
11872
|
+
/**
|
|
11873
|
+
* A list of tools to pass to a model. See Tool for more information.
|
|
11874
|
+
*/
|
|
11875
|
+
tools?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationTool[];
|
|
11876
|
+
}
|
|
11877
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationTool {
|
|
11878
|
+
/**
|
|
11879
|
+
* Creates a cache checkpoint within a tool designation. See Cache Point for more information.
|
|
11880
|
+
*/
|
|
11881
|
+
cachePoint?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolCachePoint;
|
|
11882
|
+
/**
|
|
11883
|
+
* The specification for the tool. See Tool Specification for more information.
|
|
11884
|
+
*/
|
|
11885
|
+
toolSpec?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpec;
|
|
11886
|
+
}
|
|
11887
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolCachePoint {
|
|
11888
|
+
/**
|
|
11889
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
11890
|
+
*/
|
|
11891
|
+
type: string;
|
|
11892
|
+
}
|
|
11893
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoice {
|
|
11894
|
+
/**
|
|
11895
|
+
* Defines tools, at least one of which must be requested by the model. No text is generated but the results of tool use are sent back to the model to help generate a response. This object has no fields.
|
|
11896
|
+
*/
|
|
11897
|
+
any?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAny;
|
|
11898
|
+
/**
|
|
11899
|
+
* Defines tools. The model automatically decides whether to call a tool or to generate text instead. This object has no fields.
|
|
11900
|
+
*/
|
|
11901
|
+
auto?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAuto;
|
|
11902
|
+
/**
|
|
11903
|
+
* Defines a specific tool that the model must request. No text is generated but the results of tool use are sent back to the model to help generate a response. See Named Tool for more information.
|
|
11904
|
+
*/
|
|
11905
|
+
tool?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceTool;
|
|
11906
|
+
}
|
|
11907
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAny {
|
|
11908
|
+
}
|
|
11909
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAuto {
|
|
11910
|
+
}
|
|
11911
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceTool {
|
|
11912
|
+
/**
|
|
11913
|
+
* A name for the flow.
|
|
11914
|
+
*/
|
|
11915
|
+
name: string;
|
|
11916
|
+
}
|
|
11917
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpec {
|
|
11918
|
+
/**
|
|
11919
|
+
* A description for the flow.
|
|
11920
|
+
*/
|
|
11921
|
+
description?: string;
|
|
11922
|
+
/**
|
|
11923
|
+
* The input schema of the tool. See Tool Input Schema for more information.
|
|
11924
|
+
*/
|
|
11925
|
+
inputSchema?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpecInputSchema;
|
|
11926
|
+
/**
|
|
11927
|
+
* A name for the flow.
|
|
11928
|
+
*/
|
|
11929
|
+
name: string;
|
|
11930
|
+
}
|
|
11931
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpecInputSchema {
|
|
11932
|
+
/**
|
|
11933
|
+
* A JSON object defining the input schema for the tool.
|
|
11934
|
+
*/
|
|
11935
|
+
json?: string;
|
|
11936
|
+
}
|
|
11937
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationText {
|
|
11938
|
+
cachePoint?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextCachePoint;
|
|
11939
|
+
inputVariables?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextInputVariable[];
|
|
11940
|
+
text: string;
|
|
11941
|
+
}
|
|
11942
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextCachePoint {
|
|
11943
|
+
/**
|
|
11944
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
11945
|
+
*/
|
|
11946
|
+
type: string;
|
|
11947
|
+
}
|
|
11948
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextInputVariable {
|
|
11949
|
+
/**
|
|
11950
|
+
* The name of the variable.
|
|
11951
|
+
*/
|
|
11952
|
+
name: string;
|
|
11953
|
+
}
|
|
11954
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationResource {
|
|
11955
|
+
resourceArn: string;
|
|
11956
|
+
}
|
|
11957
|
+
interface AgentFlowDefinitionNodeConfigurationRetrieval {
|
|
11958
|
+
serviceConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrievalServiceConfiguration;
|
|
11959
|
+
}
|
|
11960
|
+
interface AgentFlowDefinitionNodeConfigurationRetrievalServiceConfiguration {
|
|
11961
|
+
s3?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrievalServiceConfigurationS3;
|
|
11962
|
+
}
|
|
11963
|
+
interface AgentFlowDefinitionNodeConfigurationRetrievalServiceConfigurationS3 {
|
|
11964
|
+
bucketName: string;
|
|
11965
|
+
}
|
|
11966
|
+
interface AgentFlowDefinitionNodeConfigurationStorage {
|
|
11967
|
+
serviceConfiguration?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationStorageServiceConfiguration;
|
|
11968
|
+
}
|
|
11969
|
+
interface AgentFlowDefinitionNodeConfigurationStorageServiceConfiguration {
|
|
11970
|
+
s3?: outputs.bedrock.AgentFlowDefinitionNodeConfigurationStorageServiceConfigurationS3;
|
|
11971
|
+
}
|
|
11972
|
+
interface AgentFlowDefinitionNodeConfigurationStorageServiceConfigurationS3 {
|
|
11973
|
+
bucketName: string;
|
|
11974
|
+
}
|
|
11975
|
+
interface AgentFlowDefinitionNodeInput {
|
|
11976
|
+
/**
|
|
11977
|
+
* How input data flows between iterations in a DoWhile loop.
|
|
11978
|
+
*/
|
|
11979
|
+
category?: string;
|
|
11980
|
+
expression: string;
|
|
11981
|
+
/**
|
|
11982
|
+
* A name for the flow.
|
|
11983
|
+
*/
|
|
11984
|
+
name: string;
|
|
11985
|
+
type: string;
|
|
11986
|
+
}
|
|
11987
|
+
interface AgentFlowDefinitionNodeOutput {
|
|
11988
|
+
/**
|
|
11989
|
+
* A name for the flow.
|
|
11990
|
+
*/
|
|
11991
|
+
name: string;
|
|
11992
|
+
type: string;
|
|
11993
|
+
}
|
|
11994
|
+
interface AgentFlowTimeouts {
|
|
11995
|
+
/**
|
|
11996
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
11997
|
+
*/
|
|
11998
|
+
create?: string;
|
|
11999
|
+
/**
|
|
12000
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
12001
|
+
*/
|
|
12002
|
+
delete?: string;
|
|
12003
|
+
/**
|
|
12004
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
12005
|
+
*/
|
|
12006
|
+
update?: string;
|
|
12007
|
+
}
|
|
11513
12008
|
interface AgentKnowledgeBaseKnowledgeBaseConfiguration {
|
|
11514
12009
|
/**
|
|
11515
12010
|
* Type of data that the data source is converted into for the knowledge base. Valid Values: `VECTOR`.
|
|
@@ -12126,45 +12621,45 @@ export declare namespace bedrock {
|
|
|
12126
12621
|
}
|
|
12127
12622
|
interface GetInferenceProfilesInferenceProfileSummary {
|
|
12128
12623
|
/**
|
|
12129
|
-
*
|
|
12624
|
+
* Time at which the inference profile was created.
|
|
12130
12625
|
*/
|
|
12131
12626
|
createdAt: string;
|
|
12132
12627
|
/**
|
|
12133
|
-
*
|
|
12628
|
+
* Description of the inference profile.
|
|
12134
12629
|
*/
|
|
12135
12630
|
description: string;
|
|
12136
12631
|
/**
|
|
12137
|
-
*
|
|
12632
|
+
* Amazon Resource Name (ARN) of the inference profile.
|
|
12138
12633
|
*/
|
|
12139
12634
|
inferenceProfileArn: string;
|
|
12140
12635
|
/**
|
|
12141
|
-
*
|
|
12636
|
+
* Unique identifier of the inference profile.
|
|
12142
12637
|
*/
|
|
12143
12638
|
inferenceProfileId: string;
|
|
12144
12639
|
/**
|
|
12145
|
-
*
|
|
12640
|
+
* Name of the inference profile.
|
|
12146
12641
|
*/
|
|
12147
12642
|
inferenceProfileName: string;
|
|
12148
12643
|
/**
|
|
12149
|
-
*
|
|
12644
|
+
* List of information about each model in the inference profile. See `models` Block.
|
|
12150
12645
|
*/
|
|
12151
12646
|
models: outputs.bedrock.GetInferenceProfilesInferenceProfileSummaryModel[];
|
|
12152
12647
|
/**
|
|
12153
|
-
*
|
|
12648
|
+
* Status of the inference profile. `ACTIVE` means that the inference profile is available to use.
|
|
12154
12649
|
*/
|
|
12155
12650
|
status: string;
|
|
12156
12651
|
/**
|
|
12157
|
-
*
|
|
12652
|
+
* Filters for inference profiles that match the type you specify. Valid values are: `SYSTEM_DEFINED`, `APPLICATION`.
|
|
12158
12653
|
*/
|
|
12159
12654
|
type: string;
|
|
12160
12655
|
/**
|
|
12161
|
-
*
|
|
12656
|
+
* Time at which the inference profile was last updated.
|
|
12162
12657
|
*/
|
|
12163
12658
|
updatedAt: string;
|
|
12164
12659
|
}
|
|
12165
12660
|
interface GetInferenceProfilesInferenceProfileSummaryModel {
|
|
12166
12661
|
/**
|
|
12167
|
-
*
|
|
12662
|
+
* Amazon Resource Name (ARN) of the model.
|
|
12168
12663
|
*/
|
|
12169
12664
|
modelArn: string;
|
|
12170
12665
|
}
|
|
@@ -32712,6 +33207,34 @@ export declare namespace ecs {
|
|
|
32712
33207
|
*/
|
|
32713
33208
|
rollback: boolean;
|
|
32714
33209
|
}
|
|
33210
|
+
interface ServiceDeploymentConfiguration {
|
|
33211
|
+
/**
|
|
33212
|
+
* Number of minutes to wait after a new deployment is fully provisioned before terminating the old deployment. Only used when `strategy` is set to `BLUE_GREEN`.
|
|
33213
|
+
*/
|
|
33214
|
+
bakeTimeInMinutes?: string;
|
|
33215
|
+
/**
|
|
33216
|
+
* Configuration block for lifecycle hooks that are invoked during deployments. See below.
|
|
33217
|
+
*/
|
|
33218
|
+
lifecycleHooks?: outputs.ecs.ServiceDeploymentConfigurationLifecycleHook[];
|
|
33219
|
+
/**
|
|
33220
|
+
* Type of deployment strategy. Valid values: `ROLLING`, `BLUE_GREEN`. Default: `ROLLING`.
|
|
33221
|
+
*/
|
|
33222
|
+
strategy?: string;
|
|
33223
|
+
}
|
|
33224
|
+
interface ServiceDeploymentConfigurationLifecycleHook {
|
|
33225
|
+
/**
|
|
33226
|
+
* ARN of the Lambda function to invoke for the lifecycle hook.
|
|
33227
|
+
*/
|
|
33228
|
+
hookTargetArn: string;
|
|
33229
|
+
/**
|
|
33230
|
+
* Stages during the deployment when the hook should be invoked. Valid values: `RECONCILE_SERVICE`, `PRE_SCALE_UP`, `POST_SCALE_UP`, `TEST_TRAFFIC_SHIFT`, `POST_TEST_TRAFFIC_SHIFT`, `PRODUCTION_TRAFFIC_SHIFT`, `POST_PRODUCTION_TRAFFIC_SHIFT`.
|
|
33231
|
+
*/
|
|
33232
|
+
lifecycleStages: string[];
|
|
33233
|
+
/**
|
|
33234
|
+
* ARN of the IAM role that grants the service permission to invoke the Lambda function.
|
|
33235
|
+
*/
|
|
33236
|
+
roleArn: string;
|
|
33237
|
+
}
|
|
32715
33238
|
interface ServiceDeploymentController {
|
|
32716
33239
|
/**
|
|
32717
33240
|
* Type of deployment controller. Valid values: `CODE_DEPLOY`, `ECS`, `EXTERNAL`. Default: `ECS`.
|
|
@@ -32719,14 +33242,18 @@ export declare namespace ecs {
|
|
|
32719
33242
|
type?: string;
|
|
32720
33243
|
}
|
|
32721
33244
|
interface ServiceLoadBalancer {
|
|
33245
|
+
/**
|
|
33246
|
+
* Configuration block for Blue/Green deployment settings. Required when using `BLUE_GREEN` deployment strategy. See below.
|
|
33247
|
+
*
|
|
33248
|
+
* > **Version note:** Multiple `loadBalancer` configuration block support was added in version 2.22.0 of the provider. This allows configuration of [ECS service support for multiple target groups](https://aws.amazon.com/about-aws/whats-new/2019/07/amazon-ecs-services-now-support-multiple-load-balancer-target-groups/).
|
|
33249
|
+
*/
|
|
33250
|
+
advancedConfiguration?: outputs.ecs.ServiceLoadBalancerAdvancedConfiguration;
|
|
32722
33251
|
/**
|
|
32723
33252
|
* Name of the container to associate with the load balancer (as it appears in a container definition).
|
|
32724
33253
|
*/
|
|
32725
33254
|
containerName: string;
|
|
32726
33255
|
/**
|
|
32727
33256
|
* Port on the container to associate with the load balancer.
|
|
32728
|
-
*
|
|
32729
|
-
* > **Version note:** Multiple `loadBalancer` configuration block support was added in version 2.22.0 of the provider. This allows configuration of [ECS service support for multiple target groups](https://aws.amazon.com/about-aws/whats-new/2019/07/amazon-ecs-services-now-support-multiple-load-balancer-target-groups/).
|
|
32730
33257
|
*/
|
|
32731
33258
|
containerPort: number;
|
|
32732
33259
|
/**
|
|
@@ -32738,6 +33265,24 @@ export declare namespace ecs {
|
|
|
32738
33265
|
*/
|
|
32739
33266
|
targetGroupArn?: string;
|
|
32740
33267
|
}
|
|
33268
|
+
interface ServiceLoadBalancerAdvancedConfiguration {
|
|
33269
|
+
/**
|
|
33270
|
+
* ARN of the alternate target group to use for Blue/Green deployments.
|
|
33271
|
+
*/
|
|
33272
|
+
alternateTargetGroupArn: string;
|
|
33273
|
+
/**
|
|
33274
|
+
* ARN of the listener rule that routes production traffic.
|
|
33275
|
+
*/
|
|
33276
|
+
productionListenerRule: string;
|
|
33277
|
+
/**
|
|
33278
|
+
* ARN of the IAM role that allows ECS to manage the target groups.
|
|
33279
|
+
*/
|
|
33280
|
+
roleArn: string;
|
|
33281
|
+
/**
|
|
33282
|
+
* ARN of the listener rule that routes test traffic.
|
|
33283
|
+
*/
|
|
33284
|
+
testListenerRule?: string;
|
|
33285
|
+
}
|
|
32741
33286
|
interface ServiceNetworkConfiguration {
|
|
32742
33287
|
/**
|
|
32743
33288
|
* Assign a public IP address to the ENI (Fargate launch type only). Valid values are `true` or `false`. Default `false`.
|
|
@@ -32858,6 +33403,32 @@ export declare namespace ecs {
|
|
|
32858
33403
|
* Listening port number for the Service Connect proxy. This port is available inside of all of the tasks within the same namespace.
|
|
32859
33404
|
*/
|
|
32860
33405
|
port: number;
|
|
33406
|
+
/**
|
|
33407
|
+
* Configuration block for test traffic routing rules. See below.
|
|
33408
|
+
*/
|
|
33409
|
+
testTrafficRules?: outputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRule[];
|
|
33410
|
+
}
|
|
33411
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRule {
|
|
33412
|
+
/**
|
|
33413
|
+
* Configuration block for header-based routing rules. See below.
|
|
33414
|
+
*/
|
|
33415
|
+
header?: outputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeader;
|
|
33416
|
+
}
|
|
33417
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeader {
|
|
33418
|
+
/**
|
|
33419
|
+
* Name of the HTTP header to match.
|
|
33420
|
+
*/
|
|
33421
|
+
name: string;
|
|
33422
|
+
/**
|
|
33423
|
+
* Configuration block for header value matching criteria. See below.
|
|
33424
|
+
*/
|
|
33425
|
+
value: outputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeaderValue;
|
|
33426
|
+
}
|
|
33427
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeaderValue {
|
|
33428
|
+
/**
|
|
33429
|
+
* Exact string value to match in the header.
|
|
33430
|
+
*/
|
|
33431
|
+
exact: string;
|
|
32861
33432
|
}
|
|
32862
33433
|
interface ServiceServiceConnectConfigurationServiceTimeout {
|
|
32863
33434
|
/**
|
|
@@ -37553,6 +38124,66 @@ export declare namespace fsx {
|
|
|
37553
38124
|
storageCapacityQuotaGib: number;
|
|
37554
38125
|
type: string;
|
|
37555
38126
|
}
|
|
38127
|
+
interface S3AccessPointAttachmentOpenzfsConfiguration {
|
|
38128
|
+
/**
|
|
38129
|
+
* File system user identity to use for authorizing file read and write requests that are made using the S3 access point. See `fileSystemIdentity` Block for details.
|
|
38130
|
+
*/
|
|
38131
|
+
fileSystemIdentity?: outputs.fsx.S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentity;
|
|
38132
|
+
/**
|
|
38133
|
+
* ID of the FSx for OpenZFS volume to which the S3 access point is attached.
|
|
38134
|
+
*/
|
|
38135
|
+
volumeId: string;
|
|
38136
|
+
}
|
|
38137
|
+
interface S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentity {
|
|
38138
|
+
/**
|
|
38139
|
+
* UID and GIDs of the file system POSIX user. See `posixUser` Block for details.
|
|
38140
|
+
*/
|
|
38141
|
+
posixUser?: outputs.fsx.S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentityPosixUser;
|
|
38142
|
+
/**
|
|
38143
|
+
* FSx for OpenZFS user identity type. Valid values: `POSIX`.
|
|
38144
|
+
*/
|
|
38145
|
+
type: string;
|
|
38146
|
+
}
|
|
38147
|
+
interface S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentityPosixUser {
|
|
38148
|
+
/**
|
|
38149
|
+
* GID of the file system user.
|
|
38150
|
+
*/
|
|
38151
|
+
gid: number;
|
|
38152
|
+
/**
|
|
38153
|
+
* List of secondary GIDs for the file system user..
|
|
38154
|
+
*/
|
|
38155
|
+
secondaryGids?: number[];
|
|
38156
|
+
/**
|
|
38157
|
+
* UID of the file system user.
|
|
38158
|
+
*/
|
|
38159
|
+
uid: number;
|
|
38160
|
+
}
|
|
38161
|
+
interface S3AccessPointAttachmentS3AccessPoint {
|
|
38162
|
+
/**
|
|
38163
|
+
* Access policy associated with the S3 access point configuration.
|
|
38164
|
+
*/
|
|
38165
|
+
policy?: string;
|
|
38166
|
+
/**
|
|
38167
|
+
* Amazon S3 restricts access to the S3 access point to requests made from the specified VPC. See `vpcConfiguration` Block for details.
|
|
38168
|
+
*/
|
|
38169
|
+
vpcConfiguration?: outputs.fsx.S3AccessPointAttachmentS3AccessPointVpcConfiguration;
|
|
38170
|
+
}
|
|
38171
|
+
interface S3AccessPointAttachmentS3AccessPointVpcConfiguration {
|
|
38172
|
+
/**
|
|
38173
|
+
* VPC ID.
|
|
38174
|
+
*/
|
|
38175
|
+
vpcId?: string;
|
|
38176
|
+
}
|
|
38177
|
+
interface S3AccessPointAttachmentTimeouts {
|
|
38178
|
+
/**
|
|
38179
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
38180
|
+
*/
|
|
38181
|
+
create?: string;
|
|
38182
|
+
/**
|
|
38183
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
38184
|
+
*/
|
|
38185
|
+
delete?: string;
|
|
38186
|
+
}
|
|
37556
38187
|
interface WindowsFileSystemAuditLogConfiguration {
|
|
37557
38188
|
/**
|
|
37558
38189
|
* The Amazon Resource Name (ARN) for the destination of the audit logs. The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis Data Firehose delivery stream ARN. Can be specified when `fileAccessAuditLogLevel` and `fileShareAccessAuditLogLevel` are not set to `DISABLED`. The name of the Amazon CloudWatch Logs log group must begin with the `/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehouse delivery stream must begin with the `aws-fsx` prefix. If you do not provide a destination in `auditLogDestionation`, Amazon FSx will create and use a log stream in the CloudWatch Logs /aws/fsx/windows log group.
|
|
@@ -75079,6 +75710,30 @@ export declare namespace s3 {
|
|
|
75079
75710
|
*/
|
|
75080
75711
|
type: string;
|
|
75081
75712
|
}
|
|
75713
|
+
interface GetAccessPointPublicAccessBlockConfiguration {
|
|
75714
|
+
/**
|
|
75715
|
+
* Whether Amazon S3 blocks public ACLs for buckets in this account.
|
|
75716
|
+
*/
|
|
75717
|
+
blockPublicAcls: boolean;
|
|
75718
|
+
/**
|
|
75719
|
+
* Whether Amazon S3 blocks public bucket policies for buckets in this account.
|
|
75720
|
+
*/
|
|
75721
|
+
blockPublicPolicy: boolean;
|
|
75722
|
+
/**
|
|
75723
|
+
* Whether Amazon S3 ignores public ACLs for buckets in this account.
|
|
75724
|
+
*/
|
|
75725
|
+
ignorePublicAcls: boolean;
|
|
75726
|
+
/**
|
|
75727
|
+
* Whether Amazon S3 restricts public bucket policies for buckets in this account.
|
|
75728
|
+
*/
|
|
75729
|
+
restrictPublicBuckets: boolean;
|
|
75730
|
+
}
|
|
75731
|
+
interface GetAccessPointVpcConfiguration {
|
|
75732
|
+
/**
|
|
75733
|
+
* Access point will only allow connections from this VPC.
|
|
75734
|
+
*/
|
|
75735
|
+
vpcId: string;
|
|
75736
|
+
}
|
|
75082
75737
|
interface InventoryDestination {
|
|
75083
75738
|
/**
|
|
75084
75739
|
* S3 bucket configuration where inventory results are published (documented below).
|