Interface CfnDataSource.IntermediateStorageProperty

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

@Stability(Stable) public static interface CfnDataSource.IntermediateStorageProperty extends software.amazon.jsii.JsiiSerializable
A location for storing content from data sources temporarily as it is processed by custom components in the ingestion pipeline.

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.*;
 IntermediateStorageProperty intermediateStorageProperty = IntermediateStorageProperty.builder()
         .s3Location(S3LocationProperty.builder()
                 .uri("uri")
                 .build())
         .build();
 

See Also: