Interface CfnBackupSelection.IConditionParameterProperty
Includes information about tags you define to assign tagged resources to a backup plan.
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBackupSelection.IConditionParameterProperty
Syntax (vb)
Public Interface CfnBackupSelection.IConditionParameterProperty
Remarks
Include the prefix aws:ResourceTag in your tags. For example, "aws:ResourceTag/TagKey1": "Value1" .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Backup;
var conditionParameterProperty = new ConditionParameterProperty {
ConditionKey = "conditionKey",
ConditionValue = "conditionValue"
};
Synopsis
Properties
| ConditionKey | The key in a key-value pair. |
| ConditionValue | The value in a key-value pair. |
Properties
ConditionKey
The key in a key-value pair.
string? ConditionKey { get; }
Property Value
Remarks
For example, in the tag Department: Accounting , Department is the key.
ConditionValue
The value in a key-value pair.
string? ConditionValue { get; }
Property Value
Remarks
For example, in the tag Department: Accounting , Accounting is the value.