CfnTestGridProjectMixinProps

class aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnTestGridProjectMixinProps(*, description=None, name=None, tags=None, vpc_config=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-description

name

A human-readable name for the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-name

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag in the guide .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-tags

vpc_config

The VPC security groups and subnets that are attached to a project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-testgridproject.html#cfn-devicefarm-testgridproject-vpcconfig