This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
git status
3249 lines (3249 loc) · 278 KB
/
git status
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[1mdiff --git a/doc_source/History.md b/doc_source/History.md[m
[1mindex 5709d00..c854820 100644[m
[1m--- a/doc_source/History.md[m
[1m+++ b/doc_source/History.md[m
[36m@@ -4,6 +4,22 @@[m [mThe following table describes the documentation for this release of the *AWS Bil[m
[m
| Change | Description | Date | [m
| --- |--- |--- |[m
[32m+[m[32m| [Added normalized units to Cost Explorer](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-default-reports.html) | Cost Explorer reports now include normalized units\. | February 5, 2019 |[m[41m [m
[32m+[m[32m| [Credit application changes](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/useconsolidatedbilling-credits.html) | AWS changed how they apply credits\. | January 17, 2019 |[m[41m [m
[32m+[m[32m| [New payment behavior](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/edit-aispl-payment-method.html#aispl-enable-recurring) | AISPL customers can now enable the auto\-charge ability for their payments\. | December 20, 2018 |[m[41m [m
[32m+[m[32m| [New AWS Price List Service endpoint](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/using-pelong.html) | Added a new endpoint for AWS Price List Service\. | December 17, 2018 |[m[41m [m
[32m+[m[32m| [Updated the Cost Explorer UI](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-exploring-data.html) | Updated the Cost Explorer UI\. | November 15, 2018 |[m[41m [m
[32m+[m[32m| [Integrated Amazon Athena into AWS Cost and Usage Report](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/athena.html) | Added the ability to upload the data from an AWS Cost and Usage report into Athena\. | November 15, 2018 |[m[41m [m
[32m+[m[32m| [Added budget history](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-view.html) | Added the ability to see the history of a budget\. | November 13, 2018 |[m[41m [m
[32m+[m[32m| [Expanded budget services](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html) | Expanded RI budgets to Amazon Elasticsearch Service\. | November 8, 2018 |[m[41m [m
[32m+[m[32m| [Added a new payment method](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-debit-emea.html) | Added the SEPA Direct Debit payment method\. | October 25, 2018 |[m[41m [m
[32m+[m[32m| [Added On\-Demand capacity reservations](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-reports-costusage-cr.html) | Added documentation about AWS Cost and Usage report line items that apply to capacity reservations\. | October 25, 2018 |[m[41m [m
[32m+[m[32m| [Redesigned budget experience](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-create.html) | Updated the budget UI and workflow\. | October 23, 2018 |[m[41m [m
[32m+[m[32m| [New Reserved Instance recommendation columns](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ri-recommendations.html#saving-rex) | Added new columns to the Cost Explorer RI recommendations\. | October 18, 2018 |[m[41m [m
[32m+[m[32m| [New AWS CloudTrail actions](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/logging-using-cloudtrail.html) | More actions added to CloudTrail logging\.\. | October 18, 2018 |[m[41m [m
[32m+[m[32m| [Added a new Reserved Instance report](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-default-reports.html) | Expanded RI reports to Amazon Elasticsearch Service\. | October 10, 2018 |[m[41m [m
[32m+[m[32m| [New AWS Cost and Usage Report columns](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-reports-costusage-details.html) | New columns added to the AWS Cost and Usage report\. | September 27, 2018 |[m[41m [m
[32m+[m[32m| [Cost Explorer walkthrough](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-getting-started.html) | Cost Explorer now provides a walkthrough for the most common functionality\. | September 24, 2018 |[m[41m [m
| [Added CloudTrail events](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/logging-using-cloudtrail.html) | Added additional CloudTrail events\. | August 13, 2018 | [m
| [Added a new payment method](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-debit.html) | Added the ACH Direct Debit payment method\. | July 24, 2018 | [m
| [Updated the AWS Free Tier Widget](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/tracking-free-tier-usage.html#free-tier-table) | Updated the AWS Free Tier Widget\. | July 19, 2018 | [m
[1mdiff --git a/doc_source/account-closure-faq.md b/doc_source/account-closure-faq.md[m
[1mindex 7d6ef0d..d4f7cbe 100644[m
[1m--- a/doc_source/account-closure-faq.md[m
[1m+++ b/doc_source/account-closure-faq.md[m
[36m@@ -35,7 +35,7 @@[m [mClosing an account removes it from an organization after the Post\-Closure Perio[m
[m
## Q: Are you retaining my content after I close my account?<a name="closure-question-5"></a>[m
[m
[31m-During the Post\-Closure Period, AWS may retain any content that you didn't delete and any AWS services that you didn't terminate before you closed your AWS account\. You can access any remaining content or AWS services only by reopening your account during the Post\-Closure Period\. After the Post\-Closure Period, any remaining content in your account is deleted\. If you want to delete your content before that time, you should delete your content before closing your account\. [m
[32m+[m[32mWe don't retain any content that you delete before account closure, but we might not delete your content during the Post\-Closure Period\. After the Post\-Closure Period, any remaining content in your account is deleted\. If you want to delete your content before that time, you should delete your content before closing your account\.[m[41m [m
[m
## Q: I have granted other AWS accounts access to my account's AWS services\. Can they access my AWS services after I have closed my account?<a name="closure-question-6"></a>[m
[m
[1mdiff --git a/doc_source/activate-built-in-tags.md b/doc_source/activate-built-in-tags.md[m
[1mindex 4d5698d..d18c382 100644[m
[1m--- a/doc_source/activate-built-in-tags.md[m
[1m+++ b/doc_source/activate-built-in-tags.md[m
[36m@@ -1,6 +1,6 @@[m
[31m-# Activating the AWS\-Generated Cost Allocation Tag<a name="activate-built-in-tags"></a>[m
[32m+[m[32m# Activating the AWS\-Generated Cost Allocation Tags<a name="activate-built-in-tags"></a>[m
[m
[31m-Master account owners can activate the AWS generated tags in the Billing and Cost Management console\. When a master account owner activates the tag it is also activated for all member accounts\. This tag is visible only in the Billing and Cost Management console and reports\.<a name="activate-built-in-tag"></a>[m
[32m+[m[32mMaster account owners can activate the AWS generated tags in the Billing and Cost Management console\. When a master account owner activates the tag, it's also activated for all member accounts\. This tag is visible only in the Billing and Cost Management console and reports\.<a name="activate-built-in-tag"></a>[m
[m
**To activate the AWS generated tags**[m
[m
[1mdiff --git a/doc_source/activating-tags.md b/doc_source/activating-tags.md[m
[1mindex 0698f9d..61286a7 100644[m
[1m--- a/doc_source/activating-tags.md[m
[1m+++ b/doc_source/activating-tags.md[m
[36m@@ -1,6 +1,6 @@[m
# Activating User\-Defined Cost Allocation Tags<a name="activating-tags"></a>[m
[m
[31m-In order for tags to appear on your billing reports, you must activate your applied tags in the billing console\. [m
[32m+[m[32mFor tags to appear on your billing reports, you must activate your applied tags in the Billing and Cost Management console\.[m[41m [m
[m
**To activate your tags**[m
[m
[1mdiff --git a/doc_source/allocation-tag-restrictions.md b/doc_source/allocation-tag-restrictions.md[m
[1mindex 8c536c4..2408d31 100644[m
[1m--- a/doc_source/allocation-tag-restrictions.md[m
[1m+++ b/doc_source/allocation-tag-restrictions.md[m
[36m@@ -1,17 +1,17 @@[m
# User\-Defined Tag Restrictions<a name="allocation-tag-restrictions"></a>[m
[m
The following basic restrictions apply to tags:[m
[31m-+ Maximum key length: 128 Unicode characters[m
[31m-+ Maximum value length: 256 Unicode characters[m
[31m-+ Case sensitive[m
[31m-+ Maximum number of tags per resource: 50[m
[31m-+ Maximum active tag keys for Billing and Cost Management reports: 500[m
[31m-+ Reserved prefix—`aws:`[m
[32m+[m[32m+ The maximum key length is 128 Unicode characters\.[m
[32m+[m[32m+ The maximum value length is 256 Unicode characters\.[m
[32m+[m[32m+ Tags are case sensitive\.[m
[32m+[m[32m+ The maximum number of tags per resource is 50\.[m
[32m+[m[32m+ The maximum active tag keys for Billing and Cost Management reports is 500\.[m
[32m+[m[32m+ The reserved prefix is `aws:`\.[m
[m
[31m- AWS\-generated tag names and values are automatically assigned the `aws:` prefix, which you cannot assign\. User\-defined tag names have the prefix `user:` in the Cost Allocation Report\.[m
[32m+[m[32m AWS generated tag names and values are automatically assigned the `aws:` prefix, which you can't assign\. User\-defined tag names have the prefix `user:` in the cost allocation report\.[m
+ Use each key only once for each resource\. If you attempt to use the same key twice on the same resource, your request will be rejected\.[m
[31m-+ You cannot tag a resource at the same time you create it\. Tagging requires a separate action after the resource is created\.[m
[31m-+ You cannot backdate the application of a tag\. This means that tags only start appearing on your cost allocation report after you apply them, and don't appear on earlier reports\.[m
[32m+[m[32m+ In some services, you can tag a resource when you create it\. For more information, see the documentation for the service where you want to tag resources\.[m
[32m+[m[32m+ You can't backdate the application of a tag\. This means that tags only start appearing on your cost allocation report after you apply them and don't appear on earlier reports\.[m
+ Allowed characters are Unicode letters, whitespace, and numbers, plus the following special characters: \+ \- = \. \_ : /[m
**Note** [m
If you need characters outside this allowed set, you can apply standard base\-64 encoding to your tag\. Billing and Cost Management does not encode or decode your tag for you\.[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/api-reference.md b/doc_source/api-reference.md[m
[1mdeleted file mode 100644[m
[1mindex 62ac67d..0000000[m
[1m--- a/doc_source/api-reference.md[m
[1m+++ /dev/null[m
[36m@@ -1,9 +0,0 @@[m
[31m-# API Reference<a name="api-reference"></a>[m
[31m-[m
[31m-This section contains the Billing and Cost Management API Reference documentation\. When making the API calls, you need to authenticate your request by providing a signature\. Billing and Cost Management supports signature version 4\. For more information, see [Signature Version 4 Signing Process](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html) in the *Amazon Web Services General Reference*\.[m
[31m-[m
[31m-If you are using a language for which an AWS SDK exists, use the SDK rather than trying to work your way through the APIs\. The SDKs make authentication simpler, integrate easily with your development environment, and provide easy access to Billing and Cost Management commands\. For more information about the AWS SDKs, including how to set up your environment, links to the SDK documentation, and sample code, see [Tools for Amazon Web Services, Inc\.](https://aws.amazon.com/tools)[m
[31m-[m
[31m-**Topics**[m
[31m-+ [Actions](operations.md)[m
[31m-+ [Data Types](data-types.md)[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/aws-tag-restrictions.md b/doc_source/aws-tag-restrictions.md[m
[1mindex 8fd9a59..c19b15c 100644[m
[1m--- a/doc_source/aws-tag-restrictions.md[m
[1m+++ b/doc_source/aws-tag-restrictions.md[m
[36m@@ -1,11 +1,11 @@[m
[31m-# AWS\-Generated Cost Allocation Tag Restrictions<a name="aws-tag-restrictions"></a>[m
[32m+[m[32m# Restrictions on AWS\-Generated Cost Allocation Tags<a name="aws-tag-restrictions"></a>[m
[m
The following restrictions apply to the AWS generated tags:[m
[31m-+ AWS generated tags can only be activated by master accounts\.[m
[31m-+ You can't update, edit, or delete AWS tags\.[m
[31m-+ AWS\-generated cost allocation tags are not applied to resources that were created before the tag was activated\.[m
[31m-+ Maximum active tag keys for Billing and Cost Management reports: 500\.[m
[32m+[m[32m+ Only master accounts can activate AWS generated tags\.[m
[32m+[m[32m+ You can't update, edit, or delete AWS generated tags\.[m
[32m+[m[32m+ AWS\-generated cost allocation tags aren't applied to resources that were created before the tag was activated\.[m
[32m+[m[32m+ The maximum active tag keys for Billing and Cost Management reports is 500\.[m
+ AWS generated tags are created using CloudTrail logs\. CloudTrail logs over a certain size cause AWS generated tag creation to fail\.[m
[31m-+ Reserved prefix—`aws:`\.[m
[32m+[m[32m+ The reserved prefix is `aws:`\.[m
[m
[31m- AWS\-generated tag names and values are automatically assigned the `aws:` prefix, which you can't assign\. AWS\-generated tag names don't count towards the tag limit of 50\. User\-defined tag names have the prefix `user:` in the Cost Allocation Report\.[m
\ No newline at end of file[m
[32m+[m[32m AWS generated tag names and values are automatically assigned the `aws:` prefix, which you can't assign\. AWS generated tag names don't count towards the user\-defined resource tag limit of 50\. User\-defined tag names have the prefix `user:` in the cost allocation report\.[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/aws-tags.md b/doc_source/aws-tags.md[m
[1mindex 055c184..3ba157c 100644[m
[1m--- a/doc_source/aws-tags.md[m
[1m+++ b/doc_source/aws-tags.md[m
[36m@@ -12,11 +12,11 @@[m [mkey = aws:createdBy[m
value = account-type:account-ID or access-key:user-name or role session name[m
```[m
[m
[31m-Not all values include all of the value parameters\. For example, the value for a AWS generated tag for a root account does not always have a user name\.[m
[32m+[m[32mNot all values include all of the value parameters\. For example, the value for a AWS generated tag for a root account doesn't always have a user name\.[m
[m
Valid values for the *account\-type* are `Root`, `IAMUser`, `AssumedRole`, and `FederatedUser`\.[m
[m
[31m-If the tag has an account\-ID, then the *account\-id* tracks the account number of the root account or federated user who created the resource\. If the tag has an access\-key, then the *access\-key* tracks the IAM access key used, and, if applicable, the session role name\.[m
[32m+[m[32mIf the tag has an account ID, the *account\-id* tracks the account number of the root account or federated user who created the resource\. If the tag has an access key, then the *access\-key* tracks the IAM access key used and, if applicable, the session role name\.[m
[m
The *user\-name* is the user name, if one is available\.[m
[m
[36m@@ -32,56 +32,56 @@[m [mFederatedUser:1234567890:exampleUser[m
[m
For more information about IAM users, roles, and federation, see the [IAM User Guide](https://docs.aws.amazon.com/IAM/latest/UserGuide/)\.[m
[m
[31m-AWS\-generated cost allocation tags are applied on a best\-effort basis\. Issues with services that AWS\-generated tags depend on, such as CloudTrail, can cause a gap in tagging\. [m
[32m+[m[32mAWS\-generated cost allocation tags are applied on a best\-effort basis\. Issues with services that AWS generated tags depend on, such as CloudTrail, can cause a gap in tagging\.[m[41m [m
[m
[31m-The `createdBy` tag is applied only to the following services and resources after the following events:[m
[32m+[m[32mThe `createdBy` tag is applied only to the following services and resources after the following events\.[m
[m
[m
| AWS Product | API or Console Event | Resource Type | [m
| --- | --- | --- | [m
[31m-| AWS CloudFormation \(AWS CloudFormation\) | CreateStack | Stack | [m
[31m-| AWS Data Pipeline \(AWS Data Pipeline\) | CreatePipeline | Pipeline | [m
[31m-| Amazon Elastic Compute Cloud \(Amazon EC2\) | CreateCustomerGateway | Customer gateway | [m
[31m-| | CreateDhcpOptions | DHCP options | [m
[31m-| | CreateImage | Image | [m
[31m-| | CreateInternetGateway | Internet gateway | [m
[31m-| | CreateNetworkAcl | Network ACL | [m
[31m-| | CreateNetworkInterface | Network interface | [m
[31m-| | CreateRouteTable | Route table | [m
[31m-| | CreateSecurityGroup | Security group | [m
[31m-| | CreateSnapshot | Snapshot | [m
[31m-| | CreateSubnet | Subnet | [m
[31m-| | CreateVolume | Volume | [m
[31m-| | CreateVpc | VPC | [m
[31m-| | CreateVpcPeeringConnection | VPC peering connection | [m
[31m-| | CreateVpnConnection | VPN connection | [m
[31m-| | CreateVpnGateway | VPN gateway | [m
[31m-| | PurchaseReservedInstancesOffering | Reserved\-instance | [m
[31m-| | RequestSpotInstances | Spot\-instance\-request | [m
[31m-| | RunInstances | Instance | [m
[31m-| Amazon ElastiCache \(ElastiCache\) | CreateSnapshot | Snapshot | [m
[31m-| | CreateCacheCluster | Cluster | [m
[31m-| AWS Elastic Beanstalk \(Elastic Beanstalk\) | CreateEnvironment | Environment | [m
[31m-| | CreateApplication | Application | [m
[31m-| Elastic Load Balancing \(Elastic Load Balancing\) | CreateLoadBalancer | Loadbalancer | [m
[31m-| Amazon S3 Glacier \(Glacier\) | CreateVault | Vault | [m
[31m-| Amazon Kinesis \(Kinesis\) | CreateStream | Stream | [m
[31m-| Amazon Relational Database Service \(Amazon RDS\) | CreateDBInstanceReadReplica | Database | [m
[31m-| | CreateDBParameterGroup | ParameterGroup | [m
[31m-| | CreateDBSnapshot | Snapshot | [m
[31m-| | CreateDBSubnetGroup | SubnetGroup | [m
[31m-| | CreateEventSubscription | EventSubscription | [m
[31m-| | CreateOptionGroup | OptionGroup | [m
[31m-| | PurchaseReservedDBInstancesOffering | ReservedDBInstance | [m
[31m-| | CreateDBInstance | Database | [m
[31m-| Amazon Redshift \(Amazon Redshift\) | CreateClusterParameterGroup | ParameterGroup | [m
[31m-| | CreateClusterSnapshot | Snapshot | [m
[31m-| | CreateClusterSubnetGroup | SubnetGroup | [m
[31m-| | CreateCluster | Cluster | [m
[31m-| Amazon Route 53 \(Route 53\) | CreateHealthCheck | HealthCheck | [m
[31m-| | CreatedHostedZone | HostedZone | [m
[31m-| Amazon Simple Storage Service \(Amazon S3\) | CreateBucket | Bucket | [m
[31m-| AWS Storage Gateway \(AWS Storage Gateway\) | ActivateGateway | Gateway | [m
[32m+[m[32m| AWS CloudFormation \(AWS CloudFormation\) | `CreateStack` | Stack |[m[41m [m
[32m+[m[32m| AWS Data Pipeline \(AWS Data Pipeline\) | `CreatePipeline` | Pipeline |[m[41m [m
[32m+[m[32m| Amazon Elastic Compute Cloud \(Amazon EC2\) | `CreateCustomerGateway` | Customer gateway |[m[41m [m
[32m+[m[32m| | `CreateDhcpOptions` | DHCP options |[m[41m [m
[32m+[m[32m| | `CreateImage` | Image |[m[41m [m
[32m+[m[32m| | `CreateInternetGateway` | Internet gateway |[m[41m [m
[32m+[m[32m| | `CreateNetworkAcl` | Network ACL |[m[41m [m
[32m+[m[32m| | `CreateNetworkInterface` | Network interface |[m[41m [m
[32m+[m[32m| | `CreateRouteTable` | Route table |[m[41m [m
[32m+[m[32m| | `CreateSecurityGroup` | Security group |[m[41m [m
[32m+[m[32m| | `CreateSnapshot` | Snapshot |[m[41m [m
[32m+[m[32m| | `CreateSubnet` | Subnet |[m[41m [m
[32m+[m[32m| | `CreateVolume` | Volume |[m[41m [m
[32m+[m[32m| | `CreateVpc` | VPC |[m[41m [m
[32m+[m[32m| | `CreateVpcPeeringConnection` | VPC peering connection |[m[41m [m
[32m+[m[32m| | `CreateVpnConnection` | VPN connection |[m[41m [m
[32m+[m[32m| | `CreateVpnGateway` | VPN gateway |[m[41m [m
[32m+[m[32m| | `PurchaseReservedInstancesOffering` | Reserved\-instance |[m[41m [m
[32m+[m[32m| | `RequestSpotInstances` | Spot\-instance\-request |[m[41m [m
[32m+[m[32m| | `RunInstances` | Instance |[m[41m [m
[32m+[m[32m| Amazon ElastiCache \(ElastiCache\) | `CreateSnapshot` | Snapshot |[m[41m [m
[32m+[m[32m| | `CreateCacheCluster` | Cluster |[m[41m [m
[32m+[m[32m| AWS Elastic Beanstalk \(Elastic Beanstalk\) | `CreateEnvironment` | Environment |[m[41m [m
[32m+[m[32m| | `CreateApplication` | Application |[m[41m [m
[32m+[m[32m| Elastic Load Balancing \(Elastic Load Balancing\) | `CreateLoadBalancer` | Loadbalancer |[m[41m [m
[32m+[m[32m| Amazon S3 Glacier \(Glacier\) | `CreateVault` | Vault |[m[41m [m
[32m+[m[32m| Amazon Kinesis \(Kinesis\) | `CreateStream` | Stream |[m[41m [m
[32m+[m[32m| Amazon Relational Database Service \(Amazon RDS\) | `CreateDBInstanceReadReplica` | Database |[m[41m [m
[32m+[m[32m| | `CreateDBParameterGroup` | ParameterGroup |[m[41m [m
[32m+[m[32m| | `CreateDBSnapshot` | Snapshot |[m[41m [m
[32m+[m[32m| | `CreateDBSubnetGroup` | SubnetGroup |[m[41m [m
[32m+[m[32m| | `CreateEventSubscription` | EventSubscription |[m[41m [m
[32m+[m[32m| | `CreateOptionGroup` | OptionGroup |[m[41m [m
[32m+[m[32m| | `PurchaseReservedDBInstancesOffering` | ReservedDBInstance |[m[41m [m
[32m+[m[32m| | `CreateDBInstance` | Database |[m[41m [m
[32m+[m[32m| Amazon Redshift \(Amazon Redshift\) | `CreateClusterParameterGroup` | ParameterGroup |[m[41m [m
[32m+[m[32m| | `CreateClusterSnapshot` | Snapshot |[m[41m [m
[32m+[m[32m| | `CreateClusterSubnetGroup` | SubnetGroup |[m[41m [m
[32m+[m[32m| | `CreateCluster` | Cluster |[m[41m [m
[32m+[m[32m| Amazon Route 53 \(Route 53\) | `CreateHealthCheck` | HealthCheck |[m[41m [m
[32m+[m[32m| | `CreatedHostedZone` | HostedZone |[m[41m [m
[32m+[m[32m| Amazon Simple Storage Service \(Amazon S3\) | `CreateBucket` | Bucket |[m[41m [m
[32m+[m[32m| AWS Storage Gateway \(AWS Storage Gateway\) | `ActivateGateway` | Gateway |[m[41m [m
[m
**Note** [m
[31m-The CreateDBSnapshot tag is not applied to the snapshot backup storage\.[m
\ No newline at end of file[m
[32m+[m[32mThe `CreateDBSnapshot` tag isn't applied to the snapshot backup storage\.[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/billing-get-answers.md b/doc_source/billing-get-answers.md[m
[1mindex 4d7f466..18ad1d0 100644[m
[1m--- a/doc_source/billing-get-answers.md[m
[1m+++ b/doc_source/billing-get-answers.md[m
[36m@@ -7,7 +7,7 @@[m [mIn addition, all AWS account owners have access to account and billing support f[m
This section guides you through contacting AWS Support and opening a support case for your billing inquiry, which is the fastest and most direct method for communicating with AWS Support\. AWS Support does not publish a direct phone number for reaching a support representative\. [m
[m
**Note** [m
[31m-To open an AWS Support case where you specify *Regarding: Account and Billing Support*, you must be signed into AWS as the root account owner\. [m
[32m+[m[32mTo open an AWS Support case where you specify *Regarding: Account and Billing Support*, you must either be signed into AWS as the root account owner, or have IAM permissions to open a support case\. For more information, see [Accessing AWS Support](https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#accessing-support) in the AWS Support User Guide\.[m
[m
**Contacting AWS Support**[m
[m
[1mdiff --git a/doc_source/billing-getting-started.md b/doc_source/billing-getting-started.md[m
[1mindex 973714c..205cb72 100644[m
[1m--- a/doc_source/billing-getting-started.md[m
[1m+++ b/doc_source/billing-getting-started.md[m
[36m@@ -1,12 +1,12 @@[m
# Getting Started<a name="billing-getting-started"></a>[m
[m
[31m-The following steps discuss a few of the most common tasks you're likely to perform when using the Billing and Cost Management console\. [m
[32m+[m[32mThe following steps discuss a few of the most common tasks that you're likely to perform when using the Billing and Cost Management console\.[m[41m [m
[m
**Topics**[m
+ [Step 1: Review Your Usage](#billing-gs-review)[m
+ [Step 2: Turn on Reports](#step-2)[m
+ [Step 3: Download or Print Your Bill](#billing-gs-download)[m
[31m-+ [Step 4: Set Up Alerts to Monitor Charges to Your Account](#billing-gs-alerts)[m
[32m+[m[32m+ [Step 4: Set Up Budgets to Monitor Your Account](#billing-gs-alerts)[m
+ [Step 5: Get Answers to Questions About Your Bill](#billing-gs-answer)[m
+ [Where Do I Go from Here?](#whereto)[m
[m
[36m@@ -20,14 +20,14 @@[m [mBilling and Cost Management offers you a number of different ways to view and mo[m
[m
1. On the navigation pane, choose the applicable option: [m
**Cost Explorer** [m
[31m- Choose [https://console.aws.amazon.com/cost-reports/home?#/custom](https://console.aws.amazon.com/cost-reports/home?#/custom) to track and analyze your AWS usage\. Cost Explorer is free for all accounts\. For more information about Cost Explorer, see [Analyzing Your Costs with Cost Explorer](ce-what-is.md)\. [m
[32m+[m[32m Choose [Cost Explorer](https://console.aws.amazon.com/cost-reports/home?#/custom) to track and analyze your AWS usage\. Cost Explorer is free for all accounts\. For more information about Cost Explorer, see [Analyzing Your Costs with Cost Explorer](ce-what-is.md)\.[m[41m [m
**Budgets** [m
[31m- Choose [https://console.aws.amazon.com/billing/home?region=us-east-1#/budgets](https://console.aws.amazon.com/billing/home?region=us-east-1#/budgets) to manage budgets for your account\. For more information about budgets, see [Monitoring Your Usage and Costs](monitoring-costs.md)\. [m
[32m+[m[32m Choose [Budgets](https://console.aws.amazon.com/billing/home?region=us-east-1#/budgets) to manage budgets for your account\. For more information about budgets, see [Monitoring Your Usage and Costs](monitoring-costs.md)\.[m[41m [m
You can also check the status of your free tier with the provided AWS Free Tier usage alerts using AWS Budgets\. For more information about AWS Free Tier usage alerts, see [Free Tier Usage Alerts Using AWS Budgets](tracking-free-tier-usage.md#free-budget)\. [m
**Bills** [m
[31m- Choose [https://console.aws.amazon.com/billing/home?region=us-east-1#/bill](https://console.aws.amazon.com/billing/home?region=us-east-1#/bill) to see details about your current charges\. [m
[32m+[m[32m Choose [Bills](https://console.aws.amazon.com/billing/home?region=us-east-1#/bill) to see details about your current charges\.[m[41m [m
**Payment History** [m
[31m- Choose [https://console.aws.amazon.com/billing/home?region=us-east-1#/paymenthistory/history?redirected](https://console.aws.amazon.com/billing/home?region=us-east-1#/paymenthistory/history?redirected) to see your past payment transactions\. [m
[32m+[m[32m Choose [Payment History](https://console.aws.amazon.com/billing/home?region=us-east-1#/paymenthistory/history?redirected) to see your past payment transactions\.[m[41m [m
[m
## Step 2: Turn on Reports<a name="step-2"></a>[m
[m
[36m@@ -35,7 +35,7 @@[m [mYou can also check the status of your free tier with the provided AWS Free Tier[m
[m
Billing and Cost Management can deliver your reports to an Amazon S3 bucket that you create\. Amazon S3 is the AWS Cloud storage offering\. The payer account must own the Amazon S3 bucket\. Reports can't be delivered to a bucket owned by a linked account\. [m
[m
[31m-**Create an Amazon S3 bucket for your reports**[m
[32m+[m[32m**To create an Amazon S3 bucket for your reports**[m
[m
1. Open the Amazon S3 console at [https://console\.aws\.amazon\.com/s3/](https://console.aws.amazon.com/s3/)\.[m
[m
[36m@@ -57,7 +57,7 @@[m [mYour bucket name must be all lowercase, from 3 to 63 characters long, and can't[m
[m
1. Choose **Create bucket**\.[m
[m
[31m-**Grant Billing and Cost Management permission to deliver reports to your Amazon S3 bucket**[m
[32m+[m[32m**To grant Billing and Cost Management permission to deliver reports to your Amazon S3 bucket**[m
[m
1. Open the Amazon S3 console at [https://console\.aws\.amazon\.com/s3/](https://console.aws.amazon.com/s3/)\.[m
[m
[36m@@ -76,7 +76,7 @@[m [mYour bucket name must be all lowercase, from 3 to 63 characters long, and can't[m
{[m
"Effect": "Allow",[m
"Principal": {[m
[31m- "AWS": "386209384616"[m
[32m+[m[32m "Service": "billingreports.amazonaws.com"[m
},[m
"Action": [[m
"s3:GetBucketAcl",[m
[36m@@ -87,7 +87,7 @@[m [mYour bucket name must be all lowercase, from 3 to 63 characters long, and can't[m
{[m
"Effect": "Allow",[m
"Principal": {[m
[31m- "AWS": "386209384616"[m
[32m+[m[32m "Service": "billingreports.amazonaws.com"[m
},[m
"Action": "s3:PutObject",[m
"Resource": "arn:aws:s3:::bucketname/*"[m
[36m@@ -96,15 +96,15 @@[m [mYour bucket name must be all lowercase, from 3 to 63 characters long, and can't[m
}[m
```[m
[m
[31m-1. Replace *bucketname* with the name of your bucket\. Don't replace the **Principal** number `386209384616`\. AWS uses that account to deliver reports to the S3 bucket\.[m
[32m+[m[32m1. Replace *bucketname* with the name of your bucket\.[m[41m [m
[m
1. Choose **Save**\.[m
[m
[31m-**Create an AWS Cost and Usage report**[m
[32m+[m[32m**To create an AWS Cost and Usage report**[m
[m
1. Sign in to the AWS Management Console and open the Billing and Cost Management console at [https://console\.aws\.amazon\.com/billing/home\#/](https://console.aws.amazon.com/billing/home)\.[m
[m
[31m-1. On the navigation pane, choose **Reports**\.[m
[32m+[m[32m1. On the navigation pane, choose **Cost and Usage Reports**\.[m
[m
1. Choose **Create report**\.[m
[m
[36m@@ -112,19 +112,35 @@[m [mYour bucket name must be all lowercase, from 3 to 63 characters long, and can't[m
[m
1. For **Additional report details**, to include the IDs of each individual resource in the report, select **Include resource IDs**\.[m
[m
[31m-1. For **Data refresh settings**, select whether you want the AWS Cost and Usage report to refresh if AWS applies refunds, credits, or support fees to your account after finalizing your bill\. When a report refreshes, a new report is upload to Amazon S3\.[m
[32m+[m[32m1. For **Data refresh settings**, select whether you want the AWS Cost and Usage report to refresh if AWS applies refunds, credits, or support fees to your account after finalizing your bill\. When a report refreshes, a new report is uploaded to Amazon S3\.[m
[32m+[m[32m**Note**[m[41m [m
[32m+[m[32mDetailed billing reports \(DBRs\) don't refresh automatically, whether you select **Data refresh settings** or not\. To refresh a DBR, open a support case\. For more information, see [Contacting Customer Support About Your Bill](billing-get-answers.md)\.[m
[m
1. Choose **Next**\.[m
[m
[31m-1. For **S3 bucket**, enter the name of the Amazon S3 bucket where you want the reports to be delivered and choose **Verify**\. The bucket must have appropriate permissions to be valid\. For more information on adding permissions to the bucket, see [ Setting Bucket and Object Access Permissions](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/set-permissions.html) in the *[Amazon Simple Storage Service Console User Guide](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/)*\. [m
[32m+[m[32m1. For **S3 bucket**, choose **Configure**\.[m
[32m+[m
[32m+[m[32m1. In the **Configure S3 Bucket** dialog box, do one of the following:[m
[32m+[m[32m + Select an existing bucket from the drop down list and choose **Next**\.[m
[32m+[m[32m + Enter a bucket name and the Region where you want to create a new bucket and choose **Next**\.[m
[32m+[m
[32m+[m[32m1. Select **I have confirmed that this policy is correct** and choose **Save**\.[m
[32m+[m
[32m+[m[32m1. For **Report path prefix**, enter the report path prefix that you want prepended to the name of your report\.[m[41m [m
[m
[31m-1. \(Optional\) For **Report path prefix**, enter the report path prefix that you want prepended to the name of your report\. [m
[32m+[m[32m This step is optional for Amazon Redshift or Amazon QuickSight, but required for Amazon Athena\.[m
[32m+[m
[32m+[m[32m If you don't specify a prefix, the default prefix is the name that you specified for the report in step 4 and the date range for the report, in the following format:[m
[32m+[m
[32m+[m[32m `/report-name/date-range/`[m
[m
1. For **Time granularity**, choose **Hourly** if you want the line items in the report to be aggregated by the hour\. Choose **Daily** if you want the line items in the report to be aggregated by the day\.[m
[m
1. For **Report versioning**, choose whether you want each version of the report to overwrite the previous version of the report or to be delivered in addition to the previous versions\.[m
[m
[31m-1. For **Enable report data integration for**, select whether you want to upload your AWS Cost and Usage report to Amazon Redshift, Amazon QuickSight, or Amazon Athena\. If you select an Amazon Redshift or Amazon QuickSight manifest, your report is stored with \.gz compression\. If you select an Athena manifest, your report is stored with parquet compression\.[m
[32m+[m[32m1. For **Enable report data integration for**, select whether you want to upload your AWS Cost and Usage report to Amazon Redshift, Amazon QuickSight, or Amazon Athena\. The report is compressed in the following formats:[m
[32m+[m[32m + **Amazon Redshift or Amazon QuickSight**: \.gz compression[m
[32m+[m[32m + **Athena**: parquet compression[m
[m
1. Choose **Next**\.[m
[m
[36m@@ -144,70 +160,94 @@[m [mAWS Billing and Cost Management closes the billing period at midnight on the las[m
[m
1. Choose **Download CSV** to download a comma\-separated variable file or choose **Print**\.[m
[m
[31m-## Step 4: Set Up Alerts to Monitor Charges to Your Account<a name="billing-gs-alerts"></a>[m
[32m+[m[32m## Step 4: Set Up Budgets to Monitor Your Account<a name="billing-gs-alerts"></a>[m
[m
If you use the AWS Free Tier, Billing and Cost Management automatically provides AWS Free Tier usage alerts via AWS Budgets to track your free tier usage\. Billing and Cost Management notifies you when you go over the free tier limits or are forecasted to go over the free tier limits\. AWS sends these notifications to the email that you used to create your AWS account\.[m
[m
In addition to the free tier usage alerts, you can use budgets to notify you when your monthly charges for using an AWS product exceed or are forecast to exceed a threshold that you set\. [m
[m
[31m- By default, IAM users don't have access to billing information and therefore don't have access to billing alerts or budgets\. If you're logged in to AWS as an IAM user, verify that the AWS account owner has granted IAM users access to the billing information\. For more information about IAM restrictions, see [Granting Access to Your Billing Information and Tools](grantaccess.md)\. [m
[32m+[m[32m By default, IAM users don't have access to billing information, and therefore don't have access to budgets\. If you're logged in to AWS as an IAM user, verify that the account owner has granted IAM users access to AWS Budgets\. For more information about IAM restrictions, see [Granting Access to Your Billing Information and Tools](grantaccess.md)\. <a name="cost-budget-alarm"></a>[m
[m
[31m-**Note** [m
[31m-If your account is linked to a reseller account, billing alerts aren't available for your account\. [m
[32m+[m[32m**To create a budget**[m
[m
[31m-**To enable billing alerts**[m
[31m-[m
[31m-Before you create a budget, you must enable billing alerts\. You need to do this only once\. After you enable billing alerts, you can't turn them off\.[m
[32m+[m[32mUse this procedure to create a cost\-based budget\.[m
[m
1. Sign in to the AWS Management Console and open the Billing and Cost Management console at [https://console\.aws\.amazon\.com/billing/home\#/](https://console.aws.amazon.com/billing/home)\.[m
[m
[31m-1. On the navigation pane, choose **Preferences**\.[m
[32m+[m[32m1. In the navigation pane, choose **Budgets**\.[m
[32m+[m
[32m+[m[32m1. At the top of the page, choose **Create budget**\.[m
[32m+[m
[32m+[m[32m1. For **Select budget type**, choose **Cost budget**\.[m
[m
[31m-1. Select the **Receive Billing Alerts** check box\.[m
[32m+[m[32m1. Choose **Set up your budget**\.[m
[m
[31m-1. Choose **Save preferences**\.[m
[32m+[m[32m1. For **Name**, enter the name of your budget\. Your budget name must be unique within your account and can use A\-Z, a\-z, spaces, and the following characters:[m
[32m+[m
[32m+[m[32m ```[m
[32m+[m[32m _.:/=+-%@[m
[32m+[m[32m ```[m
[m
[31m-**To create a billing alarm**[m
[32m+[m[32m1. For **Period**, choose how often you want the budget to reset the actual and forecasted spend\. Choose **Monthly** for every month, **Quarterly** for every three months, and **Annually** for every year\.[m
[m
[31m-1. \(Optional\) If you want to send your alert to an AWS\-managed distribution list instead of a single email address, follow these steps to set up an Amazon Simple Notification Service \(Amazon SNS\) notification list\. If you want to send your alert to a single email address, go to step 2\. [m
[32m+[m[32m1. For **Budgeted Amount**, enter the total amount that you want to spend for this budget period\.[m
[m
[31m- To create an Amazon SNS notification list:[m
[32m+[m[32m1. \(Optional\) For **Budget effective dates**, choose **Recurring Budget** for a budget that resets after the budget period or **Expiring Budget** for a one\-time budget that doesn't reset after the budget period\.[m
[m
[31m- 1. Open the Amazon SNS console at [https://console\.aws\.amazon\.com/sns/v2/home](https://console.aws.amazon.com/sns/v2/home)\.[m
[32m+[m[32m For **Start Month**, choose the month that you want the budget to start on\.[m
[m
[31m- 1. On the navigation pane, choose **SNS Home**\.[m
[32m+[m[32m For an **Expiring Budget**, for **End Month**, choose the month that you want the budget to end on\.[m
[m
[31m- 1. In the **Common actions** section, choose **Create topic**\.[m
[32m+[m[32m All budget times are in UTC\.[m
[m
[31m- 1. In the dialog box, for **Topic name**, enter the name for your notification list\.[m
[32m+[m[32m1. \(Optional\) Under **Budget parameters \(optional\)**, for **Filtering**, choose one or more of the [available filters](budgets-create-filters.md)\. Your choice of budget type determines the set of filters that is displayed on the console\.[m
[m
[31m- 1. \(Optional\) If you want to use this notification list to send SMS messages, for **Display name**, enter the name that you want to appear on your SMS messages\.[m
[32m+[m[32m1. \(Optional\) Under **Budget parameters \(optional\)**, for **Advanced options**, choose one or more of the following filters\. If you're signed in from a member account in an organization instead of from a master account, you might not see all of the advanced options\.[m[41m [m
[32m+[m[32m**Refunds**[m[41m [m
[32m+[m[32mAny refunds that you received\.[m[41m [m
[32m+[m[32m**Credits**[m[41m [m
[32m+[m[32mAny AWS credits that are applied to your account\.[m[41m [m
[32m+[m[32m**Upfront reservation fees**[m[41m [m
[32m+[m[32mAny upfront fees that are charged to your account\. When you purchase an All Upfront or Partial Upfront Reserved Instance from AWS, you pay an upfront fee in exchange for a lower rate for using the instance\.[m[41m [m
[32m+[m[32m**Recurring reservation charges**[m[41m [m
[32m+[m[32mAny recurring charges to your account\. When you purchase a Partial Upfront or No Upfront Reserved Instance from AWS, you pay a recurring charge in exchange for a lower rate for using the instance\.[m[41m [m
[32m+[m[32m**Taxes**[m[41m [m
[32m+[m[32mAny taxes that are associated with the charges or fees in your budget\.[m[41m [m
[32m+[m[32m**Support charges**[m[41m [m
[32m+[m[32mAny charges that AWS charges you for a support plan\. When you purchase a support plan from AWS, you pay a monthly charge in exchange for service support\.[m[41m [m
[32m+[m[32m**Other subscription costs**[m[41m [m
[32m+[m[32mOther applicable subscription costs that are not covered by the other data categories\. These costs can include data such as AWS training fees, AWS competency fees, out\-of\-cycle charges such as registering a domain with Route 53, and more\.[m[41m [m
[32m+[m[32m**Use blended costs**[m[41m [m
[32m+[m[32mThe cost of the instance hours that you used\. A blended rate doesn't include either the RI upfront costs or the RI discounted hourly rate\.[m[41m [m
[32m+[m[32m**Use amortized costs**[m[41m [m
[32m+[m[32mThe amortized cost of any reservation hours that you used\. For more information about amortized costs, see [Show amortized costs](ce-advanced.md#show-amortized-costs)\.[m
[m
[31m- 1. Choose **Create topic**\.[m
[32m+[m[32m1. Choose **Configure alerts**\.[m
[m
[31m-1. Open the CloudWatch console at [https://console\.aws\.amazon\.com/cloudwatch/](https://console.aws.amazon.com/cloudwatch/)\.[m
[32m+[m[32m1. Under **Configure alerts**, for **Alert 1**, choose **Actual** to create a notification for actual spend and **Forecast** to create a notification for your forecasted spend\.[m
[m
[31m-1. If necessary, change the Region on the navigation bar to US East \(N\. Virginia\)\. The billing metric data is stored in this Region, even for resources in other Regions\. [m
[32m+[m[32m1. For **Alert threshold**, enter the amount that you want to be notified at\. This can be either an absolute value or a percentage\. For example, for a budget of 200 dollars, if you want to be notified at 160 dollars \(80% of your budget\), enter 160 for an absolute budget or 80 for a percentage budget\.[m
[m
[31m-1. On the navigation pane, under **Metrics**, choose **Billing**\.[m
[32m+[m[32m Next to the amount, choose **Absolute amount** to be notified when the threshold amount is passed and **% of budgeted amount** to be notified when the threshold percentage of the budget is passed\.[m
[m
[31m-1. In the list of billing metrics, select the check box next to **Currency** `USD`, for the metric named **EstimatedCharges**\. [m
[32m+[m[32m1. \(Optional\) For **Email contacts**, enter the email addresses that you want the notifications to be sent to and choose **Add email contact**\. Separate multiple email addresses with a comma\. A notification can have up to 10 email addresses\.[m
[m
[31m-1. Choose **Create Alarm**\.[m
[32m+[m[32m To receive a notification, you must specify an email address\. You can also specify an Amazon SNS topic\.[m
[m
[31m-1. Define the alarm as follows\.[m
[32m+[m[32m1. \(Optional\) For **SNS topic ARN**, enter the ARN for your Amazon SNS topic and then choose **Verify**\. If you want to use an Amazon SNS topic for your notification but don't have one, see [Create a Topic](https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html) in the *Amazon Simple Notification Service Developer Guide*\.[m
[m
[31m- 1. If you want the alarm to trigger as soon as you go over the free tier, set **When my total AWS charges for the month exceed** to $\.01\. This means that you receive a notification as soon as you incur a charge\. Otherwise, set it to the amount you want to trigger the alarm, and you're notified when you go over that amount\. [m
[32m+[m[32m AWS verifies that your budget has permission to send notifications to your Amazon SNS topic by sending a test email to your Amazon SNS topic\. If the Amazon SNS topic ARN is valid but the **Verify** step fails, check the Amazon SNS topic policy to make sure that it allows your budget to publish to that topic\.[m[41m [m
[m
[31m- 1. Choose the **New list** link next to the **send a notification to** box\. [m
[32m+[m[32m For a sample policy and instructions on granting your budget permissions, see [Creating an Amazon SNS Topic for Budget Notifications](budgets-sns-policy.md)\. A notification can be subscribed to only one Amazon SNS topic\.[m
[m
[31m- 1. When prompted, enter your email address or choose your Amazon SNS notification from the dropdown list\. [m
[32m+[m[32m To receive a notification, you must specify an email address\. You can also specify an Amazon SNS topic\.[m
[m
[31m- 1. Choose **Create Alarm**\.[m
[32m+[m[32m1. Choose **Confirm budget**\.[m
[m
[31m-1. In the **Confirm new email addresses** dialog box, confirm the email address or choose **I will do it later**\. If you don't confirm the email address now, the alarm remains in the `Pending confirmation` status until you do so, and it doesn't send an alert\. To view the status of your alarm, choose **Alarms** in the navigation pane\. [m
[32m+[m[32m1. Review your budget settings and choose **Create**\.[m
[m
[31m- For more information about CloudWatch alarms, see [Monitor Your Estimated Charges Using Amazon CloudWatch](https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/monitor_estimated_charges_with_cloudwatch.html) in the *Amazon CloudWatch User Guide*\. [m
[32m+[m[32m**Important**[m[41m [m
[32m+[m[32mWhen you finish creating a budget with Amazon SNS notifications, Amazon SNS sends a confirmation email to the email addresses that you specify\. The subject line is **AWS Notification \- Subscription Confirmation**\. A recipient must choose **Confirm subscription** in the confirmation email to begin receiving notifications\.[m[41m [m
[m
## Step 5: Get Answers to Questions About Your Bill<a name="billing-gs-answer"></a>[m
[m
[1mdiff --git a/doc_source/billing-permissions-ref.md b/doc_source/billing-permissions-ref.md[m
[1mindex c7b6f76..a401cab 100644[m
[1m--- a/doc_source/billing-permissions-ref.md[m
[1m+++ b/doc_source/billing-permissions-ref.md[m
[36m@@ -4,7 +4,8 @@[m [mThis reference summarizes the default actions that are permitted in Billing and[m
[m
**Topics**[m
+ [User Types and Billing Permissions](#user-types)[m
[31m-+ [Billing Permissions Descriptions](#user-permissions)[m
[32m+[m[32m+ [Billing Actions](#user-permissions)[m
[32m+[m[32m+ [Billing Region Actions](#billing-example-regions)[m
+ [Billing and Cost Management Policy Examples](#billing-example-policies)[m
[m
For a full discussion of AWS accounts and IAM users, see [What Is IAM?](https://docs.aws.amazon.com/IAM/latest/UserGuide//IAM_Introduction.html) in the *IAM User Guide*\.[m
[36m@@ -16,61 +17,72 @@[m [mThis table summarizes the default actions that are permitted in Billing and Cost[m
[m
| User Type | Description | Billing Permissions | [m
| --- | --- | --- | [m
[31m-| Account owner | The person or entity in whose name your AWS account is set up\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
[31m-| IAM user | A person or application defined as a user in an AWS account by an account owner or administrative user\. Accounts can contain multiple IAM users\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
[32m+[m[32m| Account owner | The person or entity in whose name your account is set up\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) |[m[41m [m
[32m+[m[32m| IAM user | A person or application defined as a user in an account by an account owner or administrative user\. Accounts can contain multiple IAM users\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) |[m[41m [m
| Organization master account owner | The person or entity associated with an AWS Organizations master account\. The master account pays for AWS usage that is incurred by a member account in an organization\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
| Organization member account owner | The person or entity associated with an AWS Organizations member account\. The master account pays for AWS usage that is incurred by a member account in an organization\. | [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
[m
**Note** [m
For more information about organization master and member accounts, see the *[AWS Organizations User Guide](https://docs.aws.amazon.com/organizations/latest/userguide/)*\.[m
[m
[31m-## Billing Permissions Descriptions<a name="user-permissions"></a>[m
[32m+[m[32m## Billing Actions<a name="user-permissions"></a>[m
[m
[31m-This table summarizes the permissions that you use to allow or deny IAM users access to your billing information and tools\. For examples of policies that use these permissions, see [Billing and Cost Management Policy Examples](#billing-example-policies)\. [m
[32m+[m[32mThis table summarizes the permissions that allow or deny IAM users access to your billing information and tools\. For examples of policies that use these permissions, see [Billing and Cost Management Policy Examples](#billing-example-policies)\.[m[41m [m
[m
[m
| Permission Name | Description | [m
| --- | --- | [m
[31m-| `ViewBilling` | Allow or deny IAM users permission to view the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
[31m-| `ModifyBilling` | Allow or deny IAM users permission to modify the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) To allow IAM users to modify these console pages, you must allow both `ModifyBilling` and `ViewBilling`\. For an example policy, see [Example 6: Allow IAM users to modify billing information](#example-billing-deny-modifybilling)\. | [m
[31m-| `ViewAccount` | Allow or deny IAM users permission to view the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) | [m
[31m-| ModifyAccount | Allow or deny IAM users permission to modify [Account Settings](https://portal.aws.amazon.com/billing/home#/account)\. To allow IAM users to modify account settings, you must allow both `ModifyAccount` and `ViewAccount`\. For an example of a policy that explicitly denies an IAM user access to the Account Settings console page, see [Example 8: Deny access to Account Settings, but allow full access to all other billing and usage information](#example-billing-deny-modifyaccount)\. | [m
[31m-| ViewBudget | Allow or deny IAM users permission to view [Budgets](https://portal.aws.amazon.com/billing/home#/budgets)\. To allow IAM users to view budgets, you must also allow `ViewBilling`\. | [m
[31m-| ModifyBudget | Allow or deny IAM users permission to modify [Budgets](https://portal.aws.amazon.com/billing/home#/budgets)\. To allow IAM users to view and modify budgets, you must also allow `ViewBilling`\. | [m
[31m-| ViewPaymentMethods | Allow or deny IAM users permission to view [Payment Methods](https://portal.aws.amazon.com/billing/home#/paymentmethods)\. | [m
[31m-| ModifyPaymentMethods | Allow or deny IAM users permission to modify [Payment Methods](https://portal.aws.amazon.com/billing/home#/paymentmethods)\. To allow users to modify payment methods, you must allow both `ModifyPaymentMethods` and `ViewPaymentMethods`\. | [m
[31m-| `DescribeReportDefinitions` | Allow or deny IAM users permission to view a [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. | [m
[31m-| `PutReportDefinitions` | Allow or deny IAM users permission to create a [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. | [m
[31m-| `DeleteReportDefinition` | Allow or deny IAM users permission to delete [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. | [m
[31m-| ViewUsage | Allow or deny IAM users permission to view AWS usage [Reports](https://portal.aws.amazon.com/billing/home#/reports)\. To allow IAM users to view usage reports, you must allow both `ViewUsage` and `ViewBilling`\. For an example policy, see [Example 2: Allow IAM users to access the Reports console page](#example-billing-view-reports)\. | [m
[31m-| DescribeServices | Allow or deny IAM users permission to view AWS service products and pricing via AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. | [m
[31m-| GetAttributeValues | Allow or deny IAM users permission to view AWS service products and pricing via AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. | [m
[31m-| GetProducts | Allow or deny IAM users permission to view AWS service products and pricing via AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. | [m
[32m+[m[32m| `aws-portal:ViewBilling` | Allow or deny IAM users permission to view the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) |[m[41m [m
[32m+[m[32m| `aws-portal:ModifyBilling` | Allow or deny IAM users permission to modify the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) To allow IAM users to modify these console pages, you must allow both `ModifyBilling` and `ViewBilling`\. For an example policy, see [Example 6: Allow IAM users to modify billing information](#example-billing-deny-modifybilling)\. |[m[41m [m
[32m+[m[32m| `aws-portal:ViewAccount` | Allow or deny IAM users permission to view the following Billing and Cost Management console pages: [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html) |[m[41m [m
[32m+[m[32m| aws\-portal:ModifyAccount | Allow or deny IAM users permission to modify [Account Settings](https://portal.aws.amazon.com/billing/home#/account)\. To allow IAM users to modify account settings, you must allow both `ModifyAccount` and `ViewAccount`\. For an example of a policy that explicitly denies an IAM user access to the **Account Settings** console page, see [Example 8: Deny access to Account Settings, but allow full access to all other billing and usage information](#example-billing-deny-modifyaccount)\. |[m[41m [m
[32m+[m[32m| budgets:ViewBudget | Allow or deny IAM users permission to view [Budgets](https://portal.aws.amazon.com/billing/home#/budgets)\. To allow IAM users to view budgets, you must also allow `ViewBilling`\. |[m[41m [m
[32m+[m[32m| budgets:ModifyBudget | Allow or deny IAM users permission to modify [Budgets](https://portal.aws.amazon.com/billing/home#/budgets)\. To allow IAM users to view and modify budgets, you must also allow `ViewBilling`\. |[m[41m [m
[32m+[m[32m| aws\-portal:ViewPaymentMethods | Allow or deny IAM users permission to view [Payment Methods](https://portal.aws.amazon.com/billing/home#/paymentmethods)\. |[m[41m [m
[32m+[m[32m| aws\-portal:ModifyPaymentMethods | Allow or deny IAM users permission to modify [Payment Methods](https://portal.aws.amazon.com/billing/home#/paymentmethods)\. To allow users to modify payment methods, you must allow both `ModifyPaymentMethods` and `ViewPaymentMethods`\. |[m[41m [m
[32m+[m[32m| `cur:DescribeReportDefinitions` | Allow or deny IAM users permission to view a [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. |[m[41m [m
[32m+[m[32m| `cur:PutReportDefinitions` | Allow or deny IAM users permission to create a [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. |[m[41m [m
[32m+[m[32m| `cur:DeleteReportDefinition` | Allow or deny IAM users permission to delete [AWS Cost and Usage Report](billing-reports-costusage.md) using the API\. For an example policy, see [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)\. |[m[41m [m
[32m+[m[32m| aws\-portal:ViewUsage | Allow or deny IAM users permission to view AWS usage [Reports](https://portal.aws.amazon.com/billing/home#/reports)\. To allow IAM users to view usage reports, you must allow both `ViewUsage` and `ViewBilling`\. For an example policy, see [Example 2: Allow IAM users to access the Reports console page](#example-billing-view-reports)\. |[m[41m [m
[32m+[m[32m| pricing:DescribeServices | Allow or deny IAM users permission to view AWS service products and pricing via the AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. |[m[41m [m
[32m+[m[32m| pricing:GetAttributeValues | Allow or deny IAM users permission to view AWS service products and pricing via the AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. |[m[41m [m
[32m+[m[32m| pricing:GetProducts | Allow or deny IAM users permission to view AWS service products and pricing via the AWS Price List Service API\. To allow IAM users to use AWS Price List Service API, you must allow `DescribeServices`, `GetAttributeValues`, and `GetProducts`\. For an example policy, see [Example 11: Find products and prices](#example-policy-pe-api)\. |[m[41m [m
[32m+[m
[32m+[m[32m## Billing Region Actions<a name="billing-example-regions"></a>[m
[32m+[m
[32m+[m[32mThe following table summarizes the permissions that allow or deny IAM users the ability to enable or disable AWS Regions or to display a list of Regions and their current status\. For examples of policies that use these permissions, see [Managing an AWS Account](manage-account-payment.md)\.[m[41m [m
[32m+[m
[32m+[m
[32m+[m[32m| Permission Name | Description |[m[41m [m
[32m+[m[32m| --- | --- |[m[41m [m
[32m+[m[32m| account:EnableRegion | Allow or deny users permissions to enable an Region\. |[m[41m [m
[32m+[m[32m| account:DisableRegion | Allow or deny users permissions to disable an Region\. |[m[41m [m
[32m+[m[32m| account:ListRegions | Allow users to list all Regions and the current enabled or disabled status\. |[m[41m [m
[m
## Billing and Cost Management Policy Examples<a name="billing-example-policies"></a>[m
[m
[31m-This topic contains example policies that you can attach to your IAM user or group to control access to your account's billing information and tools\. The following basic rules apply to IAM policies:[m
[32m+[m[32mThis topic contains example policies that you can attach to your IAM user or group to control access to your account's billing information and tools\. The following basic rules apply to IAM policies for Billing and Cost Management:[m
+ `Version` is always `2012-10-17`\.[m
+ `Effect` is always `Allow` or `Deny`\.[m
[31m-+ `Action` indicates access, and it can take a wild card \(`*`\)\. [m
[32m+[m[32m+ `Action` is the name of the action or a wildcard \(`*`\)\.[m[41m [m
[m
For consoles, the action prefix in China is `awsbillingconsole`\. Everywhere else, it's `aws-portal`\.[m
[m
[31m- For the API, the action prefix is either `budgets` for budgets or `cur` for AWS Cost and Usage reports\.[m
[31m-+ `Resource` is always `*` for the console\.[m
[32m+[m[32m The action prefix is `budgets` for AWS Budgets, `cur` for AWS Cost and Usage reports, `aws-portal` for AWS Billing, or `ce` for Cost Explorer\.[m
[32m+[m[32m+ `Resource` is always `*` for AWS Billing\.[m
[m
[31m- For the budget API, the resource is the ARN of the budget\.[m
[32m+[m[32m For actions performed on a `budget` resource, specify the budget Amazon Resource Name \(ARN\)\.[m
+ It's possible to have multiple statements in one policy\.[m
[m
**Note** [m
[31m-These policies require that you activate IAM user access to the Billing and Cost Management console on the [Account Settings](https://portal.aws.amazon.com/billing/home#/account) console page\. For more information about activating IAM user access, see [Activating Access to the Billing and Cost Management Console](grantaccess.md#ControllingAccessWebsite-Activate)\.[m
[32m+[m[32mThese policies require that you activate IAM user access to the Billing and Cost Management console on the [Account Settings](https://portal.aws.amazon.com/billing/home#/account) console page\. For more information, see [Activating Access to the Billing and Cost Management Console](grantaccess.md#ControllingAccessWebsite-Activate)\.[m
[m
**Example Topics**[m
+ [Example 1: Allow IAM users to view your billing information](#example-billing-view-billing-only)[m
+ [Example 2: Allow IAM users to access the Reports console page](#example-billing-view-reports)[m
+ [Example 3: Deny IAM users access to the Billing and Cost Management console](#example-billing-deny-all)[m
+ [Example 4: Allow full access to AWS services but deny IAM users access to the Billing and Cost Management console](#ExampleAllowAllDenyBilling)[m
[31m-+ [Example 5: Allow IAM users to view the Billing and Cost Management console, except Account Settings](#example-billing-read-only)[m
[32m+[m[32m+ [Example 5: Allow IAM users to view the Billing and Cost Management console except for Account Settings](#example-billing-read-only)[m
+ [Example 6: Allow IAM users to modify billing information](#example-billing-deny-modifybilling)[m
+ [Example 7: Allow IAM users to create budgets](#example-billing-allow-createbudgets)[m
+ [Example 8: Deny access to Account Settings, but allow full access to all other billing and usage information](#example-billing-deny-modifyaccount)[m
[36m@@ -78,6 +90,7 @@[m [mThese policies require that you activate IAM user access to the Billing and Cost[m
+ [Example 10: Create, view, or delete an AWS Cost and Usage report](#example-policy-report-definition)[m
+ [Example 11: Find products and prices](#example-policy-pe-api)[m
+ [Example 12: View costs and usage](#example-policy-ce-api)[m
[32m+[m[32m+ [Example 13: Enable and Disable Regions](#enable-disable-regions)[m
[m
### Example 1: Allow IAM users to view your billing information<a name="example-billing-view-billing-only"></a>[m
[m
[36m@@ -143,17 +156,15 @@[m [mTo explicitly deny an IAM user access to the all Billing and Cost Management con[m
[m
### Example 4: Allow full access to AWS services but deny IAM users access to the Billing and Cost Management console<a name="ExampleAllowAllDenyBilling"></a>[m
[m
[31m-To enable full access to all AWS services but deny the IAM user access to everything on the Billing and Cost Management console, use the following policy\. In this case, you should also deny user access to AWS Identity and Access Management \(IAM\) so that the users can't access the policies that control access to billing information and tools\.[m
[32m+[m[32mTo deny IAM users access to everything on the Billing and Cost Management console, use the following policy\. In this case, you should also deny user access to AWS Identity and Access Management \(IAM\) so that the users can't access the policies that control access to billing information and tools\.[m
[32m+[m
[32m+[m[32m**Important**[m[41m [m
[32m+[m[32mThis policy doesn't allow any actions\. Use this policy in combination with other policies that allow specific actions\.[m
[m
```[m
{[m
"Version": "2012-10-17",[m
"Statement": [[m
[31m- {[m
[31m- "Effect": "Allow",[m
[31m- "Action": "*",[m
[31m- "Resource": "*"[m
[31m- },[m
{[m
"Effect": "Deny",[m
"Action": [[m
[36m@@ -166,9 +177,9 @@[m [mTo enable full access to all AWS services but deny the IAM user access to everyt[m
}[m
```[m
[m
[31m-### Example 5: Allow IAM users to view the Billing and Cost Management console, except Account Settings<a name="example-billing-read-only"></a>[m
[32m+[m[32m### Example 5: Allow IAM users to view the Billing and Cost Management console except for Account Settings<a name="example-billing-read-only"></a>[m
[m
[31m-To protect your account password, contact information, and security questions, you can deny user access to **Account Settings** while still enabling read\-only access to the rest of the functionality in the Billing and Cost Management console\. Applying this policy to an IAM user allows the user to view all the Billing and Cost Management console pages, including the **Payments Method** and **Reports** console pages, but denies the user access to **Account Settings**\.[m
[32m+[m[32mThis policy allows read\-only access to all of the Billing and Cost Management console, including the **Payments Method** and **Reports** console pages, but denies access to the **Account Settings** page, thus protecting the account password, contact information, and security questions\.[m[41m [m
[m
```[m
{[m
[36m@@ -212,11 +223,7 @@[m [mTo allow IAM users to modify account billing information in the Billing and Cost[m
[m
### Example 7: Allow IAM users to create budgets<a name="example-billing-allow-createbudgets"></a>[m
[m
[31m-To apply this policy, the user must have IAM permissions to view your Billing and Cost Management console\.[m
[31m-[m
[31m-If you are in an organization, only the master account can create and manage budgets\. Individual member accounts can't create and manage budgets\. You can grant member accounts read\-only access to your budgets using an IAM policy\. For more information, see [Controlling Access](control-access-billing.md)\.[m
[31m-[m
[31m-To allow IAM users to create budgets in the Billing and Cost Management console, you must also allow IAM users to view your billing information, create CloudWatch alarms, and create Amazon SNS notifications\. The following policy example allows an IAM user to modify the **Budget** console page:[m
[32m+[m[32mTo allow IAM users to create budgets in the Billing and Cost Management console, you must also allow IAM users to view your billing information, create CloudWatch alarms, and create Amazon SNS notifications\. The following policy example allows an IAM user to modify the **Budget** console page\.[m
[m
```[m
{[m
[36m@@ -300,7 +307,7 @@[m [mFor more information, see [ Using Bucket Policies and User Policies](https://doc[m
{[m
"Effect": "Allow",[m
"Principal": {[m
[31m- "AWS": "386209384616"[m
[32m+[m[32m "Service": "billingreports.amazonaws.com"[m
},[m
"Action": [[m
"s3:GetBucketAcl",[m
[36m@@ -311,7 +318,7 @@[m [mFor more information, see [ Using Bucket Policies and User Policies](https://doc[m
{[m
"Effect": "Allow",[m
"Principal": {[m
[31m- "AWS": "386209384616"[m
[32m+[m[32m "Service": "billingreports.amazonaws.com"[m
},[m
"Action": "s3:PutObject",[m
"Resource": "arn:aws:s3:::bucketname/*"[m
[36m@@ -322,22 +329,25 @@[m [mFor more information, see [ Using Bucket Policies and User Policies](https://doc[m
[m
### Example 10: Create, view, or delete an AWS Cost and Usage report<a name="example-policy-report-definition"></a>[m
[m
[31m-This policy allows an IAM user to create, view, or delete an AWS Cost and Usage report using the API\.[m
[32m+[m[32mThis policy allows an IAM user to create, view, or delete `sample-report` using the API\.[m
[m
```[m
{[m
"Version": "2012-10-17",[m
"Statement": [[m
{[m
[31m- "Effect": "Allow",[m
[32m+[m[32m "Sid": "ManageSampleReport",[m
"Action": [[m
[31m- "cur:PutReportDefinition",[m
[31m- "cur:DescribeReportDefinitions",[m
[32m+[m[32m "cur:PutReportDefinition",[m[41m [m
"cur:DeleteReportDefinition"[m
],[m
[31m- "Resource": [[m
[31m- "*"[m
[31m- ][m
[32m+[m[32m "Resource": "arn:aws:cur:*:123456789012:definition/sample-report"[m
[32m+[m[32m },[m
[32m+[m[32m {[m
[32m+[m[32m "Sid": "DescribeReportDefs",[m
[32m+[m[32m "Effect": "Allow",[m
[32m+[m[32m "Action": "cur:DescribeReportDefinitions",[m
[32m+[m[32m "Resource": "*"[m
}[m
][m
}[m
[36m@@ -386,3 +396,7 @@[m [mTo allow IAM users to use the AWS Cost Explorer API, use the following policy to[m
][m
}[m
```[m
[32m+[m
[32m+[m[32m### Example 13: Enable and Disable Regions<a name="enable-disable-regions"></a>[m
[32m+[m
[32m+[m[32mFor an example IAM policy that allows users to enable and disable Regions, see [AWS: Allows Enabling and Disabling AWS Regions](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_examples_aws-enable-disable-regions.html) in the *IAM User Guide*\.[m[41m [m
\ No newline at end of file[m
[1mdiff --git a/doc_source/billing-reports-costusage-files.md b/doc_source/billing-reports-costusage-files.md[m
[1mindex 78bf60c..7fb4f49 100644[m
[1m--- a/doc_source/billing-reports-costusage-files.md[m
[1m+++ b/doc_source/billing-reports-costusage-files.md[m
[36m@@ -1,6 +1,6 @@[m
# Viewing AWS Cost and Usage Report Files in Amazon S3<a name="billing-reports-costusage-files"></a>[m
[m
[31m-The AWS Cost and Usage report is a \.csv file or a collection of \.csv files that is stored in an Amazon S3 bucket\. During the report period, AWS delivers a new report and a new manifest file each time the report is updated\. The new report includes all the information included in the previous report and information new to the current report\. AWS builds on previous reports until the end of the billing period\. After the end of the billing period, AWS generates a new report with none of the information from the previous report\. The size of an individual report can grow to more than a gigabyte and might exceed the capacity of desktop spreadsheet applications to display every line\. If a report is larger than most applications can handle, AWS splits the report into multiple files that are stored in the same folder in the Amazon S3 bucket\. The specific organization and naming conventions of your AWS Cost and Usage report files depend on what parameters you chose when you created your AWS Cost and Usage report\.[m
[32m+[m[32mThe AWS Cost and Usage report is a \.csv file or a collection of \.csv files that is stored in an Amazon S3 bucket\. During the report period, AWS delivers a new report and a new manifest file each time AWS updates the report\. The new report includes all of the information included in the previous report and information new to the current report\. AWS builds on previous reports until the end of the billing period\. After the end of the report billing period, AWS generates a new report with none of the information from the previous report\. The size of an individual report can grow to more than a gigabyte and might exceed the capacity of desktop spreadsheet applications to display every line\. If a report is larger than most applications can handle, AWS splits the report into multiple files that are stored in the same folder in the Amazon S3 bucket\. The specific organization and naming conventions of your AWS Cost and Usage report files depend on what parameters you chose when you created your AWS Cost and Usage report\.[m
+ [Keeping Previous AWS Cost and Usage Reports](#versioned)[m
+ [Overwriting Previous AWS Cost and Usage Reports](#overwrite)[m
[m
[36m@@ -9,11 +9,11 @@[m [mThe AWS Cost and Usage report is a \.csv file or a collection of \.csv files tha[m
When you choose to keep your previous AWS Cost and Usage report, your AWS Cost and Usage report uses the following Amazon S3 organization and naming conventions\.[m
[m
```[m
[31m-<report-prefix>/<report-name>/yyyymmdd-yyyymmdd/<assemblyId>/<report-name>-<file-number>.csv.<zip|gz>[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<assemblyId>/<example-report-name>-<file-number>.csv.<zip|gz>[m
```[m
+ `report-prefix` = The prefix that you assign to the report\.[m
+ `report-name` = The name that you assign to the report\.[m
[31m-+ `yyyymmdd-yyyymmdd` = The range of dates that you specify for the report\. Reports are finalized at the end of the date range\.[m
[32m+[m[32m+ `yyyymmdd-yyyymmdd` = The range of dates that the report covers\. Reports are finalized at the end of the date range\.[m
+ `assemblyId` = An ID that AWS creates each time that the report is updated\.[m
+ `file-number` = If the update includes a large file, AWS might split it into multiple files\. The `file-number` tracks the different files in an update\.[m
+ `csv` = The format of the report files\.[m
[36m@@ -36,12 +36,11 @@[m [mAWS delivers all reports in a report date range to the same `report-prefix/repor[m
When you choose to overwrite your previous AWS Cost and Usage report, your AWS Cost and Usage report uses the following Amazon S3 organization and naming conventions\.[m
[m
```[m
[31m-<report-prefix>/<report-name>/<report-name>/year=yyyy/month=mm/<report-name><file-number>.csv.<zip|gz>[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-<file-number>.csv.<zip|gz>[m
```[m
+ `report-prefix` = The prefix that you assign to the report\.[m
+ `report-name` = The name that you assign to the report\.[m
[31m-+ `year=yyyy` = The year that the AWS Cost and Usage report covers\. [m
[31m-+ `month=mm` = The month that the AWS Cost and Usage report covers\.[m
[32m+[m[32m+ `yyyymmdd-yyyymmdd` = The range of dates that the report covers\. AWS finalizes reports at the end of the date range\.[m
+ `file-number` = If the update includes a large file, AWS might split it into multiple files\. The `file-number` tracks the different files in an update\.[m
+ `csv` = The format of the report files\.[m
+ `zip` or `gz` = The type of compression applied to the report files\.[m
[36m@@ -49,20 +48,19 @@[m [mWhen you choose to overwrite your previous AWS Cost and Usage report, your AWS C[m
For example, your report could be delivered as a collection of the following files\.[m
[m
```[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-<1>.csv.<zip>[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-<2>.csv.<zip>[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-<3>.csv.<zip>[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-Manifest.json[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-<1>.csv.<zip>[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-<2>.csv.<zip><example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-<3>.csv.<zip>[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-Manifest.json[m
```[m
[m
If you chose Athena support when you created your AWS Cost and Usage report, the file naming conventions are the same as when you choose to overwrite your AWS Cost and Usage report except for the format and compression\. Athena AWS Cost and Usage report files use `.parquet` instead\. For example, your report could be delivered as a collection of the following files\.[m
[m
```[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>.parquet[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<cost_and_usage_data_status>[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-Manifest.json[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-create-table.sql[m
[31m-<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/crawler-cfn.yml[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>.parquet[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<cost_and_usage_data_status>[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-Manifest.json[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-create-table.sql[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/crawler-cfn.yml[m
```[m
[m
In addition to the AWS Cost and Usage report files, AWS also delivers an AWS CloudFormation template that you can use to set up an AWS CloudFormation stack that enables you to query Amazon S3 data using Athena\. If you don't want to use the AWS CloudFormation template, you can use the provided SQL to create your own Athena tables\. For more information, see [Uploading an AWS Cost and Usage Report to Amazon Athena](athena.md)\.[m
[36m@@ -74,9 +72,9 @@[m [mAWS delivers all reports in a report date range to the same folder\. If the repo[m
When AWS updates the AWS Cost and Usage report, AWS also creates and delivers manifest files that you can use for Amazon Redshift, Amazon QuickSight, or Amazon Athena\. When you keep the previous AWS Cost and Usage reports, the manifest file is delivered to both the date range folder and the `assemblyId` folder\. When you overwrite the previous AWS Cost and Usage report, the manifest file is delivered to the `month=mm` folder along with the report files\. The manifest files list all of the detail columns that are included in the report to date, a list of report files if the report was split into multiple files, the time period covered by the report, and other information\. Manifest files use the naming conventions\.[m
[m
```[m
[31m-<report-prefix>/<report-name>/YYYYMMDD-YYYYMMDD/<report-name>-Manifest.json[m
[31m-<report-prefix>/<report-name>/YYYYMMDD-YYYYMMDD/<assemblyId>/<report-name>-Manifest.json[m
[31m-<report-prefix>/<report-name>/<report-name>/year=2018/month=12/<report-name>-Manifest.json[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-Manifest.json[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<assemblyId>/<example-report-name>-Manifest.json[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/<example-report-name>/year=2018/month=12/<example-report-name>-Manifest.json[m
```[m
[m
When you keep the previous AWS Cost and Usage reports, each time that AWS creates a new AWS Cost and Usage report for a date range, it overwrites the manifest file stored in the date range folder with an updated manifest file\. AWS delivers the same updated manifest file to the `assemblyId` folder along with the files for that update\. Manifest files in the `assemblyId` folder aren't overwritten\. When you overwrite the previous AWS Cost and Usage report, the manifest file is overwritten along with the report files\.[m
[36m@@ -84,7 +82,7 @@[m [mWhen you keep the previous AWS Cost and Usage reports, each time that AWS create[m
If you chose the option for Amazon Redshift support in your AWS Cost and Usage report, AWS also creates and delivers a file with the SQL commands that you need to upload your report into Amazon Redshift\. You can open the SQL file with a regular text editor\. The SQL file uses the following naming convention\.[m
[m
```[m
[31m-<report-prefix>/<report-name>/YYYYMMDD-YYYYMMDD/<assemblyId>/<report-name>-RedshiftCommands.sql[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/yyyymmdd-yyyymmdd/<assemblyId>/<example-report-name>-RedshiftCommands.sql[m
```[m
[m
If you use the commands in the `RedshiftCommands` file, you don't need to open the `RedshiftManifest` file\.[m
[36m@@ -95,7 +93,7 @@[m [mThe `manifest` file determines which report files the `copy` command in the `Red[m
If you chose the option for Amazon Athena support in your AWS Cost and Usage report, AWS also creates and delivers multiple files to help set up all of the resources that you need\. AWS delivers a AWS CloudFormation template, a SQL file with the SQL to create your Athena table manually, and a file with the SQL to check your AWS Cost and Usage report refresh status\. These files use the following naming conventions\.[m
[m
```[m
[31m-<report-prefix>/<report-name>/<report-name>/year=2018/month=12/crawler-cfn.yml[m
[31m-<report-prefix>/<report-name>/<report-name>/year=2018/month=12/<report-name>-create-table.sql[m
[31m-<report-prefix>/<report-name>/<report-name>/year=2018/month=12/<cost_and_usage_data_status>[m
[31m-```[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/<example-report-name>/yyyymmdd-yyyymmdd/crawler-cfn.yml[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/<example-report-name>/yyyymmdd-yyyymmdd/<example-report-name>-create-table.sql[m
[32m+[m[32m<example-report-prefix>/<example-report-name>/<example-report-name>/yyyymmdd-yyyymmdd/<cost_and_usage_data_status>[m
[32m+[m[32m```[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/billing-reports-costusage.md b/doc_source/billing-reports-costusage.md[m
[1mindex f0a1264..efe29ff 100644[m
[1m--- a/doc_source/billing-reports-costusage.md[m
[1m+++ b/doc_source/billing-reports-costusage.md[m
[36m@@ -4,7 +4,7 @@[m [mThe AWS Cost and Usage report tracks your AWS usage and provides estimated charg[m
[m
If you use the consolidated billing feature in AWS Organizations, this report is available only to the master account and includes activity for all the member accounts that are associated with the master account\. Member account owners can obtain the report only from the master account owner\. For more information, see [Consolidated Billing for Organizations](consolidated-billing.md)\.[m
[m
[31m-AWS delivers the report files to an Amazon S3 bucket that you specify in your account and updates the report up to three times a day\. Each update is cumulative, so each version of the AWS Cost and Usage report includes all of the line items and information from the previous version\. The reports that AWS generates throughout the month are estimated and are subject to change during the rest of the month, as you incur more usage\. AWS finalizes the report at the end of each month\. Finalized reports have the calculations for your blended and unblended costs, and cover all of your usage for the month\. AWS might update reports after they have been finalized if AWS applies refunds, credits, or support fees to your usage for the month after finalizing your bill\. You can set this as a preference when creating or editing your report\. The report is available starting within 24 hours of the date that you created a report on the **Reports** page of the Billing and Cost Management console\. [m
[32m+[m[32mAWS delivers the report files to an Amazon S3 bucket that you specify in your account and updates the report up to three times a day\. You can also call the [AWS Billing and Cost Management API Reference](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/) to create, retrieve, or delete your reports\. Each update is cumulative, so each version of the AWS Cost and Usage report includes all of the line items and information from the previous version\. The reports that AWS generates throughout the month are estimated and are subject to change during the rest of the month, as you incur more usage\. AWS finalizes the report at the end of each month\. Finalized reports have the calculations for your blended and unblended costs, and cover all of your usage for the month\. AWS might update reports after they have been finalized if AWS applies refunds, credits, or support fees to your usage for the month after finalizing your bill\. You can set this as a preference when creating or editing your report\. The report is available starting within 24 hours of the date that you created a report on the **Reports** page of the Billing and Cost Management console\.[m[41m [m
[m
You can download the report from the Amazon S3 console, upload the report into Amazon Redshift or Amazon QuickSight, or query the report in Amazon S3 using Amazon Athena\. For more information about uploading to Amazon Redshift, see [Uploading an AWS Cost and Usage Report to Amazon Redshift](billing-reports-costusage-upload.md)\. For more information about uploading to Amazon QuickSight, see [Create a Data Set Using Amazon S3 Files](https://docs.aws.amazon.com/quicksight/latest/user/create-a-data-set-s3.html) in the *Amazon QuickSight User Guide*\. For more information about using Athena to query your data, see [Uploading an AWS Cost and Usage Report to Amazon Athena](athena.md)\. If you chose to create Amazon Redshift, Amazon QuickSight, or Athena manifests when you created your report, Billing and Cost Management provides the Amazon S3 data and manifests for you\.[m
[m
[1mdiff --git a/doc_source/billing-reports-gettingstarted-turnonreports.md b/doc_source/billing-reports-gettingstarted-turnonreports.md[m
[1mindex 3c63c71..a307ce0 100644[m
[1m--- a/doc_source/billing-reports-gettingstarted-turnonreports.md[m
[1m+++ b/doc_source/billing-reports-gettingstarted-turnonreports.md[m
[36m@@ -1,4 +1,4 @@[m
[31m-# Creating an AWS Cost and Usage report<a name="billing-reports-gettingstarted-turnonreports"></a>[m
[32m+[m[32m# Creating an AWS Cost and Usage Report<a name="billing-reports-gettingstarted-turnonreports"></a>[m
[m
Use the **Reports** page of the Billing and Cost Management console to create an AWS Cost and Usage report\.[m
[m
[36m@@ -6,7 +6,7 @@[m [mUse the **Reports** page of the Billing and Cost Management console to create an[m
[m
1. Sign in to the AWS Management Console and open the Billing and Cost Management console at [https://console\.aws\.amazon\.com/billing/home\#/](https://console.aws.amazon.com/billing/home)\.[m
[m
[31m-1. On the navigation pane, choose **Reports**\.[m
[32m+[m[32m1. On the navigation pane, choose **Cost and Usage Reports**\.[m
[m
1. Choose **Create report**\.[m
[m
[36m@@ -14,19 +14,35 @@[m [mUse the **Reports** page of the Billing and Cost Management console to create an[m
[m
1. For **Additional report details**, to include the IDs of each individual resource in the report, select **Include resource IDs**\.[m
[m
[31m-1. For **Data refresh settings**, select whether you want the AWS Cost and Usage report to refresh if AWS applies refunds, credits, or support fees to your account after finalizing your bill\. When a report refreshes, a new report is upload to Amazon S3\.[m
[32m+[m[32m1. For **Data refresh settings**, select whether you want the AWS Cost and Usage report to refresh if AWS applies refunds, credits, or support fees to your account after finalizing your bill\. When a report refreshes, a new report is uploaded to Amazon S3\.[m
[32m+[m[32m**Note**[m[41m [m
[32m+[m[32mDetailed billing reports \(DBRs\) don't refresh automatically, whether you select **Data refresh settings** or not\. To refresh a DBR, open a support case\. For more information, see [Contacting Customer Support About Your Bill](billing-get-answers.md)\.[m
[m
1. Choose **Next**\.[m
[m
[31m-1. For **S3 bucket**, enter the name of the Amazon S3 bucket where you want the reports to be delivered and choose **Verify**\. The bucket must have appropriate permissions to be valid\. For more information on adding permissions to the bucket, see [ Setting Bucket and Object Access Permissions](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/set-permissions.html) in the *[Amazon Simple Storage Service Console User Guide](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/)*\. [m
[32m+[m[32m1. For **S3 bucket**, choose **Configure**\.[m
[32m+[m
[32m+[m[32m1. In the **Configure S3 Bucket** dialog box, do one of the following:[m
[32m+[m[32m + Select an existing bucket from the drop down list and choose **Next**\.[m
[32m+[m[32m + Enter a bucket name and the Region where you want to create a new bucket and choose **Next**\.[m
[32m+[m
[32m+[m[32m1. Select **I have confirmed that this policy is correct** and choose **Save**\.[m
[32m+[m
[32m+[m[32m1. For **Report path prefix**, enter the report path prefix that you want prepended to the name of your report\.[m[41m [m
[32m+[m
[32m+[m[32m This step is optional for Amazon Redshift or Amazon QuickSight, but required for Amazon Athena\.[m
[32m+[m
[32m+[m[32m If you don't specify a prefix, the default prefix is the name that you specified for the report in step 4 and the date range for the report, in the following format:[m
[m
[31m-1. \(Optional\) For **Report path prefix**, enter the report path prefix that you want prepended to the name of your report\. [m
[32m+[m[32m `/report-name/date-range/`[m
[m
1. For **Time granularity**, choose **Hourly** if you want the line items in the report to be aggregated by the hour\. Choose **Daily** if you want the line items in the report to be aggregated by the day\.[m
[m
1. For **Report versioning**, choose whether you want each version of the report to overwrite the previous version of the report or to be delivered in addition to the previous versions\.[m
[m
[31m-1. For **Enable report data integration for**, select whether you want to upload your AWS Cost and Usage report to Amazon Redshift, Amazon QuickSight, or Amazon Athena\. If you select an Amazon Redshift or Amazon QuickSight manifest, your report is stored with \.gz compression\. If you select an Athena manifest, your report is stored with parquet compression\.[m
[32m+[m[32m1. For **Enable report data integration for**, select whether you want to upload your AWS Cost and Usage report to Amazon Redshift, Amazon QuickSight, or Amazon Athena\. The report is compressed in the following formats:[m
[32m+[m[32m + **Amazon Redshift or Amazon QuickSight**: \.gz compression[m
[32m+[m[32m + **Athena**: parquet compression[m
[m
1. Choose **Next**\.[m
[m
[1mdiff --git a/doc_source/billing-reports-gettingstarted.md b/doc_source/billing-reports-gettingstarted.md[m
[1mindex 61081af..94747e6 100644[m
[1m--- a/doc_source/billing-reports-gettingstarted.md[m
[1m+++ b/doc_source/billing-reports-gettingstarted.md[m
[36m@@ -4,4 +4,4 @@[m [mSee the following topics for information about getting started with the AWS Cost[m
[m
**Topics**[m
+ [Setting Up an Amazon S3 Bucket for AWS Cost and Usage Reports](billing-reports-gettingstarted-s3.md)[m
[31m-+ [Creating an AWS Cost and Usage report](billing-reports-gettingstarted-turnonreports.md)[m
\ No newline at end of file[m
[32m+[m[32m+ [Creating an AWS Cost and Usage Report](billing-reports-gettingstarted-turnonreports.md)[m
\ No newline at end of file[m
[1mdiff --git a/doc_source/billing-reports-other.md b/doc_source/billing-reports-other.md[m
[1mindex f2c7652..11e2c9a 100644[m
[1m--- a/doc_source/billing-reports-other.md[m
[1m+++ b/doc_source/billing-reports-other.md[m
[36m@@ -4,8 +4,7 @@[m
The following reports will be unavailable at a later date\. We strongly recommend that you use the [AWS Cost and Usage Report](billing-reports-costusage.md) instead\.[m
[m
**Topics**[m
[31m-+ [Detailed Billing Report](DetailedBillingReport.md)[m
[31m-+ [Detailed Billing Report with Resources and Tags](reportstagsresources.md)[m
[32m+[m[32m+ [Detailed Billing Reports](detailed-billing-reports.md)[m
+ [Monthly Report](monthly-report.md)[m
+ [Monthly Cost Allocation Report](reportwithtags.md)[m
+ [Amazon EC2 Usage and Reserved Instance Utilization Reports](ec2reportlinks.md)[m
[1mdiff --git a/doc_source/billing-what-is.md b/doc_source/billing-what-is.md[m
[1mindex 2465167..d4202b1 100644[m
[1m--- a/doc_source/billing-what-is.md[m
[1m+++ b/doc_source/billing-what-is.md[m
[36m@@ -27,7 +27,7 @@[m [mFor more information about budgets, see [Managing Your Costs with Budgets](budge[m
You can view your estimated bills and pay your AWS invoices in your preferred currency by setting a payment currency\. [m
AWS converts your bill to your preferred currency after your bill is finalized\. Until then, all of the preferred currency amounts shown in the console are estimated in USD\. AWS guarantees your exchange rate, so that refunds use the same exchange rate as your original transaction\. [m
Additional details: [m
[31m-+ AWS Marketplace and DevPay invoices are not eligible for this service and are processed in USD\.[m
[32m+[m[32m+ AWS Marketplace invoices are not eligible for this service and are processed in USD\.[m
+ This service is available only if your default payment method is Visa or MasterCard\.[m
+ The rates change daily\. The rate applied to your invoice is the current rate when your invoice is created\. You can check the current rate on the Billing and Cost Management console\.[m
+ You can switch back to USD\.[m
[1mdiff --git a/doc_source/budgets-create-filters.md b/doc_source/budgets-create-filters.md[m
[1mindex 74f2e20..09a0ad8 100644[m
[1m--- a/doc_source/budgets-create-filters.md[m
[1m+++ b/doc_source/budgets-create-filters.md[m
[36m@@ -23,7 +23,7 @@[m [mChoose the provider that provides your AWS services\. For AWS services, **AWS**[m
Choose an AWS account that is linked to the account that you're creating the budget for\.[m
[m
**Tag** [m
[31m-If you have activated any tags, choose a resource tag\. A tag is a label that you can use to organize your resource costs and track them on a detailed level\. There are AWS generated tags and user\-defined tags\. You must activate tags to use them\. For more information, see [Activating the AWS\-Generated Cost Allocation Tag](activate-built-in-tags.md) and [Activating User\-Defined Cost Allocation Tags](activating-tags.md)\.[m
[32m+[m[32mIf you have activated any tags, choose a resource tag\. A tag is a label that you can use to organize your resource costs and track them on a detailed level\. There are AWS generated tags and user\-defined tags\. You must activate tags to use them\. For more information, see [Activating the AWS\-Generated Cost Allocation Tags](activate-built-in-tags.md) and [Activating User\-Defined Cost Allocation Tags](activating-tags.md)\.[m
[m
**Purchase Option** [m
Choose `On Demand Instances` or `Standard Reserved Instances`\.[m
[36m@@ -40,6 +40,9 @@[m [mChoose the organization that bills you for a service\. For AWS service charges,[m
**Instance Type** [m
Choose the type of instance that you want to track with this budget\. [m
[m
[32m+[m[32m**Instance Family**[m[41m [m
[32m+[m[32m Choose the family of instances to track using this budget\.[m
[32m+[m
**Platform** [m
Choose the operating system that your RI runs on\. **Platform** is either **Linux** or **Windows**\.[m
[m