interface InlineExamplesSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnDataset.InlineExamplesSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnDataset_InlineExamplesSourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnDataset.InlineExamplesSourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnDataset.InlineExamplesSourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnDataset » InlineExamplesSourceProperty |
Inline examples provided directly in the request body.
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';
declare const examples: any;
const inlineExamplesSourceProperty: bedrockagentcore.CfnDataset.InlineExamplesSourceProperty = {
examples: [examples],
};
Properties
| Name | Type | Description |
|---|---|---|
| examples | any[] | IResolvable | Examples to add. |
examples
Type:
any[] | IResolvable
Examples to add.
Each example is a free-form JSON document validated against the declared schemaType.

.NET
Go
Java
Python
TypeScript