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.

Represents the result of a create device pool request.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.DeviceFarm.Model.CreateDevicePoolResponse

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

Syntax

C#
public class CreateDevicePoolResponse : AmazonWebServiceResponse

The CreateDevicePoolResponse type exposes the following members

Constructors

NameDescription
Public Method CreateDevicePoolResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property DevicePool Amazon.DeviceFarm.Model.DevicePool

Gets and sets the property DevicePool.

The newly created device pool.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5