Describe Release Label
emr_describe_release_label | R Documentation |
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¶
Description¶
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.
Usage¶
emr_describe_release_label(ReleaseLabel, NextToken, MaxResults)
Arguments¶
ReleaseLabel |
The target release label to be described. |
NextToken |
The pagination token. Reserved for future use. Currently set to null. |
MaxResults |
Reserved for future use. Currently set to null. |
Value¶
A list with the following syntax:
list(
ReleaseLabel = "string",
Applications = list(
list(
Name = "string",
Version = "string"
)
),
NextToken = "string",
AvailableOSReleases = list(
list(
Label = "string"
)
)
)
Request syntax¶
svc$describe_release_label(
ReleaseLabel = "string",
NextToken = "string",
MaxResults = 123
)