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