aws-cdk-lib.aws_apprunner.CfnService.KeyValuePairProperty

interface KeyValuePairProperty

LanguageType name
.NETAmazon.CDK.AWS.AppRunner.CfnService.KeyValuePairProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_KeyValuePairProperty
Javasoftware.amazon.awscdk.services.apprunner.CfnService.KeyValuePairProperty
Pythonaws_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

NameTypeDescription
name?stringThe key name string to map to a value.
value?stringThe 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.