interface KeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnExpressGatewayServicePropsMixin.KeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnExpressGatewayServicePropsMixin_KeyValuePairProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnExpressGatewayServicePropsMixin.KeyValuePairProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnExpressGatewayServicePropsMixin.KeyValuePairProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnExpressGatewayServicePropsMixin » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const keyValuePairProperty: ecs_mixins.CfnExpressGatewayServicePropsMixin.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
(optional)
The name of the key-value pair.
For environment variables, this is the name of the environment variable.
value?
Type:
string
(optional)
The value of the key-value pair.
For environment variables, this is the value of the environment variable.

.NET
Go
Java
Python
TypeScript