interface RetrievalFlowNodeServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_RetrievalFlowNodeServiceConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowVersion » RetrievalFlowNodeServiceConfigurationProperty |
Contains configurations for the service to use for retrieving data to return as the output from the node.
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 retrievalFlowNodeServiceConfigurationProperty: bedrock.CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty = {
s3: {
bucketName: 'bucketName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | Retrieval | Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node. |
s3?
Type:
IResolvable | Retrieval
(optional)
Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node.

.NET
Go
Java
Python
TypeScript