Skip to content

Update Eks Anywhere Subscription

eks_update_eks_anywhere_subscription R Documentation

Update an EKS Anywhere Subscription

Description

Update an EKS Anywhere Subscription. Only auto renewal and tags can be updated after subscription creation.

Usage

eks_update_eks_anywhere_subscription(id, autoRenew, clientRequestToken)

Arguments

id

[required] The ID of the subscription.

autoRenew

[required] A boolean indicating whether or not to automatically renew the subscription.

clientRequestToken

Unique, case-sensitive identifier to ensure the idempotency of the request.

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$update_eks_anywhere_subscription(
  id = "string",
  autoRenew = TRUE|FALSE,
  clientRequestToken = "string"
)