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!]
  • # The internal ID of the IAM pair corresponds to the feature. The ID can be
  • # non-empty only for the DATA_CENTER_ROLE_BASED_ARCHIVAL feature.
  • awsIamPairId: String
  • # The name of the IAM pair corresponds to the feature. The name can be non-empty
  • # only for the DATA_CENTER_ROLE_BASED_ARCHIVAL feature.
  • iamPairName: String
  • }