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 PurchaseOffering operation. Immediately purchases offerings for an AWS account. Offerings renew with the latest total purchased quantity for an offering, unless the renewal was overridden. The API returns a NotEligible error if the user is not permitted to invoke the operation. If you must be able to invoke this operation, contact aws-devicefarm-support@amazon.com.

Inheritance Hierarchy

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

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

Syntax

C#
public class PurchaseOfferingRequest : AmazonDeviceFarmRequest
         IAmazonWebServiceRequest

The PurchaseOfferingRequest type exposes the following members

Constructors

NameDescription
Public Method PurchaseOfferingRequest()

Properties

NameTypeDescription
Public Property OfferingId System.String

Gets and sets the property OfferingId.

The ID of the offering.

Public Property OfferingPromotionId System.String

Gets and sets the property OfferingPromotionId.

The ID of the offering promotion to be applied to the purchase.

Public Property Quantity System.Int32

Gets and sets the property Quantity.

The number of device slots to purchase in an offering request.

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