Interface CfnExperimentTemplate.ExperimentTemplateStopConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnExperimentTemplate.ExperimentTemplateStopConditionProperty.Jsii$Proxy
Enclosing class:
CfnExperimentTemplate

@Stability(Stable) public static interface CfnExperimentTemplate.ExperimentTemplateStopConditionProperty extends software.amazon.jsii.JsiiSerializable
Specifies a stop condition for an experiment template.

For more information, see Stop conditions in the AWS Fault Injection Service User Guide .

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.fis.*;
 ExperimentTemplateStopConditionProperty experimentTemplateStopConditionProperty = ExperimentTemplateStopConditionProperty.builder()
         .source("source")
         // the properties below are optional
         .value("value")
         .build();
 

See Also: