Interface CfnExperimentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:25.892Z")
@Stability(Stable)
public interface CfnExperimentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExperimentPropsMixin.
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.sagemaker.*;
CfnExperimentMixinProps cfnExperimentMixinProps = CfnExperimentMixinProps.builder()
.description("description")
.displayName("displayName")
.experimentName("experimentName")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentMixinPropsstatic final classAn implementation forCfnExperimentMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getExperimentName
The name of the experiment.Must be unique in your AWS account and is not case-sensitive.
- See Also:
-
getTags
A list of tags to associate with the experiment.- See Also:
-
builder
- Returns:
- a
CfnExperimentMixinProps.BuilderofCfnExperimentMixinProps
-