interface RetrievalFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowVersionPropsMixin_RetrievalFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowVersionPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const retrievalFlowNodeConfigurationProperty: bedrock_mixins.CfnFlowVersionPropsMixin.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