CfnTestGridProjectProps
- class aws_cdk.aws_devicefarm.CfnTestGridProjectProps(*, name, description=None, tags=None, vpc_config=None)
Bases:
objectProperties for defining a
CfnTestGridProject.- Parameters:
name (
str) – A human-readable name for the project.description (
Optional[str]) – A human-readable description for the project.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag in the guide .vpc_config (
Union[IResolvable,VpcConfigProperty,Dict[str,Any],None]) – The VPC security groups and subnets that are attached to a project.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_devicefarm as devicefarm cfn_test_grid_project_props = devicefarm.CfnTestGridProjectProps( name="name", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )], vpc_config=devicefarm.CfnTestGridProject.VpcConfigProperty( security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], vpc_id="vpcId" ) )
Attributes
- 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.
For more information, see Tag in the guide .
- vpc_config
The VPC security groups and subnets that are attached to a project.