Class CfnVirtualNode.JsonFormatRefProperty
An object that represents the key value pairs for the JSON.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualNode.JsonFormatRefProperty : CfnVirtualNode.IJsonFormatRefProperty
Syntax (vb)
Public Class CfnVirtualNode.JsonFormatRefProperty Implements CfnVirtualNode.IJsonFormatRefProperty
Remarks
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.AppMesh;
var jsonFormatRefProperty = new JsonFormatRefProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
JsonFormatRefProperty() | An object that represents the key value pairs for the JSON. |
Properties
Key | The specified key for the JSON. |
Value | The specified value for the JSON. |
Constructors
JsonFormatRefProperty()
An object that represents the key value pairs for the JSON.
public JsonFormatRefProperty()
Remarks
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.AppMesh;
var jsonFormatRefProperty = new JsonFormatRefProperty {
Key = "key",
Value = "value"
};
Properties
Key
The specified key for the JSON.
public string Key { get; set; }
Property Value
Remarks
Value
The specified value for the JSON.
public string Value { get; set; }