Interface CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for the service to use for retrieving data to return as the output from the node.
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.*;
RetrievalFlowNodeServiceConfigurationProperty retrievalFlowNodeServiceConfigurationProperty = RetrievalFlowNodeServiceConfigurationProperty.builder()
.s3(RetrievalFlowNodeS3ConfigurationProperty.builder()
.bucketName("bucketName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node.Returns union: either
IResolvableorCfnFlowVersion.RetrievalFlowNodeS3ConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnFlowVersion.RetrievalFlowNodeServiceConfigurationProperty.Builder builder()
-