Namespace Pulumi.Aws.DeviceFarm
Classes
Project
Provides a resource to manage AWS Device Farm Projects. Please keep in mind that this feature is only supported on the "us-west-2" region. This resource will error if you try to create a project in another region.
For more information about Device Farm Projects, see the AWS Documentation on [Device Farm Projects][aws-get-project].
Basic Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var awesomeDevices = new Aws.DeviceFarm.Project("awesomeDevices", new Aws.DeviceFarm.ProjectArgs
{
});
}
}