Show / Hide Table of Contents

Class CfnRestoreTestingSelection.KeyValueProperty

Pair of two related strings.

Inheritance
object
CfnRestoreTestingSelection.KeyValueProperty
Implements
CfnRestoreTestingSelection.IKeyValueProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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: + - = . _ : /

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingselection-keyvalue.html

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: + - = . _ : /

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingselection-keyvalue.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingselection-keyvalue.html#cfn-backup-restoretestingselection-keyvalue-key

Value

The tag value.

public string Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingselection-keyvalue.html#cfn-backup-restoretestingselection-keyvalue-value

Implements

CfnRestoreTestingSelection.IKeyValueProperty
Back to top Generated by DocFX