CfnExperimentRunMixinProps
- class aws_cdk.cfn_property_mixins.aws_appconfig.CfnExperimentRunMixinProps(*, application_identifier=None, description=None, experiment_definition_identifier=None, exposure_percentage=None, tags=None, treatment_overrides=None)
Bases:
objectProperties for CfnExperimentRunPropsMixin.
- Parameters:
application_identifier (
Optional[str]) – The application name or ID used to create the experiment run.description (
Optional[str]) – Description of the experiment run.experiment_definition_identifier (
Optional[str]) – The experiment definition name or ID used to create the experiment run.exposure_percentage (
Union[int,float,None]) – Percentage of traffic exposed to the experiment (0-100).tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags to associate with the experiment run.treatment_overrides (
Union[IResolvable,TreatmentOverridesProperty,Dict[str,Any],None]) – Treatment overrides for specific entities.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_appconfig as appconfig cfn_experiment_run_mixin_props = appconfig.CfnExperimentRunMixinProps( application_identifier="applicationIdentifier", description="description", experiment_definition_identifier="experimentDefinitionIdentifier", exposure_percentage=123, tags=[CfnTag( key="key", value="value" )], treatment_overrides=appconfig.CfnExperimentRunPropsMixin.TreatmentOverridesProperty( inline={ "inline_key": "inline" } ) )
Attributes
- application_identifier
The application name or ID used to create the experiment run.
- description
Description of the experiment run.
- experiment_definition_identifier
The experiment definition name or ID used to create the experiment run.
- exposure_percentage
Percentage of traffic exposed to the experiment (0-100).
- tags
Tags to associate with the experiment run.
- treatment_overrides
Treatment overrides for specific entities.