Interface CfnRestoreTestingSelection.IKeyValueProperty
Pair of two related strings.
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRestoreTestingSelection.IKeyValueProperty
Syntax (vb)
Public Interface CfnRestoreTestingSelection.IKeyValueProperty
Remarks
Allowed characters are letters, white space, and numbers that can be represented in UTF-8 and the following characters: + - = . _ : /
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 keyValueProperty = new KeyValueProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
| Key | The tag key. |
| Value | The tag value. |
Properties
Key
The tag key.
string Key { get; }
Property Value
Remarks
Value
The tag value.
string Value { get; }