AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the CreateDevicePool operation. Creates a device pool.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.DeviceFarm.AmazonDeviceFarmRequest
      Amazon.DeviceFarm.Model.CreateDevicePoolRequest

Namespace: Amazon.DeviceFarm.Model
Assembly: AWSSDK.DeviceFarm.dll
Version: 3.x.y.z

Syntax

C#
public class CreateDevicePoolRequest : AmazonDeviceFarmRequest
         IAmazonWebServiceRequest

The CreateDevicePoolRequest type exposes the following members

Constructors

NameDescription
Public Method CreateDevicePoolRequest()

Properties

NameTypeDescription
Public Property Description System.String

Gets and sets the property Description.

The device pool's description.

Public Property MaxDevices System.Int32

Gets and sets the property MaxDevices.

The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

By specifying the maximum number of devices, you can control the costs that you incur by running tests.

Public Property Name System.String

Gets and sets the property Name.

The device pool's name.

Public Property ProjectArn System.String

Gets and sets the property ProjectArn.

The ARN of the project for the device pool.

Public Property Rules System.Collections.Generic.List<Amazon.DeviceFarm.Model.Rule>

Gets and sets the property Rules.

The device pool's rules.

Examples

The following example creates a new device pool named MyDevicePool inside an existing project.

To create a new device pool


var client = new AmazonDeviceFarmClient();
var response = client.CreateDevicePool(new CreateDevicePoolRequest 
{
    Name = "MyDevicePool", // A device pool contains related devices, such as devices that run only on Android or that run only on iOS.
    Description = "My Android devices",
    ProjectArn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", // You can get the project ARN by using the list-projects CLI command.
    Rules = new List<Rule> {
                    
    }
});

DevicePool devicePool = response.DevicePool;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5