Interface CfnExperimentTemplate.ExperimentTemplateTargetFilterProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.ExperimentTemplateTargetFilterProperty extends software.amazon.jsii.JsiiSerializable
Specifies a filter used for the target resource input in an experiment template.

For more information, see Resource filters 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.*;
 ExperimentTemplateTargetFilterProperty experimentTemplateTargetFilterProperty = ExperimentTemplateTargetFilterProperty.builder()
         .path("path")
         .values(List.of("values"))
         .build();
 

See Also: