Class CfnBackupSelection.ConditionParameterProperty
Includes information about tags you define to assign tagged resources to a backup plan.
Inheritance
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConditionParameterProperty : Object, CfnBackupSelection.IConditionParameterProperty
Syntax (vb)
Public Class ConditionParameterProperty
Inherits Object
Implements 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
Constructors
Condition |
Properties
Condition |
The key in a key-value pair. |
Condition |
The value in a key-value pair. |
Constructors
ConditionParameterProperty()
public ConditionParameterProperty()
Properties
ConditionKey
The key in a key-value pair.
public string ConditionKey { get; set; }
Property Value
System.
Remarks
For example, in the tag Department: Accounting
, Department
is the key.
ConditionValue
The value in a key-value pair.
public string ConditionValue { get; set; }
Property Value
System.
Remarks
For example, in the tag Department: Accounting
, Accounting
is the value.