Interface CfnProjectMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.037Z")
@Stability(Stable)
public interface CfnProjectMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnProjectPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.devicefarm.*;
CfnProjectMixinProps cfnProjectMixinProps = CfnProjectMixinProps.builder()
.defaultJobTimeoutMinutes(123)
.environmentVariables(List.of(EnvironmentVariableProperty.builder()
.name("name")
.value("value")
.build()))
.executionRoleArn("executionRoleArn")
.name("name")
.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 forCfnProjectMixinPropsstatic final classAn implementation forCfnProjectMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProjectMixinProps.Builderbuilder()default NumberSets the execution timeout value (in minutes) for a project.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnProjectPropsMixin.EnvironmentVariableProperty>default Stringdefault StringgetName()The project's name.getTags()The tags to add to the 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
-
getDefaultJobTimeoutMinutes
Sets the execution timeout value (in minutes) for a project.All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
- See Also:
-
getEnvironmentVariables
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnProjectPropsMixin.EnvironmentVariableProperty>- See Also:
-
getExecutionRoleArn
- See Also:
-
getName
The project's name.- See Also:
-
getTags
The tags to add to the resource.A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters. Tag values can have a maximum length of 256 characters.
- See Also:
-
getVpcConfig
The VPC security groups and subnets that are attached to a project.Returns union: either
IResolvableorCfnProjectPropsMixin.VpcConfigProperty- See Also:
-
builder
- Returns:
- a
CfnProjectMixinProps.BuilderofCfnProjectMixinProps
-