@pulumi/aws 7.1.0-alpha.1753116780 → 7.1.0
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/input.d.ts
CHANGED
|
@@ -1445,6 +1445,10 @@ export declare namespace acm {
|
|
|
1445
1445
|
* 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.
|
|
1446
1446
|
*/
|
|
1447
1447
|
certificateTransparencyLoggingPreference?: pulumi.Input<string>;
|
|
1448
|
+
/**
|
|
1449
|
+
* 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.
|
|
1450
|
+
*/
|
|
1451
|
+
export?: pulumi.Input<string>;
|
|
1448
1452
|
}
|
|
1449
1453
|
interface CertificateRenewalSummary {
|
|
1450
1454
|
/**
|
|
@@ -10426,6 +10430,497 @@ export declare namespace bedrock {
|
|
|
10426
10430
|
*/
|
|
10427
10431
|
parsingPromptString: pulumi.Input<string>;
|
|
10428
10432
|
}
|
|
10433
|
+
interface AgentFlowDefinition {
|
|
10434
|
+
/**
|
|
10435
|
+
* A list of connection definitions in the flow. See Connection for more information.
|
|
10436
|
+
*/
|
|
10437
|
+
connections?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionConnection>[]>;
|
|
10438
|
+
/**
|
|
10439
|
+
* A list of node definitions in the flow. See Node for more information.
|
|
10440
|
+
*/
|
|
10441
|
+
nodes?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNode>[]>;
|
|
10442
|
+
}
|
|
10443
|
+
interface AgentFlowDefinitionConnection {
|
|
10444
|
+
/**
|
|
10445
|
+
* Configuration of the connection. See Connection Configuration for more information.
|
|
10446
|
+
*/
|
|
10447
|
+
configuration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionConnectionConfiguration>;
|
|
10448
|
+
/**
|
|
10449
|
+
* A name for the connection that you can reference.
|
|
10450
|
+
*/
|
|
10451
|
+
name: pulumi.Input<string>;
|
|
10452
|
+
/**
|
|
10453
|
+
* The node that the connection starts at.
|
|
10454
|
+
*/
|
|
10455
|
+
source: pulumi.Input<string>;
|
|
10456
|
+
/**
|
|
10457
|
+
* The node that the connection ends at.
|
|
10458
|
+
*/
|
|
10459
|
+
target: pulumi.Input<string>;
|
|
10460
|
+
/**
|
|
10461
|
+
* Whether the source node that the connection begins from is a condition node `Conditional` or not `Data`.
|
|
10462
|
+
*/
|
|
10463
|
+
type: pulumi.Input<string>;
|
|
10464
|
+
}
|
|
10465
|
+
interface AgentFlowDefinitionConnectionConfiguration {
|
|
10466
|
+
/**
|
|
10467
|
+
* The configuration of a connection originating from a Condition node. See Conditional Connection Configuration for more information.
|
|
10468
|
+
*/
|
|
10469
|
+
conditional?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionConnectionConfigurationConditional>;
|
|
10470
|
+
/**
|
|
10471
|
+
* The configuration of a connection originating from a node that isn’t a Condition node. See Data Connection Configuration for more information.
|
|
10472
|
+
*/
|
|
10473
|
+
data?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionConnectionConfigurationData>;
|
|
10474
|
+
}
|
|
10475
|
+
interface AgentFlowDefinitionConnectionConfigurationConditional {
|
|
10476
|
+
condition: pulumi.Input<string>;
|
|
10477
|
+
}
|
|
10478
|
+
interface AgentFlowDefinitionConnectionConfigurationData {
|
|
10479
|
+
/**
|
|
10480
|
+
* The name of the output in the source node that the connection begins from.
|
|
10481
|
+
*/
|
|
10482
|
+
sourceOutput: pulumi.Input<string>;
|
|
10483
|
+
/**
|
|
10484
|
+
* The name of the input in the target node that the connection ends at.
|
|
10485
|
+
*/
|
|
10486
|
+
targetInput: pulumi.Input<string>;
|
|
10487
|
+
}
|
|
10488
|
+
interface AgentFlowDefinitionNode {
|
|
10489
|
+
/**
|
|
10490
|
+
* Contains configurations for the node. See Node Configuration for more information.
|
|
10491
|
+
*/
|
|
10492
|
+
configuration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfiguration>;
|
|
10493
|
+
/**
|
|
10494
|
+
* A list of objects containing information about an input into the node. See Node Input for more information.
|
|
10495
|
+
*/
|
|
10496
|
+
inputs?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeInput>[]>;
|
|
10497
|
+
/**
|
|
10498
|
+
* A name for the node.
|
|
10499
|
+
*/
|
|
10500
|
+
name: pulumi.Input<string>;
|
|
10501
|
+
/**
|
|
10502
|
+
* A list of objects containing information about an output from the node. See Node Output for more information.
|
|
10503
|
+
*/
|
|
10504
|
+
outputs?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeOutput>[]>;
|
|
10505
|
+
/**
|
|
10506
|
+
* 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`
|
|
10507
|
+
*/
|
|
10508
|
+
type: pulumi.Input<string>;
|
|
10509
|
+
}
|
|
10510
|
+
interface AgentFlowDefinitionNodeConfiguration {
|
|
10511
|
+
/**
|
|
10512
|
+
* 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.
|
|
10513
|
+
*/
|
|
10514
|
+
agent?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationAgent>;
|
|
10515
|
+
/**
|
|
10516
|
+
* 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.
|
|
10517
|
+
*/
|
|
10518
|
+
collector?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationCollector>;
|
|
10519
|
+
condition?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationCondition>;
|
|
10520
|
+
/**
|
|
10521
|
+
* Contains configurations for an inline code node in your flow. See Inline Code Node Configuration for more information.
|
|
10522
|
+
*/
|
|
10523
|
+
inlineCode?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationInlineCode>;
|
|
10524
|
+
input?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationInput>;
|
|
10525
|
+
/**
|
|
10526
|
+
* 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.
|
|
10527
|
+
*/
|
|
10528
|
+
iterator?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationIterator>;
|
|
10529
|
+
/**
|
|
10530
|
+
* 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.
|
|
10531
|
+
*/
|
|
10532
|
+
knowledgeBase?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBase>;
|
|
10533
|
+
/**
|
|
10534
|
+
* Contains configurations for a Lambda function node in your flow. Invokes a Lambda function. See Lambda Function Node Configuration for more information.
|
|
10535
|
+
*/
|
|
10536
|
+
lambdaFunction?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationLambdaFunction>;
|
|
10537
|
+
/**
|
|
10538
|
+
* 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.
|
|
10539
|
+
*/
|
|
10540
|
+
lex?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationLex>;
|
|
10541
|
+
output?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationOutput>;
|
|
10542
|
+
/**
|
|
10543
|
+
* 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.
|
|
10544
|
+
*/
|
|
10545
|
+
prompt?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPrompt>;
|
|
10546
|
+
/**
|
|
10547
|
+
* 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.
|
|
10548
|
+
*/
|
|
10549
|
+
retrieval?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrieval>;
|
|
10550
|
+
/**
|
|
10551
|
+
* Contains configurations for a Storage node in your flow. Stores an input in an Amazon S3 location. See Storage Node Configuration for more information.
|
|
10552
|
+
*/
|
|
10553
|
+
storage?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationStorage>;
|
|
10554
|
+
}
|
|
10555
|
+
interface AgentFlowDefinitionNodeConfigurationAgent {
|
|
10556
|
+
/**
|
|
10557
|
+
* The Amazon Resource Name (ARN) of the alias of the agent to invoke.
|
|
10558
|
+
*/
|
|
10559
|
+
agentAliasArn: pulumi.Input<string>;
|
|
10560
|
+
}
|
|
10561
|
+
interface AgentFlowDefinitionNodeConfigurationCollector {
|
|
10562
|
+
}
|
|
10563
|
+
interface AgentFlowDefinitionNodeConfigurationCondition {
|
|
10564
|
+
conditions: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationConditionCondition>[]>;
|
|
10565
|
+
}
|
|
10566
|
+
interface AgentFlowDefinitionNodeConfigurationConditionCondition {
|
|
10567
|
+
expression?: pulumi.Input<string>;
|
|
10568
|
+
/**
|
|
10569
|
+
* A name for the flow.
|
|
10570
|
+
*/
|
|
10571
|
+
name: pulumi.Input<string>;
|
|
10572
|
+
}
|
|
10573
|
+
interface AgentFlowDefinitionNodeConfigurationInlineCode {
|
|
10574
|
+
/**
|
|
10575
|
+
* The code that's executed in your inline code node.
|
|
10576
|
+
*/
|
|
10577
|
+
code: pulumi.Input<string>;
|
|
10578
|
+
/**
|
|
10579
|
+
* The programming language used by your inline code node.
|
|
10580
|
+
*/
|
|
10581
|
+
language: pulumi.Input<string>;
|
|
10582
|
+
}
|
|
10583
|
+
interface AgentFlowDefinitionNodeConfigurationInput {
|
|
10584
|
+
}
|
|
10585
|
+
interface AgentFlowDefinitionNodeConfigurationIterator {
|
|
10586
|
+
}
|
|
10587
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBase {
|
|
10588
|
+
/**
|
|
10589
|
+
* 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.
|
|
10590
|
+
*/
|
|
10591
|
+
guardrailConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseGuardrailConfiguration>;
|
|
10592
|
+
/**
|
|
10593
|
+
* Contains inference configurations for the prompt. See Prompt Inference Configuration for more information.
|
|
10594
|
+
*/
|
|
10595
|
+
inferenceConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfiguration>;
|
|
10596
|
+
/**
|
|
10597
|
+
* The unique identifier of the knowledge base to query.
|
|
10598
|
+
*/
|
|
10599
|
+
knowledgeBaseId: pulumi.Input<string>;
|
|
10600
|
+
modelId: pulumi.Input<string>;
|
|
10601
|
+
numberOfResults?: pulumi.Input<number>;
|
|
10602
|
+
}
|
|
10603
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseGuardrailConfiguration {
|
|
10604
|
+
/**
|
|
10605
|
+
* The unique identifier of the guardrail.
|
|
10606
|
+
*/
|
|
10607
|
+
guardrailIdentifier: pulumi.Input<string>;
|
|
10608
|
+
/**
|
|
10609
|
+
* The version of the guardrail.
|
|
10610
|
+
*/
|
|
10611
|
+
guardrailVersion: pulumi.Input<string>;
|
|
10612
|
+
}
|
|
10613
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfiguration {
|
|
10614
|
+
text?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfigurationText>;
|
|
10615
|
+
}
|
|
10616
|
+
interface AgentFlowDefinitionNodeConfigurationKnowledgeBaseInferenceConfigurationText {
|
|
10617
|
+
/**
|
|
10618
|
+
* Maximum number of tokens to return in the response.
|
|
10619
|
+
*/
|
|
10620
|
+
maxTokens?: pulumi.Input<number>;
|
|
10621
|
+
/**
|
|
10622
|
+
* List of strings that define sequences after which the model will stop generating.
|
|
10623
|
+
*/
|
|
10624
|
+
stopSequences?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10625
|
+
/**
|
|
10626
|
+
* Controls the randomness of the response. Choose a lower value for more predictable outputs and a higher value for more surprising outputs.
|
|
10627
|
+
*/
|
|
10628
|
+
temperature?: pulumi.Input<number>;
|
|
10629
|
+
/**
|
|
10630
|
+
* Percentage of most-likely candidates that the model considers for the next token.
|
|
10631
|
+
*/
|
|
10632
|
+
topP?: pulumi.Input<number>;
|
|
10633
|
+
}
|
|
10634
|
+
interface AgentFlowDefinitionNodeConfigurationLambdaFunction {
|
|
10635
|
+
/**
|
|
10636
|
+
* The Amazon Resource Name (ARN) of the Lambda function to invoke.
|
|
10637
|
+
*/
|
|
10638
|
+
lambdaArn: pulumi.Input<string>;
|
|
10639
|
+
}
|
|
10640
|
+
interface AgentFlowDefinitionNodeConfigurationLex {
|
|
10641
|
+
/**
|
|
10642
|
+
* The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
|
|
10643
|
+
*/
|
|
10644
|
+
botAliasArn: pulumi.Input<string>;
|
|
10645
|
+
/**
|
|
10646
|
+
* The Region to invoke the Amazon Lex bot in
|
|
10647
|
+
*/
|
|
10648
|
+
localeId: pulumi.Input<string>;
|
|
10649
|
+
}
|
|
10650
|
+
interface AgentFlowDefinitionNodeConfigurationOutput {
|
|
10651
|
+
}
|
|
10652
|
+
interface AgentFlowDefinitionNodeConfigurationPrompt {
|
|
10653
|
+
/**
|
|
10654
|
+
* 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.
|
|
10655
|
+
*/
|
|
10656
|
+
guardrailConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptGuardrailConfiguration>;
|
|
10657
|
+
sourceConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfiguration>;
|
|
10658
|
+
}
|
|
10659
|
+
interface AgentFlowDefinitionNodeConfigurationPromptGuardrailConfiguration {
|
|
10660
|
+
/**
|
|
10661
|
+
* The unique identifier of the guardrail.
|
|
10662
|
+
*/
|
|
10663
|
+
guardrailIdentifier: pulumi.Input<string>;
|
|
10664
|
+
/**
|
|
10665
|
+
* The version of the guardrail.
|
|
10666
|
+
*/
|
|
10667
|
+
guardrailVersion: pulumi.Input<string>;
|
|
10668
|
+
}
|
|
10669
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfiguration {
|
|
10670
|
+
/**
|
|
10671
|
+
* Contains configurations for a prompt that is defined inline. See Prompt Inline Configuration for more information.
|
|
10672
|
+
*/
|
|
10673
|
+
inline?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInline>;
|
|
10674
|
+
/**
|
|
10675
|
+
* Contains configurations for a prompt from Prompt management. See Prompt Resource Configuration for more information.
|
|
10676
|
+
*/
|
|
10677
|
+
resource?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationResource>;
|
|
10678
|
+
}
|
|
10679
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInline {
|
|
10680
|
+
/**
|
|
10681
|
+
* Additional fields to be included in the model request for the Prompt node.
|
|
10682
|
+
*/
|
|
10683
|
+
additionalModelRequestFields?: pulumi.Input<string>;
|
|
10684
|
+
/**
|
|
10685
|
+
* Contains inference configurations for the prompt. See Prompt Inference Configuration for more information.
|
|
10686
|
+
*/
|
|
10687
|
+
inferenceConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfiguration>;
|
|
10688
|
+
modelId: pulumi.Input<string>;
|
|
10689
|
+
/**
|
|
10690
|
+
* Contains a prompt and variables in the prompt that can be replaced with values at runtime. See Prompt Template Configuration for more information.
|
|
10691
|
+
*/
|
|
10692
|
+
templateConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfiguration>;
|
|
10693
|
+
/**
|
|
10694
|
+
* The type of prompt template. Valid values: `TEXT`, `CHAT`.
|
|
10695
|
+
*/
|
|
10696
|
+
templateType: pulumi.Input<string>;
|
|
10697
|
+
}
|
|
10698
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfiguration {
|
|
10699
|
+
text?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfigurationText>;
|
|
10700
|
+
}
|
|
10701
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineInferenceConfigurationText {
|
|
10702
|
+
/**
|
|
10703
|
+
* Maximum number of tokens to return in the response.
|
|
10704
|
+
*/
|
|
10705
|
+
maxTokens?: pulumi.Input<number>;
|
|
10706
|
+
/**
|
|
10707
|
+
* List of strings that define sequences after which the model will stop generating.
|
|
10708
|
+
*/
|
|
10709
|
+
stopSequences?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10710
|
+
/**
|
|
10711
|
+
* Controls the randomness of the response. Choose a lower value for more predictable outputs and a higher value for more surprising outputs.
|
|
10712
|
+
*/
|
|
10713
|
+
temperature?: pulumi.Input<number>;
|
|
10714
|
+
/**
|
|
10715
|
+
* Percentage of most-likely candidates that the model considers for the next token.
|
|
10716
|
+
*/
|
|
10717
|
+
topP?: pulumi.Input<number>;
|
|
10718
|
+
}
|
|
10719
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfiguration {
|
|
10720
|
+
/**
|
|
10721
|
+
* Contains configurations to use the prompt in a conversational format. See Chat Template Configuration for more information.
|
|
10722
|
+
*/
|
|
10723
|
+
chat?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChat>;
|
|
10724
|
+
text?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationText>;
|
|
10725
|
+
}
|
|
10726
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChat {
|
|
10727
|
+
inputVariables?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatInputVariable>[]>;
|
|
10728
|
+
/**
|
|
10729
|
+
* A list of messages in the chat for the prompt. See Message for more information.
|
|
10730
|
+
*/
|
|
10731
|
+
messages?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessage>[]>;
|
|
10732
|
+
/**
|
|
10733
|
+
* A list of system prompts to provide context to the model or to describe how it should behave. See System for more information.
|
|
10734
|
+
*/
|
|
10735
|
+
systems?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystem>[]>;
|
|
10736
|
+
/**
|
|
10737
|
+
* Configuration information for the tools that the model can use when generating a response. See Tool Configuration for more information.
|
|
10738
|
+
*/
|
|
10739
|
+
toolConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfiguration>;
|
|
10740
|
+
}
|
|
10741
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatInputVariable {
|
|
10742
|
+
/**
|
|
10743
|
+
* The name of the variable.
|
|
10744
|
+
*/
|
|
10745
|
+
name: pulumi.Input<string>;
|
|
10746
|
+
}
|
|
10747
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessage {
|
|
10748
|
+
/**
|
|
10749
|
+
* Contains the content for the message you pass to, or receive from a model. See [Message Content] for more information.
|
|
10750
|
+
*/
|
|
10751
|
+
content?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContent>;
|
|
10752
|
+
/**
|
|
10753
|
+
* The role that the message belongs to.
|
|
10754
|
+
*/
|
|
10755
|
+
role: pulumi.Input<string>;
|
|
10756
|
+
}
|
|
10757
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContent {
|
|
10758
|
+
cachePoint?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContentCachePoint>;
|
|
10759
|
+
text?: pulumi.Input<string>;
|
|
10760
|
+
}
|
|
10761
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatMessageContentCachePoint {
|
|
10762
|
+
/**
|
|
10763
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
10764
|
+
*/
|
|
10765
|
+
type: pulumi.Input<string>;
|
|
10766
|
+
}
|
|
10767
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystem {
|
|
10768
|
+
/**
|
|
10769
|
+
* Creates a cache checkpoint within a tool designation. See Cache Point for more information.
|
|
10770
|
+
*/
|
|
10771
|
+
cachePoint?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystemCachePoint>;
|
|
10772
|
+
/**
|
|
10773
|
+
* The text in the system prompt.
|
|
10774
|
+
*/
|
|
10775
|
+
text?: pulumi.Input<string>;
|
|
10776
|
+
}
|
|
10777
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatSystemCachePoint {
|
|
10778
|
+
/**
|
|
10779
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
10780
|
+
*/
|
|
10781
|
+
type: pulumi.Input<string>;
|
|
10782
|
+
}
|
|
10783
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfiguration {
|
|
10784
|
+
/**
|
|
10785
|
+
* Defines which tools the model should request when invoked. See Tool Choice for more information.
|
|
10786
|
+
*/
|
|
10787
|
+
toolChoice?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoice>;
|
|
10788
|
+
/**
|
|
10789
|
+
* A list of tools to pass to a model. See Tool for more information.
|
|
10790
|
+
*/
|
|
10791
|
+
tools?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationTool>[]>;
|
|
10792
|
+
}
|
|
10793
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationTool {
|
|
10794
|
+
/**
|
|
10795
|
+
* Creates a cache checkpoint within a tool designation. See Cache Point for more information.
|
|
10796
|
+
*/
|
|
10797
|
+
cachePoint?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolCachePoint>;
|
|
10798
|
+
/**
|
|
10799
|
+
* The specification for the tool. See Tool Specification for more information.
|
|
10800
|
+
*/
|
|
10801
|
+
toolSpec?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpec>;
|
|
10802
|
+
}
|
|
10803
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolCachePoint {
|
|
10804
|
+
/**
|
|
10805
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
10806
|
+
*/
|
|
10807
|
+
type: pulumi.Input<string>;
|
|
10808
|
+
}
|
|
10809
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoice {
|
|
10810
|
+
/**
|
|
10811
|
+
* 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.
|
|
10812
|
+
*/
|
|
10813
|
+
any?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAny>;
|
|
10814
|
+
/**
|
|
10815
|
+
* Defines tools. The model automatically decides whether to call a tool or to generate text instead. This object has no fields.
|
|
10816
|
+
*/
|
|
10817
|
+
auto?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAuto>;
|
|
10818
|
+
/**
|
|
10819
|
+
* 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.
|
|
10820
|
+
*/
|
|
10821
|
+
tool?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceTool>;
|
|
10822
|
+
}
|
|
10823
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAny {
|
|
10824
|
+
}
|
|
10825
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceAuto {
|
|
10826
|
+
}
|
|
10827
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolChoiceTool {
|
|
10828
|
+
/**
|
|
10829
|
+
* A name for the flow.
|
|
10830
|
+
*/
|
|
10831
|
+
name: pulumi.Input<string>;
|
|
10832
|
+
}
|
|
10833
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpec {
|
|
10834
|
+
/**
|
|
10835
|
+
* A description for the flow.
|
|
10836
|
+
*/
|
|
10837
|
+
description?: pulumi.Input<string>;
|
|
10838
|
+
/**
|
|
10839
|
+
* The input schema of the tool. See Tool Input Schema for more information.
|
|
10840
|
+
*/
|
|
10841
|
+
inputSchema?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpecInputSchema>;
|
|
10842
|
+
/**
|
|
10843
|
+
* A name for the flow.
|
|
10844
|
+
*/
|
|
10845
|
+
name: pulumi.Input<string>;
|
|
10846
|
+
}
|
|
10847
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationChatToolConfigurationToolToolSpecInputSchema {
|
|
10848
|
+
/**
|
|
10849
|
+
* A JSON object defining the input schema for the tool.
|
|
10850
|
+
*/
|
|
10851
|
+
json?: pulumi.Input<string>;
|
|
10852
|
+
}
|
|
10853
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationText {
|
|
10854
|
+
cachePoint?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextCachePoint>;
|
|
10855
|
+
inputVariables?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextInputVariable>[]>;
|
|
10856
|
+
text: pulumi.Input<string>;
|
|
10857
|
+
}
|
|
10858
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextCachePoint {
|
|
10859
|
+
/**
|
|
10860
|
+
* Indicates that the CachePointBlock is of the default type. Valid values: `default`.
|
|
10861
|
+
*/
|
|
10862
|
+
type: pulumi.Input<string>;
|
|
10863
|
+
}
|
|
10864
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationInlineTemplateConfigurationTextInputVariable {
|
|
10865
|
+
/**
|
|
10866
|
+
* The name of the variable.
|
|
10867
|
+
*/
|
|
10868
|
+
name: pulumi.Input<string>;
|
|
10869
|
+
}
|
|
10870
|
+
interface AgentFlowDefinitionNodeConfigurationPromptSourceConfigurationResource {
|
|
10871
|
+
resourceArn: pulumi.Input<string>;
|
|
10872
|
+
}
|
|
10873
|
+
interface AgentFlowDefinitionNodeConfigurationRetrieval {
|
|
10874
|
+
serviceConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrievalServiceConfiguration>;
|
|
10875
|
+
}
|
|
10876
|
+
interface AgentFlowDefinitionNodeConfigurationRetrievalServiceConfiguration {
|
|
10877
|
+
s3?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationRetrievalServiceConfigurationS3>;
|
|
10878
|
+
}
|
|
10879
|
+
interface AgentFlowDefinitionNodeConfigurationRetrievalServiceConfigurationS3 {
|
|
10880
|
+
bucketName: pulumi.Input<string>;
|
|
10881
|
+
}
|
|
10882
|
+
interface AgentFlowDefinitionNodeConfigurationStorage {
|
|
10883
|
+
serviceConfiguration?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationStorageServiceConfiguration>;
|
|
10884
|
+
}
|
|
10885
|
+
interface AgentFlowDefinitionNodeConfigurationStorageServiceConfiguration {
|
|
10886
|
+
s3?: pulumi.Input<inputs.bedrock.AgentFlowDefinitionNodeConfigurationStorageServiceConfigurationS3>;
|
|
10887
|
+
}
|
|
10888
|
+
interface AgentFlowDefinitionNodeConfigurationStorageServiceConfigurationS3 {
|
|
10889
|
+
bucketName: pulumi.Input<string>;
|
|
10890
|
+
}
|
|
10891
|
+
interface AgentFlowDefinitionNodeInput {
|
|
10892
|
+
/**
|
|
10893
|
+
* How input data flows between iterations in a DoWhile loop.
|
|
10894
|
+
*/
|
|
10895
|
+
category?: pulumi.Input<string>;
|
|
10896
|
+
expression: pulumi.Input<string>;
|
|
10897
|
+
/**
|
|
10898
|
+
* A name for the flow.
|
|
10899
|
+
*/
|
|
10900
|
+
name: pulumi.Input<string>;
|
|
10901
|
+
type: pulumi.Input<string>;
|
|
10902
|
+
}
|
|
10903
|
+
interface AgentFlowDefinitionNodeOutput {
|
|
10904
|
+
/**
|
|
10905
|
+
* A name for the flow.
|
|
10906
|
+
*/
|
|
10907
|
+
name: pulumi.Input<string>;
|
|
10908
|
+
type: pulumi.Input<string>;
|
|
10909
|
+
}
|
|
10910
|
+
interface AgentFlowTimeouts {
|
|
10911
|
+
/**
|
|
10912
|
+
* 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).
|
|
10913
|
+
*/
|
|
10914
|
+
create?: pulumi.Input<string>;
|
|
10915
|
+
/**
|
|
10916
|
+
* 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.
|
|
10917
|
+
*/
|
|
10918
|
+
delete?: pulumi.Input<string>;
|
|
10919
|
+
/**
|
|
10920
|
+
* 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).
|
|
10921
|
+
*/
|
|
10922
|
+
update?: pulumi.Input<string>;
|
|
10923
|
+
}
|
|
10429
10924
|
interface AgentKnowledgeBaseKnowledgeBaseConfiguration {
|
|
10430
10925
|
/**
|
|
10431
10926
|
* Type of data that the data source is converted into for the knowledge base. Valid Values: `VECTOR`.
|
|
@@ -27254,6 +27749,34 @@ export declare namespace ecs {
|
|
|
27254
27749
|
*/
|
|
27255
27750
|
rollback: pulumi.Input<boolean>;
|
|
27256
27751
|
}
|
|
27752
|
+
interface ServiceDeploymentConfiguration {
|
|
27753
|
+
/**
|
|
27754
|
+
* 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`.
|
|
27755
|
+
*/
|
|
27756
|
+
bakeTimeInMinutes?: pulumi.Input<string>;
|
|
27757
|
+
/**
|
|
27758
|
+
* Configuration block for lifecycle hooks that are invoked during deployments. See below.
|
|
27759
|
+
*/
|
|
27760
|
+
lifecycleHooks?: pulumi.Input<pulumi.Input<inputs.ecs.ServiceDeploymentConfigurationLifecycleHook>[]>;
|
|
27761
|
+
/**
|
|
27762
|
+
* Type of deployment strategy. Valid values: `ROLLING`, `BLUE_GREEN`. Default: `ROLLING`.
|
|
27763
|
+
*/
|
|
27764
|
+
strategy?: pulumi.Input<string>;
|
|
27765
|
+
}
|
|
27766
|
+
interface ServiceDeploymentConfigurationLifecycleHook {
|
|
27767
|
+
/**
|
|
27768
|
+
* ARN of the Lambda function to invoke for the lifecycle hook.
|
|
27769
|
+
*/
|
|
27770
|
+
hookTargetArn: pulumi.Input<string>;
|
|
27771
|
+
/**
|
|
27772
|
+
* 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`.
|
|
27773
|
+
*/
|
|
27774
|
+
lifecycleStages: pulumi.Input<pulumi.Input<string>[]>;
|
|
27775
|
+
/**
|
|
27776
|
+
* ARN of the IAM role that grants the service permission to invoke the Lambda function.
|
|
27777
|
+
*/
|
|
27778
|
+
roleArn: pulumi.Input<string>;
|
|
27779
|
+
}
|
|
27257
27780
|
interface ServiceDeploymentController {
|
|
27258
27781
|
/**
|
|
27259
27782
|
* Type of deployment controller. Valid values: `CODE_DEPLOY`, `ECS`, `EXTERNAL`. Default: `ECS`.
|
|
@@ -27261,14 +27784,18 @@ export declare namespace ecs {
|
|
|
27261
27784
|
type?: pulumi.Input<string>;
|
|
27262
27785
|
}
|
|
27263
27786
|
interface ServiceLoadBalancer {
|
|
27787
|
+
/**
|
|
27788
|
+
* Configuration block for Blue/Green deployment settings. Required when using `BLUE_GREEN` deployment strategy. See below.
|
|
27789
|
+
*
|
|
27790
|
+
* > **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/).
|
|
27791
|
+
*/
|
|
27792
|
+
advancedConfiguration?: pulumi.Input<inputs.ecs.ServiceLoadBalancerAdvancedConfiguration>;
|
|
27264
27793
|
/**
|
|
27265
27794
|
* Name of the container to associate with the load balancer (as it appears in a container definition).
|
|
27266
27795
|
*/
|
|
27267
27796
|
containerName: pulumi.Input<string>;
|
|
27268
27797
|
/**
|
|
27269
27798
|
* Port on the container to associate with the load balancer.
|
|
27270
|
-
*
|
|
27271
|
-
* > **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/).
|
|
27272
27799
|
*/
|
|
27273
27800
|
containerPort: pulumi.Input<number>;
|
|
27274
27801
|
/**
|
|
@@ -27280,6 +27807,24 @@ export declare namespace ecs {
|
|
|
27280
27807
|
*/
|
|
27281
27808
|
targetGroupArn?: pulumi.Input<string>;
|
|
27282
27809
|
}
|
|
27810
|
+
interface ServiceLoadBalancerAdvancedConfiguration {
|
|
27811
|
+
/**
|
|
27812
|
+
* ARN of the alternate target group to use for Blue/Green deployments.
|
|
27813
|
+
*/
|
|
27814
|
+
alternateTargetGroupArn: pulumi.Input<string>;
|
|
27815
|
+
/**
|
|
27816
|
+
* ARN of the listener rule that routes production traffic.
|
|
27817
|
+
*/
|
|
27818
|
+
productionListenerRule: pulumi.Input<string>;
|
|
27819
|
+
/**
|
|
27820
|
+
* ARN of the IAM role that allows ECS to manage the target groups.
|
|
27821
|
+
*/
|
|
27822
|
+
roleArn: pulumi.Input<string>;
|
|
27823
|
+
/**
|
|
27824
|
+
* ARN of the listener rule that routes test traffic.
|
|
27825
|
+
*/
|
|
27826
|
+
testListenerRule?: pulumi.Input<string>;
|
|
27827
|
+
}
|
|
27283
27828
|
interface ServiceNetworkConfiguration {
|
|
27284
27829
|
/**
|
|
27285
27830
|
* Assign a public IP address to the ENI (Fargate launch type only). Valid values are `true` or `false`. Default `false`.
|
|
@@ -27400,6 +27945,32 @@ export declare namespace ecs {
|
|
|
27400
27945
|
* Listening port number for the Service Connect proxy. This port is available inside of all of the tasks within the same namespace.
|
|
27401
27946
|
*/
|
|
27402
27947
|
port: pulumi.Input<number>;
|
|
27948
|
+
/**
|
|
27949
|
+
* Configuration block for test traffic routing rules. See below.
|
|
27950
|
+
*/
|
|
27951
|
+
testTrafficRules?: pulumi.Input<pulumi.Input<inputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRule>[]>;
|
|
27952
|
+
}
|
|
27953
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRule {
|
|
27954
|
+
/**
|
|
27955
|
+
* Configuration block for header-based routing rules. See below.
|
|
27956
|
+
*/
|
|
27957
|
+
header?: pulumi.Input<inputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeader>;
|
|
27958
|
+
}
|
|
27959
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeader {
|
|
27960
|
+
/**
|
|
27961
|
+
* Name of the HTTP header to match.
|
|
27962
|
+
*/
|
|
27963
|
+
name: pulumi.Input<string>;
|
|
27964
|
+
/**
|
|
27965
|
+
* Configuration block for header value matching criteria. See below.
|
|
27966
|
+
*/
|
|
27967
|
+
value: pulumi.Input<inputs.ecs.ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeaderValue>;
|
|
27968
|
+
}
|
|
27969
|
+
interface ServiceServiceConnectConfigurationServiceClientAliasTestTrafficRuleHeaderValue {
|
|
27970
|
+
/**
|
|
27971
|
+
* Exact string value to match in the header.
|
|
27972
|
+
*/
|
|
27973
|
+
exact: pulumi.Input<string>;
|
|
27403
27974
|
}
|
|
27404
27975
|
interface ServiceServiceConnectConfigurationServiceTimeout {
|
|
27405
27976
|
/**
|
|
@@ -31319,6 +31890,66 @@ export declare namespace fsx {
|
|
|
31319
31890
|
storageCapacityQuotaGib: pulumi.Input<number>;
|
|
31320
31891
|
type: pulumi.Input<string>;
|
|
31321
31892
|
}
|
|
31893
|
+
interface S3AccessPointAttachmentOpenzfsConfiguration {
|
|
31894
|
+
/**
|
|
31895
|
+
* 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.
|
|
31896
|
+
*/
|
|
31897
|
+
fileSystemIdentity?: pulumi.Input<inputs.fsx.S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentity>;
|
|
31898
|
+
/**
|
|
31899
|
+
* ID of the FSx for OpenZFS volume to which the S3 access point is attached.
|
|
31900
|
+
*/
|
|
31901
|
+
volumeId: pulumi.Input<string>;
|
|
31902
|
+
}
|
|
31903
|
+
interface S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentity {
|
|
31904
|
+
/**
|
|
31905
|
+
* UID and GIDs of the file system POSIX user. See `posixUser` Block for details.
|
|
31906
|
+
*/
|
|
31907
|
+
posixUser?: pulumi.Input<inputs.fsx.S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentityPosixUser>;
|
|
31908
|
+
/**
|
|
31909
|
+
* FSx for OpenZFS user identity type. Valid values: `POSIX`.
|
|
31910
|
+
*/
|
|
31911
|
+
type: pulumi.Input<string>;
|
|
31912
|
+
}
|
|
31913
|
+
interface S3AccessPointAttachmentOpenzfsConfigurationFileSystemIdentityPosixUser {
|
|
31914
|
+
/**
|
|
31915
|
+
* GID of the file system user.
|
|
31916
|
+
*/
|
|
31917
|
+
gid: pulumi.Input<number>;
|
|
31918
|
+
/**
|
|
31919
|
+
* List of secondary GIDs for the file system user..
|
|
31920
|
+
*/
|
|
31921
|
+
secondaryGids?: pulumi.Input<pulumi.Input<number>[]>;
|
|
31922
|
+
/**
|
|
31923
|
+
* UID of the file system user.
|
|
31924
|
+
*/
|
|
31925
|
+
uid: pulumi.Input<number>;
|
|
31926
|
+
}
|
|
31927
|
+
interface S3AccessPointAttachmentS3AccessPoint {
|
|
31928
|
+
/**
|
|
31929
|
+
* Access policy associated with the S3 access point configuration.
|
|
31930
|
+
*/
|
|
31931
|
+
policy?: pulumi.Input<string>;
|
|
31932
|
+
/**
|
|
31933
|
+
* Amazon S3 restricts access to the S3 access point to requests made from the specified VPC. See `vpcConfiguration` Block for details.
|
|
31934
|
+
*/
|
|
31935
|
+
vpcConfiguration?: pulumi.Input<inputs.fsx.S3AccessPointAttachmentS3AccessPointVpcConfiguration>;
|
|
31936
|
+
}
|
|
31937
|
+
interface S3AccessPointAttachmentS3AccessPointVpcConfiguration {
|
|
31938
|
+
/**
|
|
31939
|
+
* VPC ID.
|
|
31940
|
+
*/
|
|
31941
|
+
vpcId?: pulumi.Input<string>;
|
|
31942
|
+
}
|
|
31943
|
+
interface S3AccessPointAttachmentTimeouts {
|
|
31944
|
+
/**
|
|
31945
|
+
* 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).
|
|
31946
|
+
*/
|
|
31947
|
+
create?: pulumi.Input<string>;
|
|
31948
|
+
/**
|
|
31949
|
+
* 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.
|
|
31950
|
+
*/
|
|
31951
|
+
delete?: pulumi.Input<string>;
|
|
31952
|
+
}
|
|
31322
31953
|
interface WindowsFileSystemAuditLogConfiguration {
|
|
31323
31954
|
/**
|
|
31324
31955
|
* 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.
|