Interface CfnTestGridProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestGridProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:08.218Z")
@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 classA builder forCfnTestGridProjectPropsstatic final classAn implementation forCfnTestGridProjectProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA 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 ObjectThe 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.Returns union: either
IResolvableorCfnTestGridProject.VpcConfigProperty- See Also:
-
builder
- Returns:
- a
CfnTestGridProjectProps.BuilderofCfnTestGridProjectProps
-