interface IntermediateStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.IntermediateStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_IntermediateStorageProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.IntermediateStorageProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.IntermediateStorageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const intermediateStorageProperty: bedrock_mixins.CfnDataSourcePropsMixin.IntermediateStorageProperty = {
s3Location: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | An S3 bucket path. |
s3Location?
Type:
IResolvable | S3
(optional)
An S3 bucket path.

.NET
Go
Java
Python
TypeScript