Skip to content

Delete Eks Anywhere Subscription

eks_delete_eks_anywhere_subscription R Documentation

Deletes an expired or inactive subscription

Description

Deletes an expired or inactive subscription. Deleting inactive subscriptions removes them from the Amazon Web Services Management Console view and from list/describe API responses. Subscriptions can only be cancelled within 7 days of creation and are cancelled by creating a ticket in the Amazon Web Services Support Center.

Usage

eks_delete_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$delete_eks_anywhere_subscription(
  id = "string"
)