Interface CfnTestGridProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestGridProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-12T12:32:00.848Z")
@Stability(Stable)
public interface CfnTestGridProjectProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devicefarm.*; CfnTestGridProjectProps cfnTestGridProjectProps = CfnTestGridProjectProps.builder() .name("name") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .vpcConfig(VpcConfigProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .vpcId("vpcId") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTestGridProjectProps
static final class
An implementation forCfnTestGridProjectProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A human-readable description for the project.getName()
A human-readable name for the project.getTags()
An array of key-value pairs to apply to this resource.default Object
The VPC security groups and subnets that are attached to a project.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A human-readable name for the project.- See Also:
-
getDescription
A human-readable description for the project.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag in the guide .
- See Also:
-
getVpcConfig
The VPC security groups and subnets that are attached to a project.- See Also:
-
builder
- Returns:
- a
CfnTestGridProjectProps.Builder
ofCfnTestGridProjectProps
-