interface KeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.KeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_KeyValuePairProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.KeyValuePairProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.KeyValuePairProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » KeyValuePairProperty |
A key-value pair object.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const keyValuePairProperty: ecs.CfnExpressGatewayService.KeyValuePairProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the key-value pair. |
| value | string | The value of the key-value pair. |
name
Type:
string
The name of the key-value pair.
For environment variables, this is the name of the environment variable.
value
Type:
string
The value of the key-value pair.
For environment variables, this is the value of the environment variable.

.NET
Go
Java
Python
TypeScript