Interface CfnFlowVersion.RetrievalFlowNodeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlowVersion.RetrievalFlowNodeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFlowVersion

@Stability(Stable) public static interface CfnFlowVersion.RetrievalFlowNodeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
 RetrievalFlowNodeConfigurationProperty retrievalFlowNodeConfigurationProperty = RetrievalFlowNodeConfigurationProperty.builder()
         .serviceConfiguration(RetrievalFlowNodeServiceConfigurationProperty.builder()
                 .s3(RetrievalFlowNodeS3ConfigurationProperty.builder()
                         .bucketName("bucketName")
                         .build())
                 .build())
         .build();
 

See Also: