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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.KeyValuePairPropertystatic final classAn 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.- See Also:
-
getValue
The value string to which the key name is mapped.- See Also:
-
builder
-