interface CfnTestGridProjectProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DeviceFarm.CfnTestGridProjectProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnTestGridProjectProps |
Java | software.amazon.awscdk.services.devicefarm.CfnTestGridProjectProps |
Python | aws_cdk.aws_devicefarm.CfnTestGridProjectProps |
TypeScript | aws-cdk-lib » aws_devicefarm » CfnTestGridProjectProps |
Properties for defining a CfnTestGridProject
.
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 cfnTestGridProjectProps: devicefarm.CfnTestGridProjectProps = {
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
};
Properties
Name | Type | Description |
---|---|---|
name | string | A human-readable name for the project. |
description? | string | A human-readable description 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. |
name
Type:
string
A human-readable name for the project.
description?
Type:
string
(optional)
A human-readable description 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.