Skip to content

Describe Account Subscription

quicksight_describe_account_subscription R Documentation

Use the DescribeAccountSubscription operation to receive a description of an Amazon QuickSight account's subscription

Description

Use the DescribeAccountSubscription operation to receive a description of an Amazon QuickSight account's subscription. A successful API call returns an AccountInfo object that includes an account's name, subscription status, authentication type, edition, and notification email address.

Usage

quicksight_describe_account_subscription(AwsAccountId)

Arguments

AwsAccountId

[required] The Amazon Web Services account ID associated with your Amazon QuickSight account.

Value

A list with the following syntax:

list(
  AccountInfo = list(
    AccountName = "string",
    Edition = "STANDARD"|"ENTERPRISE"|"ENTERPRISE_AND_Q",
    NotificationEmail = "string",
    AuthenticationType = "string",
    AccountSubscriptionStatus = "string",
    IAMIdentityCenterInstanceArn = "string"
  ),
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$describe_account_subscription(
  AwsAccountId = "string"
)