interface CfnTestGridProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DeviceFarm.Mixins.CfnTestGridProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevicefarm/mixins#CfnTestGridProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.devicefarm.mixins.CfnTestGridProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnTestGridProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_devicefarm » mixins » CfnTestGridProjectMixinProps |
Properties for CfnTestGridProjectPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devicefarm_mixins } from '@aws-cdk/mixins-preview/aws-devicefarm';
const cfnTestGridProjectMixinProps: devicefarm_mixins.CfnTestGridProjectMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A human-readable description for the project. |
| name? | string | A human-readable name for the project. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| vpc | IResolvable | Vpc | The VPC security groups and subnets that are attached to a project. |
description?
Type:
string
(optional)
A human-readable description for the project.
name?
Type:
string
(optional)
A human-readable name for the project.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag in the guide .
vpcConfig?
Type:
IResolvable | Vpc
(optional)
The VPC security groups and subnets that are attached to a project.

.NET
Go
Java
Python
TypeScript