Skip to main content

release_labels

Creates, updates, deletes, gets or lists a release_labels resource.

Overview

Namerelease_labels
TypeResource
Idaws.emr.release_labels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
applicationsarrayThe list of applications available for the target release label. Name is the name of the application. Version is the concise version of the application.
available_os_releasesarrayThe list of available Amazon Linux release versions for an Amazon EMR release. Contains a Label field that is formatted as shown in Amazon Linux 2 Release Notes . For example, 2.0.20220218.1.
next_tokenstringThe pagination token. Reserved for future use. Currently set to null.
release_labelstringThe target release label described in the response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_release_labelselectregionProvides Amazon EMR release label details, such as the releases available the Region where the API request is run, and the available applications for a specific Amazon EMR release label. Can also list Amazon EMR releases that support a specified version of Spark.
list_release_labelsselectregionRetrieves release labels of Amazon EMR services in the Region where the API is called.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Provides Amazon EMR release label details, such as the releases available the Region where the API request is run, and the available applications for a specific Amazon EMR release label. Can also list Amazon EMR releases that support a specified version of Spark.

SELECT
applications,
available_os_releases,
next_token,
release_label
FROM aws.emr.release_labels
WHERE region = '{{ region }}' -- required
;