Interface CfnExperimentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:11.314Z")
@Stability(Stable)
public interface CfnExperimentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExperiment.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
CfnExperimentProps cfnExperimentProps = CfnExperimentProps.builder()
.experimentName("experimentName")
// the properties below are optional
.description("description")
.displayName("displayName")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentPropsstatic final classAn implementation forCfnExperimentProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnExperimentProps.Builderbuilder()default StringThe description of the experiment.default StringThe name of the experiment as displayed.The name of the experiment.default List<CfnExperiment.TagsItemsProperty> getTags()A list of tags to associate with the experiment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExperimentName
The name of the experiment.Must be unique in your AWS account and is not case-sensitive.
- See Also:
-
getDescription
The description of the experiment.- See Also:
-
getDisplayName
The name of the experiment as displayed.The name does not need to be unique.
- See Also:
-
getTags
A list of tags to associate with the experiment.- See Also:
-
builder
- Returns:
- a
CfnExperimentProps.BuilderofCfnExperimentProps
-