Interface CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersionPropsMixin
@Stability(Stable)
public static interface CfnFlowVersionPropsMixin.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.cfnpropertymixins.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 classstatic final classAn implementation forCfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty -
Method Summary
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
IResolvableorCfnFlowVersionPropsMixin.RetrievalFlowNodeServiceConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnFlowVersionPropsMixin.RetrievalFlowNodeConfigurationProperty.Builder builder()
-