interface ExperimentTemplateTargetFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/mixins#CfnExperimentTemplatePropsMixin_ExperimentTemplateTargetFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
Python | aws_cdk.mixins_preview.aws_fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fis » mixins » CfnExperimentTemplatePropsMixin » ExperimentTemplateTargetFilterProperty |
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 { mixins as fis_mixins } from '@aws-cdk/mixins-preview/aws-fis';
const experimentTemplateTargetFilterProperty: fis_mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty = {
path: 'path',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| path? | string | The attribute path for the filter. |
| values? | string[] | The attribute values for the filter. |
path?
Type:
string
(optional)
The attribute path for the filter.
values?
Type:
string[]
(optional)
The attribute values for the filter.

.NET
Go
Java
Python
TypeScript