Show / Hide Table of Contents

Class CfnTestGridProjectProps

Properties for defining a CfnTestGridProject.

Inheritance
object
CfnTestGridProjectProps
Implements
ICfnTestGridProjectProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DeviceFarm
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTestGridProjectProps : ICfnTestGridProjectProps
Syntax (vb)
Public Class CfnTestGridProjectProps Implements ICfnTestGridProjectProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html

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 for defining a CfnTestGridProject.

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()

Properties for defining a CfnTestGridProject.

public CfnTestGridProjectProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html

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"
                 }
             };

Properties

Description

A human-readable description for the project.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-description

Name

A human-readable name for the project.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-name

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-tags

VpcConfig

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

public object? VpcConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-vpcconfig

Implements

ICfnTestGridProjectProps
Back to top Generated by DocFX