interface ExperimentTemplateTargetFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FIS.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfis#CfnExperimentTemplatePropsMixin_ExperimentTemplateTargetFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fis.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_fis.CfnExperimentTemplatePropsMixin.ExperimentTemplateTargetFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fis » 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 { aws_fis as fis } from '@aws-cdk/cfn-property-mixins';
const experimentTemplateTargetFilterProperty: fis.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