interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnDatasetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnDatasetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnDatasetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
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';
declare const examples: any;
const cfnDatasetMixinProps: bedrockagentcore.CfnDatasetMixinProps = {
datasetName: 'datasetName',
description: 'description',
kmsKeyArn: 'kmsKeyArn',
schemaType: 'schemaType',
source: {
inlineExamples: {
examples: [examples],
},
s3Source: {
s3Uri: 's3Uri',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | Human-readable name for the dataset. |
| description? | string | A description of the dataset. |
| kms | string | Optional AWS KMS key ARN for SSE-KMS on service S3 writes. |
| schema | string | Versioned schema type governing the structure of examples. |
| source? | IResolvable | Data | Source of initial examples. |
| tags? | Cfn[] | A list of tags to assign to the dataset. |
datasetName?
Type:
string
(optional)
Human-readable name for the dataset.
Unique within the account (case-insensitive). Immutable after creation.
description?
Type:
string
(optional)
A description of the dataset.
kmsKeyArn?
Type:
string
(optional)
Optional AWS KMS key ARN for SSE-KMS on service S3 writes.
schemaType?
Type:
string
(optional)
Versioned schema type governing the structure of examples.
Immutable after creation.
source?
Type:
IResolvable | Data
(optional)
Source of initial examples.
Provide either inline examples or an S3 URI pointing to a JSONL file.
tags?
Type:
Cfn[]
(optional)
A list of tags to assign to the dataset.

.NET
Go
Java
Python
TypeScript