Skip to content

Describe Accelerator Offerings

elasticinference_describe_accelerator_offerings R Documentation

Amazon Elastic Inference is no longer available

Description

Amazon Elastic Inference is no longer available.

Describes the locations in which a given accelerator type or set of types is present in a given region.

Usage

elasticinference_describe_accelerator_offerings(locationType,
  acceleratorTypes)

Arguments

locationType

[required] The location type that you want to describe accelerator type offerings for. It can assume the following values: region: will return the accelerator type offering at the regional level. availability-zone: will return the accelerator type offering at the availability zone level. availability-zone-id: will return the accelerator type offering at the availability zone level returning the availability zone id.

acceleratorTypes

The list of accelerator types to describe.

Value

A list with the following syntax:

list(
  acceleratorTypeOfferings = list(
    list(
      acceleratorType = "string",
      locationType = "region"|"availability-zone"|"availability-zone-id",
      location = "string"
    )
  )
)

Request syntax

svc$describe_accelerator_offerings(
  locationType = "region"|"availability-zone"|"availability-zone-id",
  acceleratorTypes = list(
    "string"
  )
)