Class CfnRestoreTestingSelection.KeyValueProperty
Pair of two related strings.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRestoreTestingSelection.KeyValueProperty : CfnRestoreTestingSelection.IKeyValueProperty
Syntax (vb)
Public Class CfnRestoreTestingSelection.KeyValueProperty Implements 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
Constructors
KeyValueProperty() | Pair of two related strings. |
Properties
Key | The tag key. |
Value | The tag value. |
Constructors
KeyValueProperty()
Pair of two related strings.
public KeyValueProperty()
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"
};
Properties
Key
The tag key.
public string Key { get; set; }
Property Value
Remarks
Value
The tag value.
public string Value { get; set; }