Class CfnFlowPropsMixin.RetrievalFlowNodeServiceConfigurationProperty
Contains configurations for the service to use for retrieving data to return as the output from the node.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowPropsMixin.RetrievalFlowNodeServiceConfigurationProperty : CfnFlowPropsMixin.IRetrievalFlowNodeServiceConfigurationProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.RetrievalFlowNodeServiceConfigurationProperty Implements CfnFlowPropsMixin.IRetrievalFlowNodeServiceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var retrievalFlowNodeServiceConfigurationProperty = new RetrievalFlowNodeServiceConfigurationProperty {
S3 = new RetrievalFlowNodeS3ConfigurationProperty {
BucketName = "bucketName"
}
};
Synopsis
Constructors
| RetrievalFlowNodeServiceConfigurationProperty() | Contains configurations for the service to use for retrieving data to return as the output from the node. |
Properties
| S3 | Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node. |
Constructors
RetrievalFlowNodeServiceConfigurationProperty()
Contains configurations for the service to use for retrieving data to return as the output from the node.
public RetrievalFlowNodeServiceConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var retrievalFlowNodeServiceConfigurationProperty = new RetrievalFlowNodeServiceConfigurationProperty {
S3 = new RetrievalFlowNodeS3ConfigurationProperty {
BucketName = "bucketName"
}
};
Properties
S3
Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node.
public object? S3 { get; set; }