Interface CfnService.KeyValuePairProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.KeyValuePairProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.KeyValuePairProperty
extends software.amazon.jsii.JsiiSerializable
Describes a key-value pair, which is a string-to-string mapping.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.apprunner.*; KeyValuePairProperty keyValuePairProperty = KeyValuePairProperty.builder() .name("name") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.KeyValuePairProperty
static final class
An implementation forCfnService.KeyValuePairProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The key name string to map to a value. -
getValue
The value string to which the key name is mapped. -
builder
-