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: