Skip to content

Describe Account Modifications

workspaces_describe_account_modifications R Documentation

Retrieves a list that describes modifications to the configuration of Bring Your Own License (BYOL) for the specified account

Description

Retrieves a list that describes modifications to the configuration of Bring Your Own License (BYOL) for the specified account.

Usage

workspaces_describe_account_modifications(NextToken)

Arguments

NextToken

If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.

Value

A list with the following syntax:

list(
  AccountModifications = list(
    list(
      ModificationState = "PENDING"|"COMPLETED"|"FAILED",
      DedicatedTenancySupport = "ENABLED"|"DISABLED",
      DedicatedTenancyManagementCidrRange = "string",
      StartTime = as.POSIXct(
        "2015-01-01"
      ),
      ErrorCode = "string",
      ErrorMessage = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_account_modifications(
  NextToken = "string"
)