Interface CfnDatasetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-04T12:52:26.051Z")
@Stability(Stable)
public interface CfnDatasetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDatasetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
Object examples;
CfnDatasetMixinProps cfnDatasetMixinProps = CfnDatasetMixinProps.builder()
.datasetName("datasetName")
.description("description")
.kmsKeyArn("kmsKeyArn")
.schemaType("schemaType")
.source(DataSourceTypeProperty.builder()
.inlineExamples(InlineExamplesSourceProperty.builder()
.examples(List.of(examples))
.build())
.s3Source(S3SourceProperty.builder()
.s3Uri("s3Uri")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetMixinPropsstatic final classAn implementation forCfnDatasetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatasetMixinProps.Builderbuilder()default StringHuman-readable name for the dataset.default StringA description of the dataset.default StringOptional AWS KMS key ARN for SSE-KMS on service S3 writes.default StringVersioned schema type governing the structure of examples.default ObjectSource of initial examples.getTags()A list of tags to assign to the dataset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetName
Human-readable name for the dataset.Unique within the account (case-insensitive). Immutable after creation.
- See Also:
-
getDescription
A description of the dataset.- See Also:
-
getKmsKeyArn
Optional AWS KMS key ARN for SSE-KMS on service S3 writes.- See Also:
-
getSchemaType
Versioned schema type governing the structure of examples.Immutable after creation.
- See Also:
-
getSource
Source of initial examples.Provide either inline examples or an S3 URI pointing to a JSONL file.
Returns union: either
IResolvableorCfnDatasetPropsMixin.DataSourceTypeProperty- See Also:
-
getTags
A list of tags to assign to the dataset.- See Also:
-
builder
- Returns:
- a
CfnDatasetMixinProps.BuilderofCfnDatasetMixinProps
-