Interface CfnExperimentRunMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentRunMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:51:58.084Z")
@Stability(Stable)
public interface CfnExperimentRunMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExperimentRunPropsMixin.
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.appconfig.*;
CfnExperimentRunMixinProps cfnExperimentRunMixinProps = CfnExperimentRunMixinProps.builder()
.applicationIdentifier("applicationIdentifier")
.description("description")
.experimentDefinitionIdentifier("experimentDefinitionIdentifier")
.exposurePercentage(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.treatmentOverrides(TreatmentOverridesProperty.builder()
.inline(Map.of(
"inlineKey", "inline"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentRunMixinPropsstatic final classAn implementation forCfnExperimentRunMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe application name or ID used to create the experiment run.default StringDescription of the experiment run.default StringThe experiment definition name or ID used to create the experiment run.default NumberPercentage of traffic exposed to the experiment (0-100).getTags()Tags to associate with the experiment run.default ObjectTreatment overrides for specific entities.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationIdentifier
The application name or ID used to create the experiment run.- See Also:
-
getDescription
Description of the experiment run.- See Also:
-
getExperimentDefinitionIdentifier
The experiment definition name or ID used to create the experiment run.- See Also:
-
getExposurePercentage
Percentage of traffic exposed to the experiment (0-100).- See Also:
-
getTags
Tags to associate with the experiment run.- See Also:
-
getTreatmentOverrides
Treatment overrides for specific entities.Returns union: either
IResolvableorCfnExperimentRunPropsMixin.TreatmentOverridesProperty- See Also:
-
builder
- Returns:
- a
CfnExperimentRunMixinProps.BuilderofCfnExperimentRunMixinProps
-