interface ProtectedResourceConditionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnRestoreTestingSelectionPropsMixin_ProtectedResourceConditionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnRestoreTestingSelectionPropsMixin.ProtectedResourceConditionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » 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 { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
const protectedResourceConditionsProperty: backup_mixins.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