aws-sdk 2.1421.0 → 2.1422.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.
@@ -265,28 +265,32 @@ declare namespace Billingconductor {
265
265
  export type AccountAssociationsList = AccountAssociationsListElement[];
266
266
  export interface AccountAssociationsListElement {
267
267
  /**
268
- * The associating array of account IDs.
268
+ * The associating array of account IDs.
269
269
  */
270
270
  AccountId?: AccountId;
271
271
  /**
272
- * The Billing Group Arn that the linked account is associated to.
272
+ * The Billing Group Arn that the linked account is associated to.
273
273
  */
274
274
  BillingGroupArn?: BillingGroupArn;
275
275
  /**
276
- * The Amazon Web Services account name.
276
+ * The Amazon Web Services account name.
277
277
  */
278
278
  AccountName?: AccountName;
279
279
  /**
280
- * The Amazon Web Services account email.
280
+ * The Amazon Web Services account email.
281
281
  */
282
282
  AccountEmail?: AccountEmail;
283
283
  }
284
284
  export type AccountEmail = string;
285
285
  export interface AccountGrouping {
286
286
  /**
287
- * The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.
287
+ * The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.
288
288
  */
289
289
  LinkedAccountIds: AccountIdList;
290
+ /**
291
+ * Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.
292
+ */
293
+ AutoAssociate?: Boolean;
290
294
  }
291
295
  export type AccountId = string;
292
296
  export type AccountIdFilterList = AccountId[];
@@ -327,22 +331,22 @@ declare namespace Billingconductor {
327
331
  }
328
332
  export interface AssociateResourceError {
329
333
  /**
330
- * The reason why the resource association failed.
334
+ * The reason why the resource association failed.
331
335
  */
332
336
  Message?: String;
333
337
  /**
334
- * A static error code that's used to classify the type of failure.
338
+ * A static error code that's used to classify the type of failure.
335
339
  */
336
340
  Reason?: AssociateResourceErrorReason;
337
341
  }
338
342
  export type AssociateResourceErrorReason = "INVALID_ARN"|"SERVICE_LIMIT_EXCEEDED"|"ILLEGAL_CUSTOMLINEITEM"|"INTERNAL_SERVER_EXCEPTION"|"INVALID_BILLING_PERIOD_RANGE"|string;
339
343
  export interface AssociateResourceResponseElement {
340
344
  /**
341
- * The resource ARN that was associated to the custom line item.
345
+ * The resource ARN that was associated to the custom line item.
342
346
  */
343
347
  Arn?: CustomLineItemAssociationElement;
344
348
  /**
345
- * An AssociateResourceError that will populate if the resource association fails.
349
+ * An AssociateResourceError that will populate if the resource association fails.
346
350
  */
347
351
  Error?: AssociateResourceError;
348
352
  }
@@ -395,27 +399,27 @@ declare namespace Billingconductor {
395
399
  export type BillingGroupArnList = BillingGroupArn[];
396
400
  export interface BillingGroupCostReportElement {
397
401
  /**
398
- * The Amazon Resource Name (ARN) of a billing group.
402
+ * The Amazon Resource Name (ARN) of a billing group.
399
403
  */
400
404
  Arn?: BillingGroupArn;
401
405
  /**
402
- * The actual Amazon Web Services charges for the billing group.
406
+ * The actual Amazon Web Services charges for the billing group.
403
407
  */
404
408
  AWSCost?: AWSCost;
405
409
  /**
406
- * The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group.
410
+ * The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group.
407
411
  */
408
412
  ProformaCost?: ProformaCost;
409
413
  /**
410
- * The billing group margin.
414
+ * The billing group margin.
411
415
  */
412
416
  Margin?: Margin;
413
417
  /**
414
- * The percentage of billing group margin.
418
+ * The percentage of billing group margin.
415
419
  */
416
420
  MarginPercentage?: MarginPercentage;
417
421
  /**
418
- * The displayed currency.
422
+ * The displayed currency.
419
423
  */
420
424
  Currency?: Currency;
421
425
  }
@@ -425,48 +429,53 @@ declare namespace Billingconductor {
425
429
  export type BillingGroupList = BillingGroupListElement[];
426
430
  export interface BillingGroupListElement {
427
431
  /**
428
- * The name of the billing group.
432
+ * The name of the billing group.
429
433
  */
430
434
  Name?: BillingGroupName;
431
435
  /**
432
- * The Amazon Resource Number (ARN) that can be used to uniquely identify the billing group.
436
+ * The Amazon Resource Number (ARN) that can be used to uniquely identify the billing group.
433
437
  */
434
438
  Arn?: BillingGroupArn;
435
439
  /**
436
- * The description of the billing group.
440
+ * The description of the billing group.
437
441
  */
438
442
  Description?: BillingGroupDescription;
439
443
  /**
440
- * The account ID that serves as the main account in a billing group.
444
+ * The account ID that serves as the main account in a billing group.
441
445
  */
442
446
  PrimaryAccountId?: AccountId;
443
447
  ComputationPreference?: ComputationPreference;
444
448
  /**
445
- * The number of accounts in the particular billing group.
449
+ * The number of accounts in the particular billing group.
446
450
  */
447
451
  Size?: NumberOfAccounts;
448
452
  /**
449
- * The time when the billing group was created.
453
+ * The time when the billing group was created.
450
454
  */
451
455
  CreationTime?: Instant;
452
456
  /**
453
- * The most recent time when the billing group was modified.
457
+ * The most recent time when the billing group was modified.
454
458
  */
455
459
  LastModifiedTime?: Instant;
456
460
  /**
457
- * The billing group status. Only one of the valid values can be used.
461
+ * The billing group status. Only one of the valid values can be used.
458
462
  */
459
463
  Status?: BillingGroupStatus;
460
464
  /**
461
- * The reason why the billing group is in its current status.
465
+ * The reason why the billing group is in its current status.
462
466
  */
463
467
  StatusReason?: BillingGroupStatusReason;
468
+ /**
469
+ * Specifies if the billing group has automatic account association (AutoAssociate) enabled.
470
+ */
471
+ AccountGrouping?: ListBillingGroupAccountGrouping;
464
472
  }
465
473
  export type BillingGroupName = string;
466
474
  export type BillingGroupStatus = "ACTIVE"|"PRIMARY_ACCOUNT_MISSING"|string;
467
475
  export type BillingGroupStatusList = BillingGroupStatus[];
468
476
  export type BillingGroupStatusReason = string;
469
477
  export type BillingPeriod = string;
478
+ export type Boolean = boolean;
470
479
  export type ClientToken = string;
471
480
  export interface ComputationPreference {
472
481
  /**
@@ -484,7 +493,7 @@ declare namespace Billingconductor {
484
493
  */
485
494
  Name: BillingGroupName;
486
495
  /**
487
- * The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated family.
496
+ * The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated billing family.
488
497
  */
489
498
  AccountGrouping: AccountGrouping;
490
499
  /**
@@ -652,25 +661,25 @@ declare namespace Billingconductor {
652
661
  export type CustomLineItemBatchDisassociationsList = CustomLineItemAssociationElement[];
653
662
  export interface CustomLineItemBillingPeriodRange {
654
663
  /**
655
- * The inclusive start billing period that defines a billing period range where a custom line is applied.
664
+ * The inclusive start billing period that defines a billing period range where a custom line is applied.
656
665
  */
657
666
  InclusiveStartBillingPeriod: BillingPeriod;
658
667
  /**
659
- * The inclusive end billing period that defines a billing period range where a custom line is applied.
668
+ * The inclusive end billing period that defines a billing period range where a custom line is applied.
660
669
  */
661
670
  ExclusiveEndBillingPeriod?: BillingPeriod;
662
671
  }
663
672
  export interface CustomLineItemChargeDetails {
664
673
  /**
665
- * A CustomLineItemFlatChargeDetails that describes the charge details of a flat custom line item.
674
+ * A CustomLineItemFlatChargeDetails that describes the charge details of a flat custom line item.
666
675
  */
667
676
  Flat?: CustomLineItemFlatChargeDetails;
668
677
  /**
669
- * A CustomLineItemPercentageChargeDetails that describes the charge details of a percentage custom line item.
678
+ * A CustomLineItemPercentageChargeDetails that describes the charge details of a percentage custom line item.
670
679
  */
671
680
  Percentage?: CustomLineItemPercentageChargeDetails;
672
681
  /**
673
- * The type of the custom line item that indicates whether the charge is a fee or credit.
682
+ * The type of the custom line item that indicates whether the charge is a fee or credit.
674
683
  */
675
684
  Type: CustomLineItemType;
676
685
  }
@@ -678,50 +687,50 @@ declare namespace Billingconductor {
678
687
  export type CustomLineItemDescription = string;
679
688
  export interface CustomLineItemFlatChargeDetails {
680
689
  /**
681
- * The custom line item's fixed charge value in USD.
690
+ * The custom line item's fixed charge value in USD.
682
691
  */
683
692
  ChargeValue: CustomLineItemChargeValue;
684
693
  }
685
694
  export type CustomLineItemList = CustomLineItemListElement[];
686
695
  export interface CustomLineItemListElement {
687
696
  /**
688
- * The Amazon Resource Names (ARNs) for custom line items.
697
+ * The Amazon Resource Names (ARNs) for custom line items.
689
698
  */
690
699
  Arn?: CustomLineItemArn;
691
700
  /**
692
- * The custom line item's name.
701
+ * The custom line item's name.
693
702
  */
694
703
  Name?: CustomLineItemName;
695
704
  /**
696
- * A ListCustomLineItemChargeDetails that describes the charge details of a custom line item.
705
+ * A ListCustomLineItemChargeDetails that describes the charge details of a custom line item.
697
706
  */
698
707
  ChargeDetails?: ListCustomLineItemChargeDetails;
699
708
  /**
700
- * The custom line item's charge value currency. Only one of the valid values can be used.
709
+ * The custom line item's charge value currency. Only one of the valid values can be used.
701
710
  */
702
711
  CurrencyCode?: CurrencyCode;
703
712
  /**
704
- * The custom line item's description. This is shown on the Bills page in association with the charge value.
713
+ * The custom line item's description. This is shown on the Bills page in association with the charge value.
705
714
  */
706
715
  Description?: CustomLineItemDescription;
707
716
  /**
708
- * The product code that's associated with the custom line item.
717
+ * The product code that's associated with the custom line item.
709
718
  */
710
719
  ProductCode?: CustomLineItemProductCode;
711
720
  /**
712
- * The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to.
721
+ * The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to.
713
722
  */
714
723
  BillingGroupArn?: BillingGroupArn;
715
724
  /**
716
- * The time created.
725
+ * The time created.
717
726
  */
718
727
  CreationTime?: Instant;
719
728
  /**
720
- * The most recent time when the custom line item was modified.
729
+ * The most recent time when the custom line item was modified.
721
730
  */
722
731
  LastModifiedTime?: Instant;
723
732
  /**
724
- * The number of resources that are associated to the custom line item.
733
+ * The number of resources that are associated to the custom line item.
725
734
  */
726
735
  AssociationSize?: NumberOfAssociations;
727
736
  }
@@ -729,11 +738,11 @@ declare namespace Billingconductor {
729
738
  export type CustomLineItemNameList = CustomLineItemName[];
730
739
  export interface CustomLineItemPercentageChargeDetails {
731
740
  /**
732
- * The custom line item's percentage value. This will be multiplied against the combined value of its associated resources to determine its charge value.
741
+ * The custom line item's percentage value. This will be multiplied against the combined value of its associated resources to determine its charge value.
733
742
  */
734
743
  PercentageValue: CustomLineItemPercentageChargeValue;
735
744
  /**
736
- * A list of resource ARNs to associate to the percentage custom line item.
745
+ * A list of resource ARNs to associate to the percentage custom line item.
737
746
  */
738
747
  AssociatedValues?: CustomLineItemAssociationsList;
739
748
  }
@@ -876,7 +885,7 @@ declare namespace Billingconductor {
876
885
  }
877
886
  export interface DisassociateResourceResponseElement {
878
887
  /**
879
- * The resource ARN that was disassociated from the custom line item.
888
+ * The resource ARN that was disassociated from the custom line item.
880
889
  */
881
890
  Arn?: CustomLineItemAssociationElement;
882
891
  /**
@@ -894,11 +903,11 @@ declare namespace Billingconductor {
894
903
  export type Instant = number;
895
904
  export interface ListAccountAssociationsFilter {
896
905
  /**
897
- * MONITORED: linked accounts that are associated to billing groups. UNMONITORED: linked accounts that are not associated to billing groups. Billing Group Arn: linked accounts that are associated to the provided Billing Group Arn.
906
+ * MONITORED: linked accounts that are associated to billing groups. UNMONITORED: linked accounts that are not associated to billing groups. Billing Group Arn: linked accounts that are associated to the provided Billing Group Arn.
898
907
  */
899
908
  Association?: Association;
900
909
  /**
901
- * The Amazon Web Services account ID to filter on.
910
+ * The Amazon Web Services account ID to filter on.
902
911
  */
903
912
  AccountId?: AccountId;
904
913
  /**
@@ -930,6 +939,12 @@ declare namespace Billingconductor {
930
939
  */
931
940
  NextToken?: Token;
932
941
  }
942
+ export interface ListBillingGroupAccountGrouping {
943
+ /**
944
+ * Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.
945
+ */
946
+ AutoAssociate?: Boolean;
947
+ }
933
948
  export interface ListBillingGroupCostReportsFilter {
934
949
  /**
935
950
  * The list of Amazon Resource Names (ARNs) used to filter billing groups to retrieve reports.
@@ -966,17 +981,21 @@ declare namespace Billingconductor {
966
981
  }
967
982
  export interface ListBillingGroupsFilter {
968
983
  /**
969
- * The list of billing group Amazon Resource Names (ARNs) to retrieve information.
984
+ * The list of billing group Amazon Resource Names (ARNs) to retrieve information.
970
985
  */
971
986
  Arns?: BillingGroupArnList;
972
987
  /**
973
- * The pricing plan Amazon Resource Names (ARNs) to retrieve information.
988
+ * The pricing plan Amazon Resource Names (ARNs) to retrieve information.
974
989
  */
975
990
  PricingPlan?: PricingPlanFullArn;
976
991
  /**
977
992
  * A list of billing groups to retrieve their current status for a specific time range
978
993
  */
979
994
  Statuses?: BillingGroupStatusList;
995
+ /**
996
+ * Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.
997
+ */
998
+ AutoAssociate?: Boolean;
980
999
  }
981
1000
  export interface ListBillingGroupsInput {
982
1001
  /**
@@ -1078,15 +1097,15 @@ declare namespace Billingconductor {
1078
1097
  }
1079
1098
  export interface ListCustomLineItemsFilter {
1080
1099
  /**
1081
- * A list of custom line items to retrieve information.
1100
+ * A list of custom line items to retrieve information.
1082
1101
  */
1083
1102
  Names?: CustomLineItemNameList;
1084
1103
  /**
1085
- * The billing group Amazon Resource Names (ARNs) to retrieve information.
1104
+ * The billing group Amazon Resource Names (ARNs) to retrieve information.
1086
1105
  */
1087
1106
  BillingGroups?: BillingGroupArnList;
1088
1107
  /**
1089
- * A list of custom line item ARNs to retrieve information.
1108
+ * A list of custom line item ARNs to retrieve information.
1090
1109
  */
1091
1110
  Arns?: CustomLineItemArns;
1092
1111
  }
@@ -1156,7 +1175,7 @@ declare namespace Billingconductor {
1156
1175
  }
1157
1176
  export interface ListPricingPlansFilter {
1158
1177
  /**
1159
- * A list of pricing plan Amazon Resource Names (ARNs) to retrieve information.
1178
+ * A list of pricing plan Amazon Resource Names (ARNs) to retrieve information.
1160
1179
  */
1161
1180
  Arns?: PricingPlanArns;
1162
1181
  }
@@ -1230,7 +1249,7 @@ declare namespace Billingconductor {
1230
1249
  }
1231
1250
  export interface ListPricingRulesFilter {
1232
1251
  /**
1233
- * A list containing the pricing rule Amazon Resource Names (ARNs) to include in the API response.
1252
+ * A list containing the pricing rule Amazon Resource Names (ARNs) to include in the API response.
1234
1253
  */
1235
1254
  Arns?: PricingRuleArns;
1236
1255
  }
@@ -1354,27 +1373,27 @@ declare namespace Billingconductor {
1354
1373
  export type PricingPlanList = PricingPlanListElement[];
1355
1374
  export interface PricingPlanListElement {
1356
1375
  /**
1357
- * The name of a pricing plan.
1376
+ * The name of a pricing plan.
1358
1377
  */
1359
1378
  Name?: PricingPlanName;
1360
1379
  /**
1361
- * The pricing plan Amazon Resource Names (ARN). This can be used to uniquely identify a pricing plan.
1380
+ * The pricing plan Amazon Resource Names (ARN). This can be used to uniquely identify a pricing plan.
1362
1381
  */
1363
1382
  Arn?: PricingPlanArn;
1364
1383
  /**
1365
- * The pricing plan description.
1384
+ * The pricing plan description.
1366
1385
  */
1367
1386
  Description?: PricingPlanDescription;
1368
1387
  /**
1369
- * The pricing rules count that's currently associated with this pricing plan list element.
1388
+ * The pricing rules count that's currently associated with this pricing plan list element.
1370
1389
  */
1371
1390
  Size?: NumberOfAssociatedPricingRules;
1372
1391
  /**
1373
- * The time when the pricing plan was created.
1392
+ * The time when the pricing plan was created.
1374
1393
  */
1375
1394
  CreationTime?: Instant;
1376
1395
  /**
1377
- * The most recent time when the pricing plan was modified.
1396
+ * The most recent time when the pricing plan was modified.
1378
1397
  */
1379
1398
  LastModifiedTime?: Instant;
1380
1399
  }
@@ -1387,43 +1406,43 @@ declare namespace Billingconductor {
1387
1406
  export type PricingRuleList = PricingRuleListElement[];
1388
1407
  export interface PricingRuleListElement {
1389
1408
  /**
1390
- * The name of a pricing rule.
1409
+ * The name of a pricing rule.
1391
1410
  */
1392
1411
  Name?: PricingRuleName;
1393
1412
  /**
1394
- * The Amazon Resource Name (ARN) used to uniquely identify a pricing rule.
1413
+ * The Amazon Resource Name (ARN) used to uniquely identify a pricing rule.
1395
1414
  */
1396
1415
  Arn?: PricingRuleArn;
1397
1416
  /**
1398
- * The pricing rule description.
1417
+ * The pricing rule description.
1399
1418
  */
1400
1419
  Description?: PricingRuleDescription;
1401
1420
  /**
1402
- * The scope of pricing rule that indicates if it is globally applicable, or if it is service-specific.
1421
+ * The scope of pricing rule that indicates if it is globally applicable, or if it is service-specific.
1403
1422
  */
1404
1423
  Scope?: PricingRuleScope;
1405
1424
  /**
1406
- * The type of pricing rule.
1425
+ * The type of pricing rule.
1407
1426
  */
1408
1427
  Type?: PricingRuleType;
1409
1428
  /**
1410
- * A percentage modifier applied on the public pricing rates.
1429
+ * A percentage modifier applied on the public pricing rates.
1411
1430
  */
1412
1431
  ModifierPercentage?: ModifierPercentage;
1413
1432
  /**
1414
- * If the Scope attribute is SERVICE, this attribute indicates which service the PricingRule is applicable for.
1433
+ * If the Scope attribute is SERVICE, this attribute indicates which service the PricingRule is applicable for.
1415
1434
  */
1416
1435
  Service?: Service;
1417
1436
  /**
1418
- * The pricing plans count that this pricing rule is associated with.
1437
+ * The pricing plans count that this pricing rule is associated with.
1419
1438
  */
1420
1439
  AssociatedPricingPlanCount?: NumberOfPricingPlansAssociatedWith;
1421
1440
  /**
1422
- * The time when the pricing rule was created.
1441
+ * The time when the pricing rule was created.
1423
1442
  */
1424
1443
  CreationTime?: Instant;
1425
1444
  /**
1426
- * The most recent time when the pricing rule was modified.
1445
+ * The most recent time when the pricing rule was modified.
1427
1446
  */
1428
1447
  LastModifiedTime?: Instant;
1429
1448
  /**
@@ -1485,6 +1504,12 @@ declare namespace Billingconductor {
1485
1504
  }
1486
1505
  export interface UntagResourceResponse {
1487
1506
  }
1507
+ export interface UpdateBillingGroupAccountGrouping {
1508
+ /**
1509
+ * Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.
1510
+ */
1511
+ AutoAssociate?: Boolean;
1512
+ }
1488
1513
  export interface UpdateBillingGroupInput {
1489
1514
  /**
1490
1515
  * The Amazon Resource Name (ARN) of the billing group being updated.
@@ -1506,6 +1531,10 @@ declare namespace Billingconductor {
1506
1531
  * A description of the billing group.
1507
1532
  */
1508
1533
  Description?: BillingGroupDescription;
1534
+ /**
1535
+ * Specifies if the billing group has automatic account association (AutoAssociate) enabled.
1536
+ */
1537
+ AccountGrouping?: UpdateBillingGroupAccountGrouping;
1509
1538
  }
1510
1539
  export interface UpdateBillingGroupOutput {
1511
1540
  /**
@@ -1544,6 +1573,10 @@ declare namespace Billingconductor {
1544
1573
  * The reason why the billing group is in its current status.
1545
1574
  */
1546
1575
  StatusReason?: BillingGroupStatusReason;
1576
+ /**
1577
+ * Specifies if the billing group has automatic account association (AutoAssociate) enabled.
1578
+ */
1579
+ AccountGrouping?: UpdateBillingGroupAccountGrouping;
1547
1580
  }
1548
1581
  export interface UpdateCustomLineItemChargeDetails {
1549
1582
  /**