interface ProtectedResourceConditionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnRestoreTestingSelectionPropsMixin_ProtectedResourceConditionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnRestoreTestingSelectionPropsMixin » ProtectedResourceConditionsProperty |
The conditions that you define for resources in your restore testing plan using tags.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from '@aws-cdk/cfn-property-mixins';
const protectedResourceConditionsProperty: backup.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty = {
stringEquals: [{
key: 'key',
value: 'value',
}],
stringNotEquals: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| string | IResolvable | (IResolvable | Key)[] | Filters the values of your tagged resources for only those resources that you tagged with the same value. |
| string | IResolvable | (IResolvable | Key)[] | Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. |
stringEquals?
Type:
IResolvable | (IResolvable | Key)[]
(optional)
Filters the values of your tagged resources for only those resources that you tagged with the same value.
Also called "exact matching."
stringNotEquals?
Type:
IResolvable | (IResolvable | Key)[]
(optional)
Filters the values of your tagged resources for only those resources that you tagged that do not have the same value.
Also called "negated matching."

.NET
Go
Java
Python
TypeScript