/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export type BillingGroupStatus = "ACTIVE" | "PRIMARY_ACCOUNT_MISSING"; /** * A billing group is a set of linked account which belong to the same end customer. It can be seen as a virtual consolidated billing family. */ export interface AwsBillingconductorBillinggroup { /** * Billing Group ARN */ Arn?: string; Name: string; Description?: string; /** * This account will act as a virtual payer account of the billing group */ PrimaryAccountId: string; ComputationPreference: ComputationPreference; AccountGrouping: AccountGrouping; /** * Number of accounts in the billing group */ Size?: number; Status?: BillingGroupStatus; StatusReason?: string; /** * Creation timestamp in UNIX epoch time format */ CreationTime?: number; /** * Latest modified timestamp in UNIX epoch time format */ LastModifiedTime?: number; Tags?: Tag[]; } export interface ComputationPreference { /** * ARN of the attached pricing plan */ PricingPlanArn: string; } export interface AccountGrouping { /** * @minItems 1 */ LinkedAccountIds: [string, ...string[]]; } export interface Tag { Key: string; Value: string; }