Interface CfnFlowVersion.StorageFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.StorageFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.StorageFlowNodeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for a Storage node in a flow.
This node stores the input in an Amazon S3 location that you specify.
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.*;
StorageFlowNodeConfigurationProperty storageFlowNodeConfigurationProperty = StorageFlowNodeConfigurationProperty.builder()
.serviceConfiguration(StorageFlowNodeServiceConfigurationProperty.builder()
.s3(StorageFlowNodeS3ConfigurationProperty.builder()
.bucketName("bucketName")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowVersion.StorageFlowNodeConfigurationPropertystatic final classAn implementation forCfnFlowVersion.StorageFlowNodeConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Contains configurations for the service to use for storing the input into the node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceConfiguration
Contains configurations for the service to use for storing the input into the node.Returns union: either
IResolvableorCfnFlowVersion.StorageFlowNodeServiceConfigurationProperty- See Also:
-
builder
-