Skip to content

Describe Eks Anywhere Subscription

eks_describe_eks_anywhere_subscription R Documentation

Returns descriptive information about a subscription

Description

Returns descriptive information about a subscription.

Usage

eks_describe_eks_anywhere_subscription(id)

Arguments

id

[required] The ID of the subscription.

Value

A list with the following syntax:

list(
  subscription = list(
    id = "string",
    arn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    effectiveDate = as.POSIXct(
      "2015-01-01"
    ),
    expirationDate = as.POSIXct(
      "2015-01-01"
    ),
    licenseQuantity = 123,
    licenseType = "Cluster",
    term = list(
      duration = 123,
      unit = "MONTHS"
    ),
    status = "string",
    autoRenew = TRUE|FALSE,
    licenseArns = list(
      "string"
    ),
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$describe_eks_anywhere_subscription(
  id = "string"
)