Interface CfnDatasetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:33.339Z")
@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.rekognition.*;
CfnDatasetMixinProps cfnDatasetMixinProps = CfnDatasetMixinProps.builder()
.datasetType("datasetType")
.projectArn("projectArn")
.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 StringThe type of the dataset.default StringThe ARN of the project to which the dataset belongs.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetType
The type of the dataset.Specify TRAIN to create a training dataset. Specify TEST to create a test dataset.
- See Also:
-
getProjectArn
The ARN of the project to which the dataset belongs.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnDatasetMixinProps.BuilderofCfnDatasetMixinProps
-