aws-cdk-lib.aws_devicefarm.CfnTestGridProjectProps

interface CfnTestGridProjectProps

LanguageType name
.NETAmazon.CDK.AWS.DeviceFarm.CfnTestGridProjectProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnTestGridProjectProps
Javasoftware.amazon.awscdk.services.devicefarm.CfnTestGridProjectProps
Pythonaws_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

NameTypeDescription
namestringA human-readable name for the project.
description?stringA human-readable description for the project.
tags?CfnTag[]An array of key-value pairs to apply to this resource.
vpcConfig?IResolvable | VpcConfigPropertyThe 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: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag in the guide .


vpcConfig?

Type: IResolvable | VpcConfigProperty (optional)

The VPC security groups and subnets that are attached to a project.