interface ConditionParameterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Backup.CfnBackupSelection.ConditionParameterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnBackupSelection_ConditionParameterProperty | 
|  Java | software.amazon.awscdk.services.backup.CfnBackupSelection.ConditionParameterProperty | 
|  Python | aws_cdk.aws_backup.CfnBackupSelection.ConditionParameterProperty | 
|  TypeScript | aws-cdk-lib»aws_backup»CfnBackupSelection»ConditionParameterProperty | 
Includes information about tags you define to assign tagged resources to a backup plan.
Include the prefix aws:ResourceTag in your tags. For example, "aws:ResourceTag/TagKey1": "Value1" .
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-lib';
const conditionParameterProperty: backup.CfnBackupSelection.ConditionParameterProperty = {
  conditionKey: 'conditionKey',
  conditionValue: 'conditionValue',
};
Properties
| Name | Type | Description | 
|---|---|---|
| condition | string | The key in a key-value pair. | 
| condition | string | The value in a key-value pair. | 
conditionKey?
Type:
string
(optional)
The key in a key-value pair.
For example, in the tag Department: Accounting , Department is the key.
conditionValue?
Type:
string
(optional)
The value in a key-value pair.
For example, in the tag Department: Accounting , Accounting is the value.
