Interface CfnExperimentRunProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentRunProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:51:37.974Z")
@Stability(Stable)
public interface CfnExperimentRunProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExperimentRun.
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.appconfig.*;
CfnExperimentRunProps cfnExperimentRunProps = CfnExperimentRunProps.builder()
.applicationIdentifier("applicationIdentifier")
.experimentDefinitionIdentifier("experimentDefinitionIdentifier")
.exposurePercentage(123)
// the properties below are optional
.description("description")
.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 forCfnExperimentRunPropsstatic final classAn implementation forCfnExperimentRunProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The application name or ID used to create the experiment run.default StringDescription of the experiment run.The experiment definition name or ID used to create the experiment run.Percentage 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:
-
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:
-
getDescription
Description of the experiment run.- See Also:
-
getTags
Tags to associate with the experiment run.- See Also:
-
getTreatmentOverrides
Treatment overrides for specific entities.Returns union: either
IResolvableorCfnExperimentRun.TreatmentOverridesProperty- See Also:
-
builder
- Returns:
- a
CfnExperimentRunProps.BuilderofCfnExperimentRunProps
-