interface KeyValuePairProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppRunner.CfnService.KeyValuePairProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_KeyValuePairProperty |
![]() | software.amazon.awscdk.services.apprunner.CfnService.KeyValuePairProperty |
![]() | aws_cdk.aws_apprunner.CfnService.KeyValuePairProperty |
![]() | 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.