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.

The result of the purchase offering (for example, success or failure).

Inheritance Hierarchy

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

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

Syntax

C#
public class PurchaseOfferingResponse : AmazonWebServiceResponse

The PurchaseOfferingResponse type exposes the following members

Constructors

NameDescription
Public Method PurchaseOfferingResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property OfferingTransaction Amazon.DeviceFarm.Model.OfferingTransaction

Gets and sets the property OfferingTransaction.

Represents the offering transaction for the purchase result.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

The following example purchases a specific device slot offering.

To purchase a device slot offering


var client = new AmazonDeviceFarmClient();
var response = client.PurchaseOffering(new PurchaseOfferingRequest 
{
    OfferingId = "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", // You can get the offering ID by using the list-offerings CLI command.
    Quantity = 1
});

OfferingTransaction offeringTransaction = response.OfferingTransaction;

            

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