interface EnvironmentVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DeviceFarm.CfnProject.EnvironmentVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnProject_EnvironmentVariableProperty |
Java | software.amazon.awscdk.services.devicefarm.CfnProject.EnvironmentVariableProperty |
Python | aws_cdk.aws_devicefarm.CfnProject.EnvironmentVariableProperty |
TypeScript | aws-cdk-lib » aws_devicefarm » CfnProject » EnvironmentVariableProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devicefarm as devicefarm } from 'aws-cdk-lib';
const environmentVariableProperty: devicefarm.CfnProject.EnvironmentVariableProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| value | string |
name
Type:
string
value
Type:
string

.NET
Go
Java
Python
TypeScript