@aws-sdk/client-billingconductor 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,21 +9,21 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  );
10
10
  }
11
11
  export interface AccountAssociationsListElement {
12
- AccountId?: string;
13
- BillingGroupArn?: string;
14
- AccountName?: string;
15
- AccountEmail?: string;
12
+ AccountId?: string | undefined;
13
+ BillingGroupArn?: string | undefined;
14
+ AccountName?: string | undefined;
15
+ AccountEmail?: string | undefined;
16
16
  }
17
17
  export interface AccountGrouping {
18
18
  LinkedAccountIds: string[] | undefined;
19
- AutoAssociate?: boolean;
19
+ AutoAssociate?: boolean | undefined;
20
20
  }
21
21
  export interface AssociateAccountsInput {
22
22
  Arn: string | undefined;
23
23
  AccountIds: string[] | undefined;
24
24
  }
25
25
  export interface AssociateAccountsOutput {
26
- Arn?: string;
26
+ Arn?: string | undefined;
27
27
  }
28
28
  export declare const ConflictExceptionReason: {
29
29
  readonly PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT";
@@ -40,14 +40,14 @@ export declare class ConflictException extends __BaseException {
40
40
  Message: string | undefined;
41
41
  ResourceId: string | undefined;
42
42
  ResourceType: string | undefined;
43
- Reason?: ConflictExceptionReason;
43
+ Reason?: ConflictExceptionReason | undefined;
44
44
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
45
45
  }
46
46
  export declare class InternalServerException extends __BaseException {
47
47
  readonly name: "InternalServerException";
48
48
  readonly $fault: "server";
49
49
  Message: string | undefined;
50
- RetryAfterSeconds?: number;
50
+ RetryAfterSeconds?: number | undefined;
51
51
  constructor(
52
52
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
53
53
  );
@@ -66,8 +66,8 @@ export declare class ServiceLimitExceededException extends __BaseException {
66
66
  readonly name: "ServiceLimitExceededException";
67
67
  readonly $fault: "client";
68
68
  Message: string | undefined;
69
- ResourceId?: string;
70
- ResourceType?: string;
69
+ ResourceId?: string | undefined;
70
+ ResourceType?: string | undefined;
71
71
  LimitCode: string | undefined;
72
72
  ServiceCode: string | undefined;
73
73
  constructor(
@@ -78,7 +78,7 @@ export declare class ThrottlingException extends __BaseException {
78
78
  readonly name: "ThrottlingException";
79
79
  readonly $fault: "client";
80
80
  Message: string | undefined;
81
- RetryAfterSeconds?: number;
81
+ RetryAfterSeconds?: number | undefined;
82
82
  constructor(
83
83
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
84
84
  );
@@ -155,8 +155,8 @@ export declare class ValidationException extends __BaseException {
155
155
  readonly name: "ValidationException";
156
156
  readonly $fault: "client";
157
157
  Message: string | undefined;
158
- Reason?: ValidationExceptionReason;
159
- Fields?: ValidationExceptionField[];
158
+ Reason?: ValidationExceptionReason | undefined;
159
+ Fields?: ValidationExceptionField[] | undefined;
160
160
  constructor(
161
161
  opts: __ExceptionOptionType<ValidationException, __BaseException>
162
162
  );
@@ -166,7 +166,7 @@ export interface AssociatePricingRulesInput {
166
166
  PricingRuleArns: string[] | undefined;
167
167
  }
168
168
  export interface AssociatePricingRulesOutput {
169
- Arn?: string;
169
+ Arn?: string | undefined;
170
170
  }
171
171
  export declare const AssociateResourceErrorReason: {
172
172
  readonly ILLEGAL_CUSTOMLINEITEM: "ILLEGAL_CUSTOMLINEITEM";
@@ -178,44 +178,44 @@ export declare const AssociateResourceErrorReason: {
178
178
  export type AssociateResourceErrorReason =
179
179
  (typeof AssociateResourceErrorReason)[keyof typeof AssociateResourceErrorReason];
180
180
  export interface AssociateResourceError {
181
- Message?: string;
182
- Reason?: AssociateResourceErrorReason;
181
+ Message?: string | undefined;
182
+ Reason?: AssociateResourceErrorReason | undefined;
183
183
  }
184
184
  export interface AssociateResourceResponseElement {
185
- Arn?: string;
186
- Error?: AssociateResourceError;
185
+ Arn?: string | undefined;
186
+ Error?: AssociateResourceError | undefined;
187
187
  }
188
188
  export interface Attribute {
189
- Key?: string;
190
- Value?: string;
189
+ Key?: string | undefined;
190
+ Value?: string | undefined;
191
191
  }
192
192
  export interface ComputationPreference {
193
193
  PricingPlanArn: string | undefined;
194
194
  }
195
195
  export interface CreateBillingGroupInput {
196
- ClientToken?: string;
196
+ ClientToken?: string | undefined;
197
197
  Name: string | undefined;
198
198
  AccountGrouping: AccountGrouping | undefined;
199
199
  ComputationPreference: ComputationPreference | undefined;
200
- PrimaryAccountId?: string;
201
- Description?: string;
202
- Tags?: Record<string, string>;
200
+ PrimaryAccountId?: string | undefined;
201
+ Description?: string | undefined;
202
+ Tags?: Record<string, string> | undefined;
203
203
  }
204
204
  export interface CreateBillingGroupOutput {
205
- Arn?: string;
205
+ Arn?: string | undefined;
206
206
  }
207
207
  export interface DeleteBillingGroupInput {
208
208
  Arn: string | undefined;
209
209
  }
210
210
  export interface DeleteBillingGroupOutput {
211
- Arn?: string;
211
+ Arn?: string | undefined;
212
212
  }
213
213
  export interface DisassociateAccountsInput {
214
214
  Arn: string | undefined;
215
215
  AccountIds: string[] | undefined;
216
216
  }
217
217
  export interface DisassociateAccountsOutput {
218
- Arn?: string;
218
+ Arn?: string | undefined;
219
219
  }
220
220
  export declare const BillingGroupStatus: {
221
221
  readonly ACTIVE: "ACTIVE";
@@ -224,85 +224,91 @@ export declare const BillingGroupStatus: {
224
224
  export type BillingGroupStatus =
225
225
  (typeof BillingGroupStatus)[keyof typeof BillingGroupStatus];
226
226
  export interface ListBillingGroupsFilter {
227
- Arns?: string[];
228
- PricingPlan?: string;
229
- Statuses?: BillingGroupStatus[];
230
- AutoAssociate?: boolean;
227
+ Arns?: string[] | undefined;
228
+ PricingPlan?: string | undefined;
229
+ Statuses?: BillingGroupStatus[] | undefined;
230
+ AutoAssociate?: boolean | undefined;
231
231
  }
232
232
  export interface ListBillingGroupsInput {
233
- BillingPeriod?: string;
234
- MaxResults?: number;
235
- NextToken?: string;
236
- Filters?: ListBillingGroupsFilter;
233
+ BillingPeriod?: string | undefined;
234
+ MaxResults?: number | undefined;
235
+ NextToken?: string | undefined;
236
+ Filters?: ListBillingGroupsFilter | undefined;
237
237
  }
238
238
  export interface ListBillingGroupAccountGrouping {
239
- AutoAssociate?: boolean;
239
+ AutoAssociate?: boolean | undefined;
240
240
  }
241
241
  export interface BillingGroupListElement {
242
- Name?: string;
243
- Arn?: string;
244
- Description?: string;
245
- PrimaryAccountId?: string;
246
- ComputationPreference?: ComputationPreference;
247
- Size?: number;
248
- CreationTime?: number;
249
- LastModifiedTime?: number;
250
- Status?: BillingGroupStatus;
251
- StatusReason?: string;
252
- AccountGrouping?: ListBillingGroupAccountGrouping;
242
+ Name?: string | undefined;
243
+ Arn?: string | undefined;
244
+ Description?: string | undefined;
245
+ PrimaryAccountId?: string | undefined;
246
+ ComputationPreference?: ComputationPreference | undefined;
247
+ Size?: number | undefined;
248
+ CreationTime?: number | undefined;
249
+ LastModifiedTime?: number | undefined;
250
+ Status?: BillingGroupStatus | undefined;
251
+ StatusReason?: string | undefined;
252
+ AccountGrouping?: ListBillingGroupAccountGrouping | undefined;
253
253
  }
254
254
  export interface ListBillingGroupsOutput {
255
- BillingGroups?: BillingGroupListElement[];
256
- NextToken?: string;
255
+ BillingGroups?: BillingGroupListElement[] | undefined;
256
+ NextToken?: string | undefined;
257
257
  }
258
258
  export interface UpdateBillingGroupAccountGrouping {
259
- AutoAssociate?: boolean;
259
+ AutoAssociate?: boolean | undefined;
260
260
  }
261
261
  export interface UpdateBillingGroupInput {
262
262
  Arn: string | undefined;
263
- Name?: string;
264
- Status?: BillingGroupStatus;
265
- ComputationPreference?: ComputationPreference;
266
- Description?: string;
267
- AccountGrouping?: UpdateBillingGroupAccountGrouping;
263
+ Name?: string | undefined;
264
+ Status?: BillingGroupStatus | undefined;
265
+ ComputationPreference?: ComputationPreference | undefined;
266
+ Description?: string | undefined;
267
+ AccountGrouping?: UpdateBillingGroupAccountGrouping | undefined;
268
268
  }
269
269
  export interface UpdateBillingGroupOutput {
270
- Arn?: string;
271
- Name?: string;
272
- Description?: string;
273
- PrimaryAccountId?: string;
274
- PricingPlanArn?: string;
275
- Size?: number;
276
- LastModifiedTime?: number;
277
- Status?: BillingGroupStatus;
278
- StatusReason?: string;
279
- AccountGrouping?: UpdateBillingGroupAccountGrouping;
270
+ Arn?: string | undefined;
271
+ Name?: string | undefined;
272
+ Description?: string | undefined;
273
+ PrimaryAccountId?: string | undefined;
274
+ PricingPlanArn?: string | undefined;
275
+ Size?: number | undefined;
276
+ LastModifiedTime?: number | undefined;
277
+ Status?: BillingGroupStatus | undefined;
278
+ StatusReason?: string | undefined;
279
+ AccountGrouping?: UpdateBillingGroupAccountGrouping | undefined;
280
280
  }
281
281
  export interface CustomLineItemBillingPeriodRange {
282
282
  InclusiveStartBillingPeriod: string | undefined;
283
- ExclusiveEndBillingPeriod?: string;
283
+ ExclusiveEndBillingPeriod?: string | undefined;
284
284
  }
285
285
  export interface BatchAssociateResourcesToCustomLineItemInput {
286
286
  TargetArn: string | undefined;
287
287
  ResourceArns: string[] | undefined;
288
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
288
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
289
289
  }
290
290
  export interface BatchAssociateResourcesToCustomLineItemOutput {
291
- SuccessfullyAssociatedResources?: AssociateResourceResponseElement[];
292
- FailedAssociatedResources?: AssociateResourceResponseElement[];
291
+ SuccessfullyAssociatedResources?:
292
+ | AssociateResourceResponseElement[]
293
+ | undefined;
294
+ FailedAssociatedResources?: AssociateResourceResponseElement[] | undefined;
293
295
  }
294
296
  export interface BatchDisassociateResourcesFromCustomLineItemInput {
295
297
  TargetArn: string | undefined;
296
298
  ResourceArns: string[] | undefined;
297
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
299
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
298
300
  }
299
301
  export interface DisassociateResourceResponseElement {
300
- Arn?: string;
301
- Error?: AssociateResourceError;
302
+ Arn?: string | undefined;
303
+ Error?: AssociateResourceError | undefined;
302
304
  }
303
305
  export interface BatchDisassociateResourcesFromCustomLineItemOutput {
304
- SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[];
305
- FailedDisassociatedResources?: DisassociateResourceResponseElement[];
306
+ SuccessfullyDisassociatedResources?:
307
+ | DisassociateResourceResponseElement[]
308
+ | undefined;
309
+ FailedDisassociatedResources?:
310
+ | DisassociateResourceResponseElement[]
311
+ | undefined;
306
312
  }
307
313
  export interface CustomLineItemFlatChargeDetails {
308
314
  ChargeValue: number | undefined;
@@ -328,7 +334,7 @@ export interface LineItemFilter {
328
334
  }
329
335
  export interface CustomLineItemPercentageChargeDetails {
330
336
  PercentageValue: number | undefined;
331
- AssociatedValues?: string[];
337
+ AssociatedValues?: string[] | undefined;
332
338
  }
333
339
  export declare const CustomLineItemType: {
334
340
  readonly CREDIT: "CREDIT";
@@ -337,42 +343,42 @@ export declare const CustomLineItemType: {
337
343
  export type CustomLineItemType =
338
344
  (typeof CustomLineItemType)[keyof typeof CustomLineItemType];
339
345
  export interface CustomLineItemChargeDetails {
340
- Flat?: CustomLineItemFlatChargeDetails;
341
- Percentage?: CustomLineItemPercentageChargeDetails;
346
+ Flat?: CustomLineItemFlatChargeDetails | undefined;
347
+ Percentage?: CustomLineItemPercentageChargeDetails | undefined;
342
348
  Type: CustomLineItemType | undefined;
343
- LineItemFilters?: LineItemFilter[];
349
+ LineItemFilters?: LineItemFilter[] | undefined;
344
350
  }
345
351
  export interface CreateCustomLineItemInput {
346
- ClientToken?: string;
352
+ ClientToken?: string | undefined;
347
353
  Name: string | undefined;
348
354
  Description: string | undefined;
349
355
  BillingGroupArn: string | undefined;
350
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
351
- Tags?: Record<string, string>;
356
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
357
+ Tags?: Record<string, string> | undefined;
352
358
  ChargeDetails: CustomLineItemChargeDetails | undefined;
353
- AccountId?: string;
359
+ AccountId?: string | undefined;
354
360
  }
355
361
  export interface CreateCustomLineItemOutput {
356
- Arn?: string;
362
+ Arn?: string | undefined;
357
363
  }
358
364
  export interface DeleteCustomLineItemInput {
359
365
  Arn: string | undefined;
360
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
366
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
361
367
  }
362
368
  export interface DeleteCustomLineItemOutput {
363
- Arn?: string;
369
+ Arn?: string | undefined;
364
370
  }
365
371
  export interface ListCustomLineItemsFilter {
366
- Names?: string[];
367
- BillingGroups?: string[];
368
- Arns?: string[];
369
- AccountIds?: string[];
372
+ Names?: string[] | undefined;
373
+ BillingGroups?: string[] | undefined;
374
+ Arns?: string[] | undefined;
375
+ AccountIds?: string[] | undefined;
370
376
  }
371
377
  export interface ListCustomLineItemsInput {
372
- BillingPeriod?: string;
373
- MaxResults?: number;
374
- NextToken?: string;
375
- Filters?: ListCustomLineItemsFilter;
378
+ BillingPeriod?: string | undefined;
379
+ MaxResults?: number | undefined;
380
+ NextToken?: string | undefined;
381
+ Filters?: ListCustomLineItemsFilter | undefined;
376
382
  }
377
383
  export interface ListCustomLineItemFlatChargeDetails {
378
384
  ChargeValue: number | undefined;
@@ -381,10 +387,10 @@ export interface ListCustomLineItemPercentageChargeDetails {
381
387
  PercentageValue: number | undefined;
382
388
  }
383
389
  export interface ListCustomLineItemChargeDetails {
384
- Flat?: ListCustomLineItemFlatChargeDetails;
385
- Percentage?: ListCustomLineItemPercentageChargeDetails;
390
+ Flat?: ListCustomLineItemFlatChargeDetails | undefined;
391
+ Percentage?: ListCustomLineItemPercentageChargeDetails | undefined;
386
392
  Type: CustomLineItemType | undefined;
387
- LineItemFilters?: LineItemFilter[];
393
+ LineItemFilters?: LineItemFilter[] | undefined;
388
394
  }
389
395
  export declare const CurrencyCode: {
390
396
  readonly CNY: "CNY";
@@ -392,54 +398,56 @@ export declare const CurrencyCode: {
392
398
  };
393
399
  export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
394
400
  export interface CustomLineItemListElement {
395
- Arn?: string;
396
- Name?: string;
397
- ChargeDetails?: ListCustomLineItemChargeDetails;
398
- CurrencyCode?: CurrencyCode;
399
- Description?: string;
400
- ProductCode?: string;
401
- BillingGroupArn?: string;
402
- CreationTime?: number;
403
- LastModifiedTime?: number;
404
- AssociationSize?: number;
405
- AccountId?: string;
401
+ Arn?: string | undefined;
402
+ Name?: string | undefined;
403
+ ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
404
+ CurrencyCode?: CurrencyCode | undefined;
405
+ Description?: string | undefined;
406
+ ProductCode?: string | undefined;
407
+ BillingGroupArn?: string | undefined;
408
+ CreationTime?: number | undefined;
409
+ LastModifiedTime?: number | undefined;
410
+ AssociationSize?: number | undefined;
411
+ AccountId?: string | undefined;
406
412
  }
407
413
  export interface ListCustomLineItemsOutput {
408
- CustomLineItems?: CustomLineItemListElement[];
409
- NextToken?: string;
414
+ CustomLineItems?: CustomLineItemListElement[] | undefined;
415
+ NextToken?: string | undefined;
410
416
  }
411
417
  export interface ListCustomLineItemVersionsBillingPeriodRangeFilter {
412
- StartBillingPeriod?: string;
413
- EndBillingPeriod?: string;
418
+ StartBillingPeriod?: string | undefined;
419
+ EndBillingPeriod?: string | undefined;
414
420
  }
415
421
  export interface ListCustomLineItemVersionsFilter {
416
- BillingPeriodRange?: ListCustomLineItemVersionsBillingPeriodRangeFilter;
422
+ BillingPeriodRange?:
423
+ | ListCustomLineItemVersionsBillingPeriodRangeFilter
424
+ | undefined;
417
425
  }
418
426
  export interface ListCustomLineItemVersionsInput {
419
427
  Arn: string | undefined;
420
- MaxResults?: number;
421
- NextToken?: string;
422
- Filters?: ListCustomLineItemVersionsFilter;
428
+ MaxResults?: number | undefined;
429
+ NextToken?: string | undefined;
430
+ Filters?: ListCustomLineItemVersionsFilter | undefined;
423
431
  }
424
432
  export interface CustomLineItemVersionListElement {
425
- Name?: string;
426
- ChargeDetails?: ListCustomLineItemChargeDetails;
427
- CurrencyCode?: CurrencyCode;
428
- Description?: string;
429
- ProductCode?: string;
430
- BillingGroupArn?: string;
431
- CreationTime?: number;
432
- LastModifiedTime?: number;
433
- AssociationSize?: number;
434
- StartBillingPeriod?: string;
435
- EndBillingPeriod?: string;
436
- Arn?: string;
437
- StartTime?: number;
438
- AccountId?: string;
433
+ Name?: string | undefined;
434
+ ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
435
+ CurrencyCode?: CurrencyCode | undefined;
436
+ Description?: string | undefined;
437
+ ProductCode?: string | undefined;
438
+ BillingGroupArn?: string | undefined;
439
+ CreationTime?: number | undefined;
440
+ LastModifiedTime?: number | undefined;
441
+ AssociationSize?: number | undefined;
442
+ StartBillingPeriod?: string | undefined;
443
+ EndBillingPeriod?: string | undefined;
444
+ Arn?: string | undefined;
445
+ StartTime?: number | undefined;
446
+ AccountId?: string | undefined;
439
447
  }
440
448
  export interface ListCustomLineItemVersionsOutput {
441
- CustomLineItemVersions?: CustomLineItemVersionListElement[];
442
- NextToken?: string;
449
+ CustomLineItemVersions?: CustomLineItemVersionListElement[] | undefined;
450
+ NextToken?: string | undefined;
443
451
  }
444
452
  export declare const CustomLineItemRelationship: {
445
453
  readonly CHILD: "CHILD";
@@ -448,24 +456,26 @@ export declare const CustomLineItemRelationship: {
448
456
  export type CustomLineItemRelationship =
449
457
  (typeof CustomLineItemRelationship)[keyof typeof CustomLineItemRelationship];
450
458
  export interface ListResourcesAssociatedToCustomLineItemFilter {
451
- Relationship?: CustomLineItemRelationship;
459
+ Relationship?: CustomLineItemRelationship | undefined;
452
460
  }
453
461
  export interface ListResourcesAssociatedToCustomLineItemInput {
454
- BillingPeriod?: string;
462
+ BillingPeriod?: string | undefined;
455
463
  Arn: string | undefined;
456
- MaxResults?: number;
457
- NextToken?: string;
458
- Filters?: ListResourcesAssociatedToCustomLineItemFilter;
464
+ MaxResults?: number | undefined;
465
+ NextToken?: string | undefined;
466
+ Filters?: ListResourcesAssociatedToCustomLineItemFilter | undefined;
459
467
  }
460
468
  export interface ListResourcesAssociatedToCustomLineItemResponseElement {
461
- Arn?: string;
462
- Relationship?: CustomLineItemRelationship;
463
- EndBillingPeriod?: string;
469
+ Arn?: string | undefined;
470
+ Relationship?: CustomLineItemRelationship | undefined;
471
+ EndBillingPeriod?: string | undefined;
464
472
  }
465
473
  export interface ListResourcesAssociatedToCustomLineItemOutput {
466
- Arn?: string;
467
- AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[];
468
- NextToken?: string;
474
+ Arn?: string | undefined;
475
+ AssociatedResources?:
476
+ | ListResourcesAssociatedToCustomLineItemResponseElement[]
477
+ | undefined;
478
+ NextToken?: string | undefined;
469
479
  }
470
480
  export interface UpdateCustomLineItemFlatChargeDetails {
471
481
  ChargeValue: number | undefined;
@@ -474,25 +484,25 @@ export interface UpdateCustomLineItemPercentageChargeDetails {
474
484
  PercentageValue: number | undefined;
475
485
  }
476
486
  export interface UpdateCustomLineItemChargeDetails {
477
- Flat?: UpdateCustomLineItemFlatChargeDetails;
478
- Percentage?: UpdateCustomLineItemPercentageChargeDetails;
479
- LineItemFilters?: LineItemFilter[];
487
+ Flat?: UpdateCustomLineItemFlatChargeDetails | undefined;
488
+ Percentage?: UpdateCustomLineItemPercentageChargeDetails | undefined;
489
+ LineItemFilters?: LineItemFilter[] | undefined;
480
490
  }
481
491
  export interface UpdateCustomLineItemInput {
482
492
  Arn: string | undefined;
483
- Name?: string;
484
- Description?: string;
485
- ChargeDetails?: UpdateCustomLineItemChargeDetails;
486
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
493
+ Name?: string | undefined;
494
+ Description?: string | undefined;
495
+ ChargeDetails?: UpdateCustomLineItemChargeDetails | undefined;
496
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
487
497
  }
488
498
  export interface UpdateCustomLineItemOutput {
489
- Arn?: string;
490
- BillingGroupArn?: string;
491
- Name?: string;
492
- Description?: string;
493
- ChargeDetails?: ListCustomLineItemChargeDetails;
494
- LastModifiedTime?: number;
495
- AssociationSize?: number;
499
+ Arn?: string | undefined;
500
+ BillingGroupArn?: string | undefined;
501
+ Name?: string | undefined;
502
+ Description?: string | undefined;
503
+ ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
504
+ LastModifiedTime?: number | undefined;
505
+ AssociationSize?: number | undefined;
496
506
  }
497
507
  export interface BillingPeriodRange {
498
508
  InclusiveStartBillingPeriod: string | undefined;
@@ -506,133 +516,135 @@ export type GroupByAttributeName =
506
516
  (typeof GroupByAttributeName)[keyof typeof GroupByAttributeName];
507
517
  export interface GetBillingGroupCostReportInput {
508
518
  Arn: string | undefined;
509
- BillingPeriodRange?: BillingPeriodRange;
510
- GroupBy?: GroupByAttributeName[];
511
- MaxResults?: number;
512
- NextToken?: string;
519
+ BillingPeriodRange?: BillingPeriodRange | undefined;
520
+ GroupBy?: GroupByAttributeName[] | undefined;
521
+ MaxResults?: number | undefined;
522
+ NextToken?: string | undefined;
513
523
  }
514
524
  export interface BillingGroupCostReportResultElement {
515
- Arn?: string;
516
- AWSCost?: string;
517
- ProformaCost?: string;
518
- Margin?: string;
519
- MarginPercentage?: string;
520
- Currency?: string;
521
- Attributes?: Attribute[];
525
+ Arn?: string | undefined;
526
+ AWSCost?: string | undefined;
527
+ ProformaCost?: string | undefined;
528
+ Margin?: string | undefined;
529
+ MarginPercentage?: string | undefined;
530
+ Currency?: string | undefined;
531
+ Attributes?: Attribute[] | undefined;
522
532
  }
523
533
  export interface GetBillingGroupCostReportOutput {
524
- BillingGroupCostReportResults?: BillingGroupCostReportResultElement[];
525
- NextToken?: string;
534
+ BillingGroupCostReportResults?:
535
+ | BillingGroupCostReportResultElement[]
536
+ | undefined;
537
+ NextToken?: string | undefined;
526
538
  }
527
539
  export interface ListAccountAssociationsFilter {
528
- Association?: string;
529
- AccountId?: string;
530
- AccountIds?: string[];
540
+ Association?: string | undefined;
541
+ AccountId?: string | undefined;
542
+ AccountIds?: string[] | undefined;
531
543
  }
532
544
  export interface ListAccountAssociationsInput {
533
- BillingPeriod?: string;
534
- Filters?: ListAccountAssociationsFilter;
535
- NextToken?: string;
545
+ BillingPeriod?: string | undefined;
546
+ Filters?: ListAccountAssociationsFilter | undefined;
547
+ NextToken?: string | undefined;
536
548
  }
537
549
  export interface ListAccountAssociationsOutput {
538
- LinkedAccounts?: AccountAssociationsListElement[];
539
- NextToken?: string;
550
+ LinkedAccounts?: AccountAssociationsListElement[] | undefined;
551
+ NextToken?: string | undefined;
540
552
  }
541
553
  export interface ListBillingGroupCostReportsFilter {
542
- BillingGroupArns?: string[];
554
+ BillingGroupArns?: string[] | undefined;
543
555
  }
544
556
  export interface ListBillingGroupCostReportsInput {
545
- BillingPeriod?: string;
546
- MaxResults?: number;
547
- NextToken?: string;
548
- Filters?: ListBillingGroupCostReportsFilter;
557
+ BillingPeriod?: string | undefined;
558
+ MaxResults?: number | undefined;
559
+ NextToken?: string | undefined;
560
+ Filters?: ListBillingGroupCostReportsFilter | undefined;
549
561
  }
550
562
  export interface BillingGroupCostReportElement {
551
- Arn?: string;
552
- AWSCost?: string;
553
- ProformaCost?: string;
554
- Margin?: string;
555
- MarginPercentage?: string;
556
- Currency?: string;
563
+ Arn?: string | undefined;
564
+ AWSCost?: string | undefined;
565
+ ProformaCost?: string | undefined;
566
+ Margin?: string | undefined;
567
+ MarginPercentage?: string | undefined;
568
+ Currency?: string | undefined;
557
569
  }
558
570
  export interface ListBillingGroupCostReportsOutput {
559
- BillingGroupCostReports?: BillingGroupCostReportElement[];
560
- NextToken?: string;
571
+ BillingGroupCostReports?: BillingGroupCostReportElement[] | undefined;
572
+ NextToken?: string | undefined;
561
573
  }
562
574
  export interface ListTagsForResourceRequest {
563
575
  ResourceArn: string | undefined;
564
576
  }
565
577
  export interface ListTagsForResourceResponse {
566
- Tags?: Record<string, string>;
578
+ Tags?: Record<string, string> | undefined;
567
579
  }
568
580
  export interface CreatePricingPlanInput {
569
- ClientToken?: string;
581
+ ClientToken?: string | undefined;
570
582
  Name: string | undefined;
571
- Description?: string;
572
- PricingRuleArns?: string[];
573
- Tags?: Record<string, string>;
583
+ Description?: string | undefined;
584
+ PricingRuleArns?: string[] | undefined;
585
+ Tags?: Record<string, string> | undefined;
574
586
  }
575
587
  export interface CreatePricingPlanOutput {
576
- Arn?: string;
588
+ Arn?: string | undefined;
577
589
  }
578
590
  export interface DeletePricingPlanInput {
579
591
  Arn: string | undefined;
580
592
  }
581
593
  export interface DeletePricingPlanOutput {
582
- Arn?: string;
594
+ Arn?: string | undefined;
583
595
  }
584
596
  export interface DisassociatePricingRulesInput {
585
597
  Arn: string | undefined;
586
598
  PricingRuleArns: string[] | undefined;
587
599
  }
588
600
  export interface DisassociatePricingRulesOutput {
589
- Arn?: string;
601
+ Arn?: string | undefined;
590
602
  }
591
603
  export interface ListPricingPlansFilter {
592
- Arns?: string[];
604
+ Arns?: string[] | undefined;
593
605
  }
594
606
  export interface ListPricingPlansInput {
595
- BillingPeriod?: string;
596
- Filters?: ListPricingPlansFilter;
597
- MaxResults?: number;
598
- NextToken?: string;
607
+ BillingPeriod?: string | undefined;
608
+ Filters?: ListPricingPlansFilter | undefined;
609
+ MaxResults?: number | undefined;
610
+ NextToken?: string | undefined;
599
611
  }
600
612
  export interface PricingPlanListElement {
601
- Name?: string;
602
- Arn?: string;
603
- Description?: string;
604
- Size?: number;
605
- CreationTime?: number;
606
- LastModifiedTime?: number;
613
+ Name?: string | undefined;
614
+ Arn?: string | undefined;
615
+ Description?: string | undefined;
616
+ Size?: number | undefined;
617
+ CreationTime?: number | undefined;
618
+ LastModifiedTime?: number | undefined;
607
619
  }
608
620
  export interface ListPricingPlansOutput {
609
- BillingPeriod?: string;
610
- PricingPlans?: PricingPlanListElement[];
611
- NextToken?: string;
621
+ BillingPeriod?: string | undefined;
622
+ PricingPlans?: PricingPlanListElement[] | undefined;
623
+ NextToken?: string | undefined;
612
624
  }
613
625
  export interface ListPricingPlansAssociatedWithPricingRuleInput {
614
- BillingPeriod?: string;
626
+ BillingPeriod?: string | undefined;
615
627
  PricingRuleArn: string | undefined;
616
- MaxResults?: number;
617
- NextToken?: string;
628
+ MaxResults?: number | undefined;
629
+ NextToken?: string | undefined;
618
630
  }
619
631
  export interface ListPricingPlansAssociatedWithPricingRuleOutput {
620
- BillingPeriod?: string;
621
- PricingRuleArn?: string;
622
- PricingPlanArns?: string[];
623
- NextToken?: string;
632
+ BillingPeriod?: string | undefined;
633
+ PricingRuleArn?: string | undefined;
634
+ PricingPlanArns?: string[] | undefined;
635
+ NextToken?: string | undefined;
624
636
  }
625
637
  export interface UpdatePricingPlanInput {
626
638
  Arn: string | undefined;
627
- Name?: string;
628
- Description?: string;
639
+ Name?: string | undefined;
640
+ Description?: string | undefined;
629
641
  }
630
642
  export interface UpdatePricingPlanOutput {
631
- Arn?: string;
632
- Name?: string;
633
- Description?: string;
634
- Size?: number;
635
- LastModifiedTime?: number;
643
+ Arn?: string | undefined;
644
+ Name?: string | undefined;
645
+ Description?: string | undefined;
646
+ Size?: number | undefined;
647
+ LastModifiedTime?: number | undefined;
636
648
  }
637
649
  export declare const PricingRuleScope: {
638
650
  readonly BILLING_ENTITY: "BILLING_ENTITY";
@@ -656,36 +668,36 @@ export declare const PricingRuleType: {
656
668
  export type PricingRuleType =
657
669
  (typeof PricingRuleType)[keyof typeof PricingRuleType];
658
670
  export interface CreatePricingRuleInput {
659
- ClientToken?: string;
671
+ ClientToken?: string | undefined;
660
672
  Name: string | undefined;
661
- Description?: string;
673
+ Description?: string | undefined;
662
674
  Scope: PricingRuleScope | undefined;
663
675
  Type: PricingRuleType | undefined;
664
- ModifierPercentage?: number;
665
- Service?: string;
666
- Tags?: Record<string, string>;
667
- BillingEntity?: string;
668
- Tiering?: CreateTieringInput;
669
- UsageType?: string;
670
- Operation?: string;
676
+ ModifierPercentage?: number | undefined;
677
+ Service?: string | undefined;
678
+ Tags?: Record<string, string> | undefined;
679
+ BillingEntity?: string | undefined;
680
+ Tiering?: CreateTieringInput | undefined;
681
+ UsageType?: string | undefined;
682
+ Operation?: string | undefined;
671
683
  }
672
684
  export interface CreatePricingRuleOutput {
673
- Arn?: string;
685
+ Arn?: string | undefined;
674
686
  }
675
687
  export interface DeletePricingRuleInput {
676
688
  Arn: string | undefined;
677
689
  }
678
690
  export interface DeletePricingRuleOutput {
679
- Arn?: string;
691
+ Arn?: string | undefined;
680
692
  }
681
693
  export interface ListPricingRulesFilter {
682
- Arns?: string[];
694
+ Arns?: string[] | undefined;
683
695
  }
684
696
  export interface ListPricingRulesInput {
685
- BillingPeriod?: string;
686
- Filters?: ListPricingRulesFilter;
687
- MaxResults?: number;
688
- NextToken?: string;
697
+ BillingPeriod?: string | undefined;
698
+ Filters?: ListPricingRulesFilter | undefined;
699
+ MaxResults?: number | undefined;
700
+ NextToken?: string | undefined;
689
701
  }
690
702
  export interface FreeTierConfig {
691
703
  Activated: boolean | undefined;
@@ -694,37 +706,37 @@ export interface Tiering {
694
706
  FreeTier: FreeTierConfig | undefined;
695
707
  }
696
708
  export interface PricingRuleListElement {
697
- Name?: string;
698
- Arn?: string;
699
- Description?: string;
700
- Scope?: PricingRuleScope;
701
- Type?: PricingRuleType;
702
- ModifierPercentage?: number;
703
- Service?: string;
704
- AssociatedPricingPlanCount?: number;
705
- CreationTime?: number;
706
- LastModifiedTime?: number;
707
- BillingEntity?: string;
708
- Tiering?: Tiering;
709
- UsageType?: string;
710
- Operation?: string;
709
+ Name?: string | undefined;
710
+ Arn?: string | undefined;
711
+ Description?: string | undefined;
712
+ Scope?: PricingRuleScope | undefined;
713
+ Type?: PricingRuleType | undefined;
714
+ ModifierPercentage?: number | undefined;
715
+ Service?: string | undefined;
716
+ AssociatedPricingPlanCount?: number | undefined;
717
+ CreationTime?: number | undefined;
718
+ LastModifiedTime?: number | undefined;
719
+ BillingEntity?: string | undefined;
720
+ Tiering?: Tiering | undefined;
721
+ UsageType?: string | undefined;
722
+ Operation?: string | undefined;
711
723
  }
712
724
  export interface ListPricingRulesOutput {
713
- BillingPeriod?: string;
714
- PricingRules?: PricingRuleListElement[];
715
- NextToken?: string;
725
+ BillingPeriod?: string | undefined;
726
+ PricingRules?: PricingRuleListElement[] | undefined;
727
+ NextToken?: string | undefined;
716
728
  }
717
729
  export interface ListPricingRulesAssociatedToPricingPlanInput {
718
- BillingPeriod?: string;
730
+ BillingPeriod?: string | undefined;
719
731
  PricingPlanArn: string | undefined;
720
- MaxResults?: number;
721
- NextToken?: string;
732
+ MaxResults?: number | undefined;
733
+ NextToken?: string | undefined;
722
734
  }
723
735
  export interface ListPricingRulesAssociatedToPricingPlanOutput {
724
- BillingPeriod?: string;
725
- PricingPlanArn?: string;
726
- PricingRuleArns?: string[];
727
- NextToken?: string;
736
+ BillingPeriod?: string | undefined;
737
+ PricingPlanArn?: string | undefined;
738
+ PricingRuleArns?: string[] | undefined;
739
+ NextToken?: string | undefined;
728
740
  }
729
741
  export interface UpdateFreeTierConfig {
730
742
  Activated: boolean | undefined;
@@ -734,26 +746,26 @@ export interface UpdateTieringInput {
734
746
  }
735
747
  export interface UpdatePricingRuleInput {
736
748
  Arn: string | undefined;
737
- Name?: string;
738
- Description?: string;
739
- Type?: PricingRuleType;
740
- ModifierPercentage?: number;
741
- Tiering?: UpdateTieringInput;
749
+ Name?: string | undefined;
750
+ Description?: string | undefined;
751
+ Type?: PricingRuleType | undefined;
752
+ ModifierPercentage?: number | undefined;
753
+ Tiering?: UpdateTieringInput | undefined;
742
754
  }
743
755
  export interface UpdatePricingRuleOutput {
744
- Arn?: string;
745
- Name?: string;
746
- Description?: string;
747
- Scope?: PricingRuleScope;
748
- Type?: PricingRuleType;
749
- ModifierPercentage?: number;
750
- Service?: string;
751
- AssociatedPricingPlanCount?: number;
752
- LastModifiedTime?: number;
753
- BillingEntity?: string;
754
- Tiering?: UpdateTieringInput;
755
- UsageType?: string;
756
- Operation?: string;
756
+ Arn?: string | undefined;
757
+ Name?: string | undefined;
758
+ Description?: string | undefined;
759
+ Scope?: PricingRuleScope | undefined;
760
+ Type?: PricingRuleType | undefined;
761
+ ModifierPercentage?: number | undefined;
762
+ Service?: string | undefined;
763
+ AssociatedPricingPlanCount?: number | undefined;
764
+ LastModifiedTime?: number | undefined;
765
+ BillingEntity?: string | undefined;
766
+ Tiering?: UpdateTieringInput | undefined;
767
+ UsageType?: string | undefined;
768
+ Operation?: string | undefined;
757
769
  }
758
770
  export interface TagResourceRequest {
759
771
  ResourceArn: string | undefined;