CfnTestGridProjectMixinProps
- class aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnTestGridProjectMixinProps(*, description=None, name=None, tags=None, vpc_config=None)
Bases:
objectProperties for CfnTestGridProjectPropsMixin.
- Parameters:
description (
Optional[str]) – A human-readable description for the project.name (
Optional[str]) – A human-readable name 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.mixins_preview.aws_devicefarm import mixins as devicefarm_mixins cfn_test_grid_project_mixin_props = devicefarm_mixins.CfnTestGridProjectMixinProps( description="description", name="name", tags=[CfnTag( key="key", value="value" )], vpc_config=devicefarm_mixins.CfnTestGridProjectPropsMixin.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.