Skip to content

List Supported Instance Types

emr_list_supported_instance_types R Documentation

A list of the instance types that Amazon EMR supports

Description

A list of the instance types that Amazon EMR supports. You can filter the list by Amazon Web Services Region and Amazon EMR release.

Usage

emr_list_supported_instance_types(ReleaseLabel, Marker)

Arguments

ReleaseLabel

[required] The Amazon EMR release label determines the versions of open-source application packages that Amazon EMR has installed on the cluster. Release labels are in the format emr-x.x.x, where x.x.x is an Amazon EMR release number such as ⁠emr-6.10.0⁠. For more information about Amazon EMR releases and their included application versions and features, see the Amazon EMR Release Guide .

Marker

The pagination token that marks the next set of results to retrieve.

Value

A list with the following syntax:

list(
  SupportedInstanceTypes = list(
    list(
      Type = "string",
      MemoryGB = 123.0,
      StorageGB = 123,
      VCPU = 123,
      Is64BitsOnly = TRUE|FALSE,
      InstanceFamilyId = "string",
      EbsOptimizedAvailable = TRUE|FALSE,
      EbsOptimizedByDefault = TRUE|FALSE,
      NumberOfDisks = 123,
      EbsStorageOnly = TRUE|FALSE,
      Architecture = "string"
    )
  ),
  Marker = "string"
)

Request syntax

svc$list_supported_instance_types(
  ReleaseLabel = "string",
  Marker = "string"
)