interface KeyValuePairProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppRunner.CfnService.KeyValuePairProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_KeyValuePairProperty | 
  Java | software.amazon.awscdk.services.apprunner.CfnService.KeyValuePairProperty | 
  Python | aws_cdk.aws_apprunner.CfnService.KeyValuePairProperty | 
  TypeScript  | aws-cdk-lib » aws_apprunner » CfnService » KeyValuePairProperty | 
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 { aws_apprunner as apprunner } from 'aws-cdk-lib';
const keyValuePairProperty: apprunner.CfnService.KeyValuePairProperty = {
  name: 'name',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name? | string | The key name string to map to a value. | 
| value? | string | The value string to which the key name is mapped. | 
name?
Type:
string
(optional)
The key name string to map to a value.
value?
Type:
string
(optional)
The value string to which the key name is mapped.

 .NET
 Go
 Java
 Python
 TypeScript