/* 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. */ /** * Pricing Rule ARN */ export type PricingRuleArn = string; /** * Pricing Plan enables you to customize your billing details consistent with the usage that accrues in each of your billing groups. */ export interface AwsBillingconductorPricingplan { /** * Pricing Plan ARN */ Arn?: string; Name: string; PricingRuleArns?: PricingRuleArn[]; /** * Number of associated pricing rules */ Size?: number; Description?: string; /** * Creation timestamp in UNIX epoch time format */ CreationTime?: number; /** * Latest modified timestamp in UNIX epoch time format */ LastModifiedTime?: number; Tags?: Tag[]; } export interface Tag { Key: string; Value: string; }