Class CfnServicePropsMixin.KeyValuePairProperty
Describes a key-value pair, which is a string-to-string mapping.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppRunner
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnServicePropsMixin.KeyValuePairProperty : CfnServicePropsMixin.IKeyValuePairProperty
Syntax (vb)
Public Class CfnServicePropsMixin.KeyValuePairProperty Implements CfnServicePropsMixin.IKeyValuePairProperty
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.CfnPropertyMixins.AWS.AppRunner;
var keyValuePairProperty = new KeyValuePairProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
| KeyValuePairProperty() | Describes a key-value pair, which is a string-to-string mapping. |
Properties
| Name | The key name string to map to a value. |
| Value | The value string to which the key name is mapped. |
Constructors
KeyValuePairProperty()
Describes a key-value pair, which is a string-to-string mapping.
public KeyValuePairProperty()
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.CfnPropertyMixins.AWS.AppRunner;
var keyValuePairProperty = new KeyValuePairProperty {
Name = "name",
Value = "value"
};
Properties
Name
The key name string to map to a value.
public string? Name { get; set; }
Property Value
Remarks
Value
The value string to which the key name is mapped.
public string? Value { get; set; }