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