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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.IntermediateStoragePropertystatic final classAn implementation forCfnDataSource.IntermediateStorageProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
An S3 bucket path.Returns union: either
IResolvableorCfnDataSource.S3LocationProperty- See Also:
-
builder
-