interface RetrievalFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.RetrievalFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_RetrievalFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.RetrievalFlowNodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.RetrievalFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnFlowPropsMixin » 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/cfn-property-mixins';
const retrievalFlowNodeConfigurationProperty: bedrock.CfnFlowPropsMixin.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
(optional)
Contains configurations for the service to use for retrieving data to return as the output from the node.

.NET
Go
Java
Python
TypeScript