interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DeviceFarm.Mixins.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevicefarm/mixins#CfnProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.devicefarm.mixins.CfnProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_devicefarm » mixins » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-project.html
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 cfnProjectMixinProps: devicefarm_mixins.CfnProjectMixinProps = {
defaultJobTimeoutMinutes: 123,
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| default | number | Sets the execution timeout value (in minutes) for a project. |
| name? | string | The project's name. |
| tags? | Cfn[] | The tags to add to the resource. |
| vpc | IResolvable | Vpc | The VPC security groups and subnets that are attached to a project. |
defaultJobTimeoutMinutes?
Type:
number
(optional)
Sets the execution timeout value (in minutes) for a project.
All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
name?
Type:
string
(optional)
The project's name.
tags?
Type:
Cfn[]
(optional)
The tags to add to the resource.
A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters. Tag values can have a maximum length of 256 characters.
vpcConfig?
Type:
IResolvable | Vpc
(optional)
The VPC security groups and subnets that are attached to a project.

.NET
Go
Java
Python
TypeScript