interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnDatasetPropsMixin.S3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnDatasetPropsMixin_S3SourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnDatasetPropsMixin.S3SourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnDatasetPropsMixin.S3SourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnDatasetPropsMixin » S3SourceProperty |
S3 location of a JSONL file containing dataset examples.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const s3SourceProperty: bedrockagentcore.CfnDatasetPropsMixin.S3SourceProperty = {
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | S3 URI of the JSONL file (e.g. s3://my-bucket/path/to/examples.jsonl). |
s3Uri?
Type:
string
(optional)
S3 URI of the JSONL file (e.g. s3://my-bucket/path/to/examples.jsonl).

.NET
Go
Java
Python
TypeScript