Interface CfnFlow.StorageFlowNodeServiceConfigurationProperty

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

@Stability(Stable) public static interface CfnFlow.StorageFlowNodeServiceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for the service to use for storing the input into 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.*;
 StorageFlowNodeServiceConfigurationProperty storageFlowNodeServiceConfigurationProperty = StorageFlowNodeServiceConfigurationProperty.builder()
         .s3(StorageFlowNodeS3ConfigurationProperty.builder()
                 .bucketName("bucketName")
                 .build())
         .build();
 

See Also: