Skip to content

Describe Accelerator Offerings

elasticinference_describe_accelerator_offerings R Documentation

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

Description

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

February 15, 2023: Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

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"
  )
)