interface RetrievalFlowNodeConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlowVersion.RetrievalFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_RetrievalFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.RetrievalFlowNodeConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnFlowVersion.RetrievalFlowNodeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowVersion » RetrievalFlowNodeConfigurationProperty |
Contains configurations for a Retrieval node in a flow.
This node retrieves data from the Amazon S3 location that you specify and returns it as the output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const retrievalFlowNodeConfigurationProperty: bedrock.CfnFlowVersion.RetrievalFlowNodeConfigurationProperty = {
serviceConfiguration: {
s3: {
bucketName: 'bucketName',
},
},
};
Properties
Name | Type | Description |
---|---|---|
service | IResolvable | Retrieval | Contains configurations for the service to use for retrieving data to return as the output from the node. |
serviceConfiguration
Type:
IResolvable
|
Retrieval
Contains configurations for the service to use for retrieving data to return as the output from the node.