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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowVersion.RetrievalFlowNodeConfigurationProperty
static final class
An implementation forCfnFlowVersion.RetrievalFlowNodeConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Contains configurations for the service to use for retrieving data to return as the output from the node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceConfiguration
Contains configurations for the service to use for retrieving data to return as the output from the node.- See Also:
-
builder
-