OBJECT

FeatureDetail

Description

Feature specific details for a cloud account.

link GraphQL Schema definition

  • type FeatureDetail {
  • # Feature enum.
  • feature: CloudAccountFeature!
  • # Role ARN for feature. This field has a non-empty value only for CFT-based
  • # accounts.
  • roleArn: String!
  • # Stack ARN for feature. This field has a non-empty value only for CFT-based
  • # accounts.
  • stackArn: String!
  • # Feature status for a cloud account.
  • status: CloudAccountStatus!
  • # AWS regions. The list will be non-empty for cloud accounts on AWS GovCloud and
  • # commercial clouds.
  • awsRegions: [AwsCloudAccountRegion!]!
  • # User ARN for feature. This field has a non-empty value only for accounts with an
  • # IAM user credential provider.
  • userArn: String
  • # IAM user access key for feature. This field has a non-empty value only for
  • # accounts with an IAM user credential provider.
  • accessKey: String
  • # Details for authentication server-based cloud accounts. This field is only
  • # applicable to the accounts in AWS DCA and LCK regions.
  • authServerDetail: AwsAuthServerDetail
  • # Permissions groups onboarded for the cloud accounts feature. Permissions groups
  • # will be present only for customer-managed cluster users.
  • permissionsGroups: [PermissionsGroup!]
  • }