interface IntermediateStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataSource.IntermediateStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataSource_IntermediateStorageProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataSource.IntermediateStorageProperty |
Python | aws_cdk.aws_bedrock.CfnDataSource.IntermediateStorageProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataSource » IntermediateStorageProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const intermediateStorageProperty: bedrock.CfnDataSource.IntermediateStorageProperty = {
s3Location: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | An S3 bucket path. |
s3Location
Type:
IResolvable | S3
An S3 bucket path.

.NET
Go
Java
Python
TypeScript