Class CfnTestGridProjectMixinProps
Properties for CfnTestGridProjectPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTestGridProjectMixinProps : ICfnTestGridProjectMixinProps
Syntax (vb)
Public Class CfnTestGridProjectMixinProps Implements ICfnTestGridProjectMixinProps
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.CfnPropertyMixins.AWS.DeviceFarm;
var cfnTestGridProjectMixinProps = new CfnTestGridProjectMixinProps {
Description = "description",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
VpcConfig = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
};
Synopsis
Constructors
| CfnTestGridProjectMixinProps() | Properties for CfnTestGridProjectPropsMixin. |
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
CfnTestGridProjectMixinProps()
Properties for CfnTestGridProjectPropsMixin.
public CfnTestGridProjectMixinProps()
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.CfnPropertyMixins.AWS.DeviceFarm;
var cfnTestGridProjectMixinProps = new CfnTestGridProjectMixinProps {
Description = "description",
Name = "name",
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
Remarks
Name
A human-readable name for the project.
public string? Name { get; set; }
Property Value
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; }