Interface CfnFlow.RetrievalFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.RetrievalFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.RetrievalFlowNodeConfigurationPropertystatic final classAn implementation forCfnFlow.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.Returns union: either
IResolvableorCfnFlow.RetrievalFlowNodeServiceConfigurationProperty- See Also:
-
builder
-