Class CfnTestGridProjectProps
Properties for defining a CfnTestGridProject
.
Inheritance
System.Object
CfnTestGridProjectProps
Implements
Namespace: Amazon.CDK.AWS.DeviceFarm
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTestGridProjectProps : Object, ICfnTestGridProjectProps
Syntax (vb)
Public Class CfnTestGridProjectProps
Inherits Object
Implements ICfnTestGridProjectProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DeviceFarm;
var cfnTestGridProjectProps = new CfnTestGridProjectProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
VpcConfig = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
};
Synopsis
Constructors
CfnTestGridProjectProps() |
Properties
Description | A human-readable description for the project. |
Name | A human-readable name for the project. |
Tags | An array of key-value pairs to apply to this resource. |
VpcConfig | The VPC security groups and subnets that are attached to a project. |
Constructors
CfnTestGridProjectProps()
public CfnTestGridProjectProps()
Properties
Description
A human-readable description for the project.
public string Description { get; set; }
Property Value
System.String
Remarks
Name
A human-readable name for the project.
public string Name { get; set; }
Property Value
System.String
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For more information, see Tag in the guide .
VpcConfig
The VPC security groups and subnets that are attached to a project.
public object VpcConfig { get; set; }
Property Value
System.Object