interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnDataset.S3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnDataset_S3SourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnDataset.S3SourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnDataset.S3SourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnDataset » 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-lib';
const s3SourceProperty: bedrockagentcore.CfnDataset.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
S3 URI of the JSONL file (e.g. s3://my-bucket/path/to/examples.jsonl).

.NET
Go
Java
Python
TypeScript