├── .gitignore ├── LICENSE ├── README.md ├── cloudformation ├── 0-just-ec2.yaml └── 1-ec2-with-sg-eip.yaml ├── ec2-fundamentals ├── ec2-user-data.sh └── test ├── iam └── demo.txt ├── icons ├── AMI.png ├── API-Gateway.png ├── AWS-Amplify.png ├── AWS-Application-Composer.png ├── AWS-Artifact.png ├── AWS-Certificate-Manager.png ├── AWS-Config.png ├── AWS-Firewall-Manager.png ├── AWS-Key-Management-Service.png ├── AWS-Network-Firewall.png ├── AWS-Secrets-Manager.png ├── Amazon-Detective.png ├── Amazon-GuardDuty.png ├── Amazon-Inspector.png ├── Amazon-MQ.png ├── AppStream-2.png ├── AppSync.png ├── Application-Discovery-Service.png ├── Application-Load-Balancer.png ├── Application-Migration-Service.png ├── Aurora.png ├── Auto-Scaling-Group.png ├── Backup.png ├── Batch.png ├── Budgets.png ├── Client-VPN.png ├── Cloud-Development-Kit.png ├── CloudFormation.png ├── CloudFront.png ├── CloudShell.png ├── CloudTrail.png ├── CloudWatch.png ├── CloudWatch_Alarms.png ├── CloudWatch_Logs.png ├── CloudWatch_Metrics.png ├── CodeArtifact.png ├── CodeBuild.png ├── CodeCommit.png ├── CodeDeploy.png ├── CodeGuru.png ├── CodePipeline.png ├── Cognito.png ├── Command-Line-Interface.png ├── Comprehend.png ├── Compute-Optimizer.png ├── Connect.png ├── Control-Tower.png ├── Cost-Explorer.png ├── DataSync.png ├── Database-Migration-Service.png ├── Device-Farm.png ├── Directory-Service.png ├── DocumentDB.png ├── DynamoDB.png ├── EC2.png ├── EC2_Spot-Instance.png ├── EFS.png ├── EMR.png ├── ElastiCache.png ├── Elastic-Beanstalk.png ├── Elastic-Block-Store.png ├── Elastic-Container-Service.png ├── Elastic-Disaster-Recovery.png ├── Elastic-Load-Balancing.png ├── Elastic-Transcoder.png ├── EventBridge.png ├── Fault-Injection-Service.png ├── Forecast.png ├── Gateway-Load-Balancer.png ├── Global-Accelerator.png ├── Glue.png ├── Ground-Station.png ├── Health-Dashboard.png ├── IAM-Access-Analyzer.png ├── Identity-Access-Management_MFA.png ├── Identity-Center.png ├── Identity-and-Access-Management.png ├── IoT-Core.png ├── Kendra.png ├── Kinesis.png ├── Lambda.png ├── Lex.png ├── Lightsail.png ├── Local-Zones.png ├── Macie.png ├── Managed-Blockchain.png ├── Managed-Services.png ├── Migration-Evaluator.png ├── Migration-Hub.png ├── Neptune.png ├── Network-Access-Control-List.png ├── Network-Load-Balancer.png ├── Organizations.png ├── Outposts-servers.png ├── Personalize.png ├── Pinpoint.png ├── Polly.png ├── PrivateLink.png ├── Professional-Services.png ├── Quantum-Ledger-Database.png ├── QuickSight.png ├── RDS.png ├── Redshift.png ├── Rekognition.png ├── Resource-Access-Manager.png ├── Route-53.png ├── S3.png ├── SDK.png ├── STS.png ├── SageMaker.png ├── Security-Hub.png ├── Service-Catalog.png ├── Shield.png ├── Simple-Notification-Service.png ├── Simple-Queue-Service.png ├── Snowball-Edge.png ├── Snowball.png ├── Snowcone.png ├── Step-Functions.png ├── Systems-Manager.png ├── Systems-Manager_Parameter-Store.png ├── Systems-Manager_Session-Manager.png ├── Textract.png ├── Timestream.png ├── Transcribe.png ├── Transit-Gateway.png ├── Translate.png ├── Trusted-Advisor.png ├── Virtual-Private-Cloud.png ├── WAF.png ├── Wavelength.png ├── Well-Architected-Tool.png ├── WorkSpaces.png ├── X-Ray.png ├── rePost.png └── s3-transfer-acceleration.png ├── images ├── AWS-WAF-Six-Pillars.png ├── Shared_Responsibility_Model.jpg ├── aws-caf-perspectives.png ├── aws-compare-support-plans.png └── aws-compute-pricing.png ├── notes.txt └── s3 ├── beach.jpg ├── coffee.jpg └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | replay_pid* 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Certified Cloud Practitioner 2 | 3 | 4 | Learning materials for the AWS Certified Cloud Practitioner Certification (AWS-CLF-C02). 5 | 6 | Information on the exam can be found [here](https://aws.amazon.com/certification/certified-cloud-practitioner/). 7 | 8 | Domains of material covered in the exam: 9 | * Cloud Concepts 10 | * Security and Compliance 11 | * Cloud Technology & Services 12 | * Billing, Pricing, & Support 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 | 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 | 1001 | 1002 | 1003 | 1004 |
IconNameDescription

Cloud Concepts

Deployments and Managing Infrastucture at Scale

Cloud Formation

a service that enables users to model and manage infrastructure resources in an automated and secure manner, developers can define and provision AWS infrastructure resources using a JSON- or YAML-formatted infrastructure as code template

CDK (Cloud Development Kit)

open-source software development framework for defining cloud infrastructure in code and provisioning it through AWS CloudFormation

Elastic Beanstalk

PaaS, runs application code and handles deployment and serving to users

CodeDeploy

automates code deployments to any instance, including Amazon EC2 instances and instances running on-premises

CodeCommit

a scalable versioning control system for developers, similar to git (obsoleted 2024)

CodeBuild

a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy

CodePipeline

a continuous delivery service that enables you to model, visualize, and automate the steps required to release your software

CodeArtifact

a secure, highly scalable, managed artifact repository service that helps organizations to store and share software packages for application development

SSM (Systems Manager)

manage servers running on AWS and in your on-premises data center through a single interface

SSM Session Manager

manage your Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, on-premises servers, and virtual machines (VMs)

SSM Parameter Store

provides secure, hierarchical storage for configuration data management and secrets management

Global Infrastructure

Route 53

a highly available and scalable cloud Domain Name System (DNS) web service

CloudFront

web service that speeds up distribution of your static and dynamic web content, such as .html, .css, .js, and image files, to your users

S3 Transfer Acceleration

shortens the distance between client applications and AWS servers that acknowledge PUTS and GETS to Amazon S3 using our global network of hundreds of CloudFront Edge Locations

AWS Global Accelerator

terminates TCP connections from clients at AWS edge locations and, almost concurrently, establishes a new TCP connection with the endpoints, maximizing the time that traffic is on the AWS network and ensureing that traffic is always routed over the optimum network path.

AWS Outposts

a pool of AWS compute and storage capacity deployed at a customer site

AWS WaveLength

a type of AWS infrastructure designed to run workloads that require low latency or edge resiliency

AWS Local Zones

allow for the placement of resources near end users

Cloud Integrations

SQS (Simple Queue Service)

a service to send, store, and receive messages between software components at any volume, without losing messages or requiring other services to be available

Kinesis

process real-time data, such as video, audio, application logs, website clickstreams, and IoT telemetry data, for machine learning (ML), analytics, and other applications

SNS (Simple Notification Service)

a service that makes it easy to set up, operate, and send notifications from the cloud

Amazon MQ

a managed message broker service for Apache ActiveMQ Classic and RabbitMQ that streamlines setup, operation, and management of message brokers on AWS

Cloud Monitoring

CloudWatch

a repository for metrics and logs

CloudWatch Metrics

essential for ensuring optimal performance and efficient resource utilization, provides insights to AWS Services allowing for real time tracking of health/performance/usage patterns

CloudWatch Alarms

a monitoring tool that helps you create alarms on your AWS Resouces and AWS Services

Cloudwatch Logs

centralizes the logs from all of your systems, applications, and AWS services that you use, in a single, highly scalable service

EventBridge

a service that provides real-time access to changes in data in AWS services, your own applications, and software as a service (SaaS) applications without writing code

CloudTrail

a service that enables governance, compliance, operational auditing, and risk auditing of your AWS account

X-Ray

helps developers analyze and debug production, distributed applications, such as those built using a microservices architecture

CodeGuru

analyzes the application runtime performance and using machine learning, provides recommendations on ways that could speed up the application

AWS Health Dashboard

can be used to learn about AWS Health events that affect AWS services or the AWS account

Networking

Amazon VPC (Virtual Private Cloud)

a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define
usecase: manage components of VPC (Subnet, Internet Gateway, NAT Gateways, Elastic IPs, Flow Logs, Peering); control the security of your VPC by configuring the Network ACLs and Security Groups

NACL (Network Access Control List)

an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets

PrivateLink

provides private connectivity between VPCs, supported AWS services, and your on-premises networks without exposing your traffic to the public internet

Client VPN

a fully-managed remote access VPN solution used by your remote workforce to securely access resources within both AWS and your on-premises network

Transit Gateway

connects your Amazon VPCs and on-premises networks through a central hub, simplifies the network and prevents complex peering relationships, Transit Gateway acts as a highly scalable cloud router—each new connection is made only once

Security and Compliance

Shared Responcibility Model

Identity Access Management

IAM (Identity and Access Management)

manage users access, controls, and permissions for users within the organization

IAM MFA (Multi-Factor Authorization)

makes a user have multiple devices to prove their identity

AWS Access Keys

Long-term credentials for individual IAM accounts

CLI (Command Line Interface)

tool to manage AWS tools, provides a command line interface to configure and control multiple services

usecase: requires Access keys for users to access

SDK (Software Development Kit)

contains tools to develop applications with AWS with different programming languages (eg JS, Java, React, Python, etc.)

CloudShell

online command line shell environment, preloaded with tools and automatically updated

Security Tools

WAF (web access firewall)

protect web applications from attacks by allowing you to configure rules that allow, block, or monitor (count) web requests based on conditions that you define

AWS Shield

a managed distributed denial of service (DDoS) protection service that safeguards applications running on AWS

AWS Network Firewall

a stateful, managed, network firewall and intrusion detection and prevention service for an Amazon VPC

AWS Firewall Manager

a security management service which allows you to centrally configure and manage firewall rules across your accounts and applications in AWS Organization

KMS (Key Management Service)

gives you centralized control over the cryptographic keys used to protect your data

AWS CloudHSM (Cloud Hardware Security Module)

a cryptographic service for creating and maintaining hardware security modules

ACM (AWS Certificate Manager)

a service that allows developers to provision, manage, and deploy public and private Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services and internal connected resources

Secrets Manager

encrypts at rest using encryption keys owned and stored in AWS KMS

Artifact

contains compliance-related documents in AWS such as ISO certifications, Payment Card Industry (PCI), and Service Organization Control (SOC) reports

AWS GuardDuty

automatically manage resource utilization based on the overall activity levels within AWS accounts, workloads, and data

AWS Inspector

continually scans AWS workloads for software vulnerabilities and unintended network exposure

AWS Config

helps user record configuration changes to software within EC2 instances in the AWS account and also virtual machines (VMs) or servers in the on-premises environment

AWS Macie

a data security service that discovers sensitive data using machine learning and pattern matching, provides visibility into data security risks, and enables automated protection against those risks

AWS SecurityHub

allows organizations to create custom insights and compliance checks specific to their environment

Amazon Detective

helps analyze, investigate, and quickly identify the root cause of security findings or suspicious activities

AWS Abuse

addresses many different types of potentially abusive activity such as phishing, malware, spam, and denial of service (DoS)/ distributed denial of service (DDoS) incidents

Root User Privileges

complete access to all AWS services and resources in your AWS account

usecase: should only be used when absolutely necessary

IAM Access Analyzer

gives visibility into unused access across your AWS organization and recommendations to help you remediate unused access

Advanced Identity

STS (Security Token Service)

a tool that provides temporary access to IAM roles with their own permissions

AWS Cognito

support federated authentication, profile data sync store and AWS access token distribution without writing any backend code

AWS Directory Services

provides multiple directory choices for customers who want to use existing Microsoft AD or Lightweight Directory Access Protocol (LDAP)–aware applications in the cloud

IAM Identity Center

streamlines and simplifies workforce user access to applications or AWS accounts

Cloud Technology & Services

EC2

EC2 (Elastic Compute Cloud)

cloud-based cloud computation service, regional service
usecase: can launch a new database in AWS where the customer assumes the responsibility and management of the guest operating system, including updates and security patches

EC2 Instance Connect

tool to connect to an EC2 instance

EC2 Dedicated Host

a physical server with EC2 instance capacity fully dedicated to your use

EC2 Spot Instances

instances from unused EC2 capacity in the AWS cloud
usecase: 90% cheaper with less performance than On-Demand Instances

EC2 Instance Storage

storage options to optimize performance vs. cost

EBS (Elastic Block Store)

block level storage volumes to EC2 instances, multiple EBS volumes can be attached to each EC2 instance
usecase: rapidly changing data

AMI (Amazon Machine Image)

creates images (templates) of AWS EC2 instances to be used as masters for instance pools

EFS (Elastic File System)

auto-scaling file system that grows/shrinks as files are added/removed, regional service

Load Balancing

ELB (Elastic Load Balancing)

automatically balances application traffic to a different targets and appliances across multiple availabiliy zones

Application Load Balancer

best suited for load balancing of HTTP and HTTPS traffic and provides advanced request routing targeted at the delivery of modern application architectures, including microservices and containers

Network Load Balancer

best suited for load balancing of Transmission Control Protocol (TCP), User Datagram Protocol (UDP), and Transport Layer Security (TLS) traffic where extreme performance is required

Gateway Load Balancer

provides both Layer 3 gateway and Layer 4 load balancing capabilities. It is a transparent bump-in-the-wire device that does not change any part of the packet

ASG (Auto Scaling Groups)

each group contains multiple EC2 instances and provides autoscaling based on needs, only horizontal (number of instances, not performance of instances)

Object Storage

Amazon S3 (Simple Storage Service)

object storage service, designed for 99.999999999% (11 9's) of durability and stores millions of customers data
usecase: Bucket Policy allows specific users access to bucket

AWS Snow

provides computation at the edge or migration from edge devices to the cloud

AWS Snowcone

small, portable device for local transfer and physical shipment an AWS facility

AWS Snowball

larger, portable device can be optimized for storage or compute

AWS Snowball Edge

an edge computing and data transfer device provided by the AWS Snowball service

AWS Snowmobile

an exabyte-scale data transfer service that is used to move large volumes of data to Amazon Web Services

Databases

RDS (Relational Database Services)

managed relational database service for MySQL, PostgreSQL, MariaDB, Oracle BYOL, or SQL server
usecase: simplifies the management of time-consuming database administration tasks; Makes it easy to set up, operate, and scale a relational database
usecase: rapidly changing data

ElastiCache

fast, in-memory data store for use as a database, cache, message broker
usecase: store the results of I/O-intensive SQL database queries to improve application performance
usecase: lets you deploy and run Memcached or Redis cache server nodes in the cloud

DynamoDB

fully managed proprietary NoSQL database
usecase: highly scalable, used for nonrelational data

Redshift

petabyte-scale data warehouse and exabyte-scale data lake analytics
usecase: best used for OLAP (online analytical processing) workloads

EMR (Elastic MapReduce)

petabyte data processing, interactive analytics and machine learning, uses open source frameworks including Apache Spark, Apache Hive, and Presto

Quicksight

business analytics tool

DocumentDB

JSON document database

Neptune

graph database for billions of relationships

Timestream

time series database

QLDB (Quantum Ledger Database)

ledger database that provides transparent, immutable, and cryptographically verifiable transaction log

Managed Blockchain

allows user to build resilient Web3 application on both public and private blockchains

Glue

serverless data integration service, allows users to discover, prepare, move, and integrate data from multiple sources
usecase: create workflows in ETL

DMS (Database Migration Service)

assists in moving databases and workloads into AWS

Aurora

A fully managed relational database engine that’s compatible with MySQL and PostgreSQL
usecase: 5x faster than standard MySQL and 3x faster than PostgreSQL, highly scalable

Machine Learning

Rekognition

an image recognition service that detects objects, scenes, activities, landmarks, faces, dominant colors, and image quality

Transcribe

an automatic speech recognition service that uses machine learning models to convert audio to text

Polly

a service that converts text into lifelike speech

Translate

a service that translates text between languages

Lex

a voice based virtual assitant or chat bot

Connect

acts as a link between different Machine Learning services to to provide infrastructure

Comprehend

sort or collect text documents by subjects or tags

SageMaker

build, train and deploy ML models at scale using tools like notebooks, debuggers, profilers, pipelines, MLOps, and more – all in one integrated development environment (IDE)

Forecast

a service that handles time series data and predicts future trends

Kendra

a search service that uses Natural Language Processing and machine learning to return more complex queries

Personalize

uses your data to generate item recommendations for your users

Textract

extracts content and context from text data

Other Compute Services

ECS (Elastic Container Service)

allows for managed container orchestration to easliy deploy, manage, and scale containerized applications

Lambda

serveless computing, runs code in many different languages (Node.js, Python, Go, Java, etc) and manages resources, scaling to deploy the functions

API Gateway

fully managed service to allow developers to create, publish, maintain, monitor, and secure API's at any scale

Batch

plans, schedules, and runs containerized batch ML, simulation, and analytics workloads across the full range of AWS compute offerings

Lightsail

a virtual private server used to store data, run code, build web-based applications

Other Services

AWS WorkSpaces

a cloud-based virtual desktop that can act as a replacement for a traditional desktop

AppStream 2.0

a fully managed application streaming service that provides users instant access to their desktop applications from anywhere

AWS IoT Core

a fully integrated feature that enables IoT developers to easily provision, onboard, and monitor Amazon Sidewalk devices through AWS IoT Core

Elastic Transcoder

media transcoding in the cloud and designed to be a highly scalable, easy to use and a cost effective way for developers and businesses to convert (or “transcode”) media files from their source format into versions that will playback on devices like smartphones, tablets and PCs

AppSync

allows applications to access exactly the data needed
usecase: create a flexible API to securely access, manipulate, and combine data from multiple sources and pay only for requests to your API and for real-time messages delivered to connected clients

AWS Amplify

a unified development platform that provides a seamless bridge between front-end and back-end development

AWS Application Composer

streamline and accelerate the architecture, development, and iteration of modern applications

AWS Device Farm

an application testing service that lets you improve the quality of your web and mobile apps by testing them across an extensive range of desktop browsers and real mobile devices

AWS Backup

a fully-managed service that makes it easy to centralize and automate data protection across AWS services, in the cloud, and on premises

AWS DRS (Elastic Disaster Recovery)

automatically converts your servers to boot and run natively on AWS when you launch instances for drills or recovery

AWS DataSync

a secure, online service that automates and accelerates moving data between on premises and AWS Storage services

Cloud Migration Strategies (7R's)

refactor, replatform, repurchase, rehost, relocate, retain, and retire

Application Discovery Service

helps plan application migration projects by automatically identifying servers, virtual machines (VMs), and network dependencies in on-premises data centers

Application Migration Service

allows you to migrate physical, virtual, and cloud source servers to AWS for a variety of supported operating systems (OS)

AWS Migration Evaluator

gives a clear baseline of what an organization is running at present and what its projected AWS costs will be, measured on-premises provisioning and utilization

AWS Migration Hub

provides a single place to discover existing servers, plan migrations, and track the status of each application migration

AWS Fault Injection Service (FIS)

a systematic and controlled process of introducing faults or errors into a system to observe its behavior under adverse conditions

Step Functions

a visual workflow service that helps developers use AWS services to build distributed applications, automate processes, orchestrate microservices, and create data and machine learning (ML) pipelines

AWS Ground Station

control satellite communications, process data, and scale your operations without having to worry about building or managing your own ground station infrastructure

AWS Pinpoint

an AWS service that you can use to engage with your customers across multiple messaging channels

AWS Partner Network (APN)

network focused on helping partners build successful AWS-based businesses to drive superb customer experiences

APN Consulting Partners

professional services firms that help customers of all sizes design, architect, migrate, or build new applications on AWS

APN Technology Partners

provide software solutions that are either hosted on or integrated with the AWS platform

Billing, Pricing, & Support

Account Management

AWS Organizations

centrally manages and governs the environment as it grows and scales AWS resources

Consolodated Billing

one bill for multiple accounts, share the volume pricing and Reserved Instance discounts by combining the usage across all accounts in the organization

AWS Control Tower

tool to create or manage multi-account AWS environments with best practices 874 | usecase: an easy way to establish a landing zone that implements an AWS well-architected, multi-account environment and applies the AWS best practices

AWS RAM (Resource Access Manager)

helps securely share resources across AWS accounts, within an organization or organizational units (OUs) in AWS Organizations, and with IAM roles and IAM users for supported resource types

AWS Service Catalog API

provides programmatic control over all end-user actions as an alternative to using the AWS Management Console

Compute Optimizer

a service that analyzes your AWS resources' configuration and utilization metrics to provide you with rightsizing recommendations

Pricing Calculator

estimate a bill by entering planned usages by service

AWS Billing Dashboard

allows you to view all previous payments, access AWS credits, and consolidate bills

Cost Allocation Tags

organizes resources, cost allocation tags to track AWS costs on a detailed level

Cost and Usage Reports

tracks your AWS usage and provides estimated charges associated with your account

AWS Budgets

a tool to set custom budgets that alert you when your costs or usage exceed (or are forecasted to exceed) your budgeted amount

AWS Cost Explorer

lets you visualize, understand, and manage your AWS costs and usage over time

AWS Cost Anomaly Detection

monitors spending patterns to detect anomalous spend and provide root cause analysis

AWS Service Quotas

enables the view and manage your quotas from a central location

AWS Trusted Advisor

an online tool that provides you with real-time guidance to help you provision your resources following AWS best practices

5 categories:

Cost Optimization, Performance, Security, Fault Tolerance, Service Limits
usecase: capable of inspecting your AWS environment and making recommendations to lower expenditures, improve system performance and reliability, and close security gaps

Architecting

Well-Architected Framework

AWS Well-Architected Tool

provides a trusted framework for you to evaluate your cloud architecture and implement designs that will scale over time

AWS Customer Carbon Footprint Tool

tool to analyze an organizations carbon footprint from its AWS service usage

AWS CAF (Cloud Adoption Framework)

a comprehensive guide designed to help organizations effectively plan and implement their cloud adoption strategies

Business Perspective Capabilities:

Strategy Management, Product Management, Business Insights, Portfolio Management, Strategic Partnership, Data Science, Innovation Management, Data Monetization

AWS Professional Services

shares a collection of offerings to help you achieve specific outcomes related to enterprise cloud adoption

AWS Ecosystem

the collection of all AWS services

AWS re:Post

a cloud knowledge service that helps builders remove technical roadblocks, accelerate innovation, and operate efficiently

AWS Knowledge Center

FAQ for AWS users

AWS Managed Services

services containing third party tools as part of the AWS Managed Services Advanced operating plan
1005 | 1006 | ### Special Thanks 1007 | 1008 | [Stephane Maarek's course on Udemy](https://www.udemy.com/course/aws-certified-cloud-practitioner-new/) 1009 | 1010 | [Tutorial Dojo](https://tutorialsdojo.com/) 1011 | -------------------------------------------------------------------------------- /cloudformation/0-just-ec2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | Resources: 3 | MyInstance: 4 | Type: AWS::EC2::Instance 5 | Properties: 6 | AvailabilityZone: us-east-1a 7 | ImageId: ami-a4c7edb2 8 | InstanceType: t2.micro 9 | -------------------------------------------------------------------------------- /cloudformation/1-ec2-with-sg-eip.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | Parameters: 3 | SecurityGroupDescription: 4 | Description: Security Group Description 5 | Type: String 6 | 7 | Resources: 8 | MyInstance: 9 | Type: AWS::EC2::Instance 10 | Properties: 11 | AvailabilityZone: us-east-1a 12 | ImageId: ami-a4c7edb2 13 | InstanceType: t2.micro 14 | SecurityGroups: 15 | - !Ref SSHSecurityGroup 16 | - !Ref ServerSecurityGroup 17 | 18 | # an elastic IP for our instance 19 | MyEIP: 20 | Type: AWS::EC2::EIP 21 | Properties: 22 | InstanceId: !Ref MyInstance 23 | 24 | # our EC2 security group 25 | SSHSecurityGroup: 26 | Type: AWS::EC2::SecurityGroup 27 | Properties: 28 | GroupDescription: Enable SSH access via port 22 29 | SecurityGroupIngress: 30 | - CidrIp: 0.0.0.0/0 31 | FromPort: 22 32 | IpProtocol: tcp 33 | ToPort: 22 34 | 35 | # our second EC2 security group 36 | ServerSecurityGroup: 37 | Type: AWS::EC2::SecurityGroup 38 | Properties: 39 | GroupDescription: !Ref SecurityGroupDescription 40 | SecurityGroupIngress: 41 | - IpProtocol: tcp 42 | FromPort: 80 43 | ToPort: 80 44 | CidrIp: 0.0.0.0/0 45 | - IpProtocol: tcp 46 | FromPort: 22 47 | ToPort: 22 48 | CidrIp: 192.168.1.1/32 49 | 50 | Outputs: 51 | ElasticIP: 52 | Description: Elastic IP Value 53 | Value: !Ref MyEIP -------------------------------------------------------------------------------- /ec2-fundamentals/ec2-user-data.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Use this for your user data (script from top to bottom) 3 | # install httpd (Linux 2 version) 4 | yum update -y 5 | yum install -y httpd 6 | systemctl start httpd 7 | systemctl enable httpd 8 | echo "

Hello World from $(hostname -f)

" > /var/www/html/index.html -------------------------------------------------------------------------------- /ec2-fundamentals/test: -------------------------------------------------------------------------------- 1 | ssh-rsa MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5ROFuchgu3KeToWjbDtR To4XeuPIC3SpwgCiesARFjJtTS38+p9oV0yBIqlxlnFdhg4U+x3f4ChNjaCwG9rZKIzWc2OQb7ffyLVVILtLL88JlLJk9vpq2LzSF4F5W92BJ6tl33M6Uc6Zs+PN3aGLZApuznxdQc41bk1rmmFBqOR1PssJO2EONGzDpAuDvZl7KphYnbrWTzC3klGXiicNbdICS2CAa93YyuGw1eq/QKTyfei/ukFj70mb6SR5eHW/cB139OUrnuQAtzRb3MNx+LzPKCdjac+ZSb7okKlEyy8lH0oXJ9kZEkK14U3GHlisOekdi9VdEXoPmiJf7BwLgwIDAQAB EC2 Tutorial -------------------------------------------------------------------------------- /iam/demo.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /icons/AMI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AMI.png -------------------------------------------------------------------------------- /icons/API-Gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/API-Gateway.png -------------------------------------------------------------------------------- /icons/AWS-Amplify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Amplify.png -------------------------------------------------------------------------------- /icons/AWS-Application-Composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Application-Composer.png -------------------------------------------------------------------------------- /icons/AWS-Artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Artifact.png -------------------------------------------------------------------------------- /icons/AWS-Certificate-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Certificate-Manager.png -------------------------------------------------------------------------------- /icons/AWS-Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Config.png -------------------------------------------------------------------------------- /icons/AWS-Firewall-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Firewall-Manager.png -------------------------------------------------------------------------------- /icons/AWS-Key-Management-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Key-Management-Service.png -------------------------------------------------------------------------------- /icons/AWS-Network-Firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Network-Firewall.png -------------------------------------------------------------------------------- /icons/AWS-Secrets-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AWS-Secrets-Manager.png -------------------------------------------------------------------------------- /icons/Amazon-Detective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Amazon-Detective.png -------------------------------------------------------------------------------- /icons/Amazon-GuardDuty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Amazon-GuardDuty.png -------------------------------------------------------------------------------- /icons/Amazon-Inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Amazon-Inspector.png -------------------------------------------------------------------------------- /icons/Amazon-MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Amazon-MQ.png -------------------------------------------------------------------------------- /icons/AppStream-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AppStream-2.png -------------------------------------------------------------------------------- /icons/AppSync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/AppSync.png -------------------------------------------------------------------------------- /icons/Application-Discovery-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Application-Discovery-Service.png -------------------------------------------------------------------------------- /icons/Application-Load-Balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Application-Load-Balancer.png -------------------------------------------------------------------------------- /icons/Application-Migration-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Application-Migration-Service.png -------------------------------------------------------------------------------- /icons/Aurora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Aurora.png -------------------------------------------------------------------------------- /icons/Auto-Scaling-Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Auto-Scaling-Group.png -------------------------------------------------------------------------------- /icons/Backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Backup.png -------------------------------------------------------------------------------- /icons/Batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Batch.png -------------------------------------------------------------------------------- /icons/Budgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Budgets.png -------------------------------------------------------------------------------- /icons/Client-VPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Client-VPN.png -------------------------------------------------------------------------------- /icons/Cloud-Development-Kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Cloud-Development-Kit.png -------------------------------------------------------------------------------- /icons/CloudFormation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudFormation.png -------------------------------------------------------------------------------- /icons/CloudFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudFront.png -------------------------------------------------------------------------------- /icons/CloudShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudShell.png -------------------------------------------------------------------------------- /icons/CloudTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudTrail.png -------------------------------------------------------------------------------- /icons/CloudWatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudWatch.png -------------------------------------------------------------------------------- /icons/CloudWatch_Alarms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudWatch_Alarms.png -------------------------------------------------------------------------------- /icons/CloudWatch_Logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudWatch_Logs.png -------------------------------------------------------------------------------- /icons/CloudWatch_Metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CloudWatch_Metrics.png -------------------------------------------------------------------------------- /icons/CodeArtifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodeArtifact.png -------------------------------------------------------------------------------- /icons/CodeBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodeBuild.png -------------------------------------------------------------------------------- /icons/CodeCommit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodeCommit.png -------------------------------------------------------------------------------- /icons/CodeDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodeDeploy.png -------------------------------------------------------------------------------- /icons/CodeGuru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodeGuru.png -------------------------------------------------------------------------------- /icons/CodePipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/CodePipeline.png -------------------------------------------------------------------------------- /icons/Cognito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Cognito.png -------------------------------------------------------------------------------- /icons/Command-Line-Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Command-Line-Interface.png -------------------------------------------------------------------------------- /icons/Comprehend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Comprehend.png -------------------------------------------------------------------------------- /icons/Compute-Optimizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Compute-Optimizer.png -------------------------------------------------------------------------------- /icons/Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Connect.png -------------------------------------------------------------------------------- /icons/Control-Tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Control-Tower.png -------------------------------------------------------------------------------- /icons/Cost-Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Cost-Explorer.png -------------------------------------------------------------------------------- /icons/DataSync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/DataSync.png -------------------------------------------------------------------------------- /icons/Database-Migration-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Database-Migration-Service.png -------------------------------------------------------------------------------- /icons/Device-Farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Device-Farm.png -------------------------------------------------------------------------------- /icons/Directory-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Directory-Service.png -------------------------------------------------------------------------------- /icons/DocumentDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/DocumentDB.png -------------------------------------------------------------------------------- /icons/DynamoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/DynamoDB.png -------------------------------------------------------------------------------- /icons/EC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/EC2.png -------------------------------------------------------------------------------- /icons/EC2_Spot-Instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/EC2_Spot-Instance.png -------------------------------------------------------------------------------- /icons/EFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/EFS.png -------------------------------------------------------------------------------- /icons/EMR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/EMR.png -------------------------------------------------------------------------------- /icons/ElastiCache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/ElastiCache.png -------------------------------------------------------------------------------- /icons/Elastic-Beanstalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Beanstalk.png -------------------------------------------------------------------------------- /icons/Elastic-Block-Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Block-Store.png -------------------------------------------------------------------------------- /icons/Elastic-Container-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Container-Service.png -------------------------------------------------------------------------------- /icons/Elastic-Disaster-Recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Disaster-Recovery.png -------------------------------------------------------------------------------- /icons/Elastic-Load-Balancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Load-Balancing.png -------------------------------------------------------------------------------- /icons/Elastic-Transcoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Elastic-Transcoder.png -------------------------------------------------------------------------------- /icons/EventBridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/EventBridge.png -------------------------------------------------------------------------------- /icons/Fault-Injection-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Fault-Injection-Service.png -------------------------------------------------------------------------------- /icons/Forecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Forecast.png -------------------------------------------------------------------------------- /icons/Gateway-Load-Balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Gateway-Load-Balancer.png -------------------------------------------------------------------------------- /icons/Global-Accelerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Global-Accelerator.png -------------------------------------------------------------------------------- /icons/Glue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Glue.png -------------------------------------------------------------------------------- /icons/Ground-Station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Ground-Station.png -------------------------------------------------------------------------------- /icons/Health-Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Health-Dashboard.png -------------------------------------------------------------------------------- /icons/IAM-Access-Analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/IAM-Access-Analyzer.png -------------------------------------------------------------------------------- /icons/Identity-Access-Management_MFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Identity-Access-Management_MFA.png -------------------------------------------------------------------------------- /icons/Identity-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Identity-Center.png -------------------------------------------------------------------------------- /icons/Identity-and-Access-Management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Identity-and-Access-Management.png -------------------------------------------------------------------------------- /icons/IoT-Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/IoT-Core.png -------------------------------------------------------------------------------- /icons/Kendra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Kendra.png -------------------------------------------------------------------------------- /icons/Kinesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Kinesis.png -------------------------------------------------------------------------------- /icons/Lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Lambda.png -------------------------------------------------------------------------------- /icons/Lex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Lex.png -------------------------------------------------------------------------------- /icons/Lightsail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Lightsail.png -------------------------------------------------------------------------------- /icons/Local-Zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Local-Zones.png -------------------------------------------------------------------------------- /icons/Macie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Macie.png -------------------------------------------------------------------------------- /icons/Managed-Blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Managed-Blockchain.png -------------------------------------------------------------------------------- /icons/Managed-Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Managed-Services.png -------------------------------------------------------------------------------- /icons/Migration-Evaluator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Migration-Evaluator.png -------------------------------------------------------------------------------- /icons/Migration-Hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Migration-Hub.png -------------------------------------------------------------------------------- /icons/Neptune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Neptune.png -------------------------------------------------------------------------------- /icons/Network-Access-Control-List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Network-Access-Control-List.png -------------------------------------------------------------------------------- /icons/Network-Load-Balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Network-Load-Balancer.png -------------------------------------------------------------------------------- /icons/Organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Organizations.png -------------------------------------------------------------------------------- /icons/Outposts-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Outposts-servers.png -------------------------------------------------------------------------------- /icons/Personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Personalize.png -------------------------------------------------------------------------------- /icons/Pinpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Pinpoint.png -------------------------------------------------------------------------------- /icons/Polly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Polly.png -------------------------------------------------------------------------------- /icons/PrivateLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/PrivateLink.png -------------------------------------------------------------------------------- /icons/Professional-Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Professional-Services.png -------------------------------------------------------------------------------- /icons/Quantum-Ledger-Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Quantum-Ledger-Database.png -------------------------------------------------------------------------------- /icons/QuickSight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/QuickSight.png -------------------------------------------------------------------------------- /icons/RDS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/RDS.png -------------------------------------------------------------------------------- /icons/Redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Redshift.png -------------------------------------------------------------------------------- /icons/Rekognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Rekognition.png -------------------------------------------------------------------------------- /icons/Resource-Access-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Resource-Access-Manager.png -------------------------------------------------------------------------------- /icons/Route-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Route-53.png -------------------------------------------------------------------------------- /icons/S3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/S3.png -------------------------------------------------------------------------------- /icons/SDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/SDK.png -------------------------------------------------------------------------------- /icons/STS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/STS.png -------------------------------------------------------------------------------- /icons/SageMaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/SageMaker.png -------------------------------------------------------------------------------- /icons/Security-Hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Security-Hub.png -------------------------------------------------------------------------------- /icons/Service-Catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Service-Catalog.png -------------------------------------------------------------------------------- /icons/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Shield.png -------------------------------------------------------------------------------- /icons/Simple-Notification-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Simple-Notification-Service.png -------------------------------------------------------------------------------- /icons/Simple-Queue-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Simple-Queue-Service.png -------------------------------------------------------------------------------- /icons/Snowball-Edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Snowball-Edge.png -------------------------------------------------------------------------------- /icons/Snowball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Snowball.png -------------------------------------------------------------------------------- /icons/Snowcone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Snowcone.png -------------------------------------------------------------------------------- /icons/Step-Functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Step-Functions.png -------------------------------------------------------------------------------- /icons/Systems-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Systems-Manager.png -------------------------------------------------------------------------------- /icons/Systems-Manager_Parameter-Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Systems-Manager_Parameter-Store.png -------------------------------------------------------------------------------- /icons/Systems-Manager_Session-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Systems-Manager_Session-Manager.png -------------------------------------------------------------------------------- /icons/Textract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Textract.png -------------------------------------------------------------------------------- /icons/Timestream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Timestream.png -------------------------------------------------------------------------------- /icons/Transcribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Transcribe.png -------------------------------------------------------------------------------- /icons/Transit-Gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Transit-Gateway.png -------------------------------------------------------------------------------- /icons/Translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Translate.png -------------------------------------------------------------------------------- /icons/Trusted-Advisor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Trusted-Advisor.png -------------------------------------------------------------------------------- /icons/Virtual-Private-Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Virtual-Private-Cloud.png -------------------------------------------------------------------------------- /icons/WAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/WAF.png -------------------------------------------------------------------------------- /icons/Wavelength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Wavelength.png -------------------------------------------------------------------------------- /icons/Well-Architected-Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/Well-Architected-Tool.png -------------------------------------------------------------------------------- /icons/WorkSpaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/WorkSpaces.png -------------------------------------------------------------------------------- /icons/X-Ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/X-Ray.png -------------------------------------------------------------------------------- /icons/rePost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/rePost.png -------------------------------------------------------------------------------- /icons/s3-transfer-acceleration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/icons/s3-transfer-acceleration.png -------------------------------------------------------------------------------- /images/AWS-WAF-Six-Pillars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/images/AWS-WAF-Six-Pillars.png -------------------------------------------------------------------------------- /images/Shared_Responsibility_Model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/images/Shared_Responsibility_Model.jpg -------------------------------------------------------------------------------- /images/aws-caf-perspectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/images/aws-caf-perspectives.png -------------------------------------------------------------------------------- /images/aws-compare-support-plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/images/aws-compare-support-plans.png -------------------------------------------------------------------------------- /images/aws-compute-pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/images/aws-compute-pricing.png -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- 1 | Notes for the Exam 2 | 3 | Domains 4 | Cloud Concepts 5 | 6 | Deployments and Managing Infrastucture at Scale 7 | CloudFormation - a service that enables users to model and manage infrastructure resources in an automated and secure manner, developers can define and provision AWS infrastructure resources using a JSON- or YAML-formatted infrastructure as code template 8 | CDK - open-source software development framework for defining cloud infrastructure in code and provisioning it through AWS CloudFormation 9 | Elastic Beanstalk - PaaS, runs application code and handles deployment and serving to users 10 | CodeDeploy - automates code deployments to any instance, including Amazon EC2 instances and instances running on-premises 11 | CodeCommit - a scalable versioning control system for developers, similar to git (obsoleted 2024) 12 | CodeBuild - a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy 13 | CodePipeline - a continuous delivery service that enables you to model, visualize, and automate the steps required to release your software 14 | CodeArtifact - a secure, highly scalable, managed artifact repository service that helps organizations to store and share software packages for application development 15 | SSM (Systems Manager) - manage servers running on AWS and in your on-premises data center through a single interface 16 | SSM Session Manager - manage your Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, on-premises servers, and virtual machines (VMs) 17 | SSM Parameter Store - provides secure, hierarchical storage for configuration data management and secrets management 18 | 19 | Global Infrastructure 20 | Route 53 - a highly available and scalable cloud Domain Name System (DNS) web service 21 | CloudFront - web service that speeds up distribution of your static and dynamic web content, such as .html, .css, .js, and image files, to your users 22 | S3 Transfer Acceleration - shortens the distance between client applications and AWS servers that acknowledge PUTS and GETS to Amazon S3 using our global network of hundreds of CloudFront Edge Locations 23 | AWS Global Accelerator - terminates TCP connections from clients at AWS edge locations and, almost concurrently, establishes a new TCP connection with the endpoints, maximizing the time that traffic is on the AWS network and ensureing that traffic is always routed over the optimum network path. 24 | AWS Outposts - a pool of AWS compute and storage capacity deployed at a customer site 25 | AWS WaveLength - a type of AWS infrastructure designed to run workloads that require low latency or edge resiliency 26 | AWS Local Zones - allow for the placement of resources near end users 27 | 28 | Cloud Integrations 29 | SQS (Simple Queue Service) - a service to send, store, and receive messages between software components at any volume, without losing messages or requiring other services to be available 30 | Kinesis - process real-time data, such as video, audio, application logs, website clickstreams, and IoT telemetry data, for machine learning (ML), analytics, and other applications 31 | SNS (Simple Notification Service) - a service that makes it easy to set up, operate, and send notifications from the cloud 32 | Amazon MQ - a managed message broker service for Apache ActiveMQ Classic and RabbitMQ that streamlines setup, operation, and management of message brokers on AWS 33 | 34 | Cloud Monitoring 35 | CloudWatch - a repository for metrics and logs 36 | CloudWatch Metrics - essential for ensuring optimal performance and efficient resource utilization, provides insights to AWS Services allowing for real time tracking of health/performance/usage patterns 37 | CloudWatch Alarms - a monitoring tool that helps you create alarms on your AWS Resouces and AWS Services 38 | Cloudwatch Logs - centralizes the logs from all of your systems, applications, and AWS services that you use, in a single, highly scalable service 39 | EventBridge - a service that provides real-time access to changes in data in AWS services, your own applications, and software as a service (SaaS) applications without writing code 40 | CloudTrail - a service that enables governance, compliance, operational auditing, and risk auditing of your AWS account 41 | X-Ray - helps developers analyze and debug production, distributed applications, such as those built using a microservices architecture 42 | CodeGuru - analyzes the application runtime performance and using machine learning, provides recommendations on ways that could speed up the application 43 | AWS Health Dashboard - can be used to learn about AWS Health events that affect AWS services or the AWS account 44 | 45 | Networking 46 | Amazon VPC (Virtual Private Cloud) - a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define 47 | usecase: manage components of VPC (Subnet, Internet Gateway, NAT Gateways, Elastic IPs, Flow Logs, Peering); control the security of your VPC by configuring the Network ACLs and Security Groups 48 | NACL (Network Access Control List) - an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets 49 | PrivateLink - provides private connectivity between VPCs, supported AWS services, and your on-premises networks without exposing your traffic to the public internet 50 | Client VPN - a fully-managed remote access VPN solution used by your remote workforce to securely access resources within both AWS and your on-premises network 51 | Transit Gateway - connects your Amazon VPCs and on-premises networks through a central hub, simplifies the network and prevents complex peering relationships, Transit Gateway acts as a highly scalable cloud router—each new connection is made only once 52 | 53 | 54 | Security & Compliance 55 | 56 | 57 | Shared Responcibility Model - Respnsibility between AWS and Client (you) 58 | Client (security "IN" the cloud): 59 | Customer Data 60 | Platforms, Application, Identity and Access Mangement 61 | Client-side Data Encryption and Data Itegrity Authentication 62 | Server-side Encryption 63 | Network Trafffic Protection 64 | AWS (security "OF" the cloud): 65 | Compute 66 | Storage 67 | Database Networking 68 | AWS Global Infrastructure (Availability Zones, Regions, Edge Locations) 69 | Both: 70 | Awareness and training 71 | 72 | IAM (Identity and Access Management) - manage users access, controls, and permissions for users within the organization 73 | IAM MFA (Multi-Factor Authorization) - makes a user have multiple devices to prove their identity 74 | AWS Access Keys - Long-term credentials for individual IAM accounts 75 | CLI (Command Line Interface) - tool to manage AWS tools, provides a command line interface to configure and control multiple services 76 | usecase: requires Access keys for users to access 77 | SDK (Software Development Kit) - contains tools to develop applications with AWS with different programming languages (eg JS, Java, React, Python, etc.) 78 | CloudShell - online command line shell environment, preloaded with tools and automatically updated 79 | 80 | WAF (web access firewall) - protect web applications from attacks by allowing you to configure rules that allow, block, or monitor (count) web requests based on conditions that you define 81 | AWS Shield - a managed distributed denial of service (DDoS) protection service that safeguards applications running on AWS 82 | AWS Network Firewall - a stateful, managed, network firewall and intrusion detection and prevention service for an Amazon VPC 83 | AWS Firewall Manager - a security management service which allows you to centrally configure and manage firewall rules across your accounts and applications in AWS Organization 84 | KMS (Key Management Service) - gives you centralized control over the cryptographic keys used to protect your data 85 | AWS CloudHSM (Cloud Hardware Security Module) - a cryptographic service for creating and maintaining hardware security modules 86 | ACM (AWS Certificate Manager) - a service that allows developers to provision, manage, and deploy public and private Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services and internal connected resources 87 | Secrets Manager - encrypts at rest using encryption keys owned and stored in AWS KMS 88 | Artifact - contains compliance-related documents in AWS such as ISO certifications, Payment Card Industry (PCI), and Service Organization Control (SOC) reports 89 | AWS GuardDuty - automatically manage resource utilization based on the overall activity levels within AWS accounts, workloads, and data 90 | AWS Inspector - continually scans AWS workloads for software vulnerabilities and unintended network exposure 91 | AWS Config - helps user record configuration changes to software within EC2 instances in the AWS account and also virtual machines (VMs) or servers in the on-premises environment 92 | AWS Macie - a data security service that discovers sensitive data using machine learning and pattern matching, provides visibility into data security risks, and enables automated protection against those risks 93 | AWS SecurityHub - allows organizations to create custom insights and compliance checks specific to their environment 94 | Amazon Detective - helps analyze, investigate, and quickly identify the root cause of security findings or suspicious activities 95 | AWS Abuse - addresses many different types of potentially abusive activity such as phishing, malware, spam, and denial of service (DoS)/ distributed denial of service (DDoS) incidents 96 | Root User Privileges - complete access to all AWS services and resources in your AWS account 97 | usecase: should only be used when absolutely necessary 98 | IAM Access Analyzer - gives visibility into unused access across your AWS organization and recommendations to help you remediate unused access 99 | 100 | Advanced Identity 101 | STS (Security Token Service) - a tool that provides temporary access to IAM roles with their own permissions 102 | AWS Cognito - support federated authentication, profile data sync store and AWS access token distribution without writing any backend code 103 | AWS Directory Services - provides multiple directory choices for customers who want to use existing Microsoft AD or Lightweight Directory Access Protocol (LDAP)–aware applications in the cloud 104 | IAM Identity Center - streamlines and simplifies workforce user access to applications or AWS accounts 105 | 106 | 107 | Cloud Technology & Services 108 | 109 | 110 | EC2 (Elastic Compute Cloud) - cloud-based cloud computation service, regional service 111 | usecase: can launch a new database in AWS where the customer assumes the responsibility and management of the guest operating system, including updates and security patches 112 | EC2 Instance Connect - tool to connect to an EC2 instance 113 | EC2 Dedicated Host: a physical server with EC2 instance capacity fully dedicated to your use 114 | EC2 Spot Instances: instances from unused EC2 capacity in the AWS cloud 115 | usecase: 90% cheaper with less performance than On-Demand Instances 116 | 117 | EC2 Instance Storage - storage options to optimize performance vs. cost 118 | EBS (Elastic Block Store) - block level storage volumes to EC2 instances, multiple EBS volumes can be attached to each EC2 instance 119 | usecase: rapidly changing data 120 | AMI (Amazon Machine Image) - creates images (templates) of AWS EC2 instances to be used as masters for instance pools 121 | EFS (Elastic File System) - auto-scaling file system that grows/shrinks as files are added/removed, regional service 122 | 123 | ELB (Elastic Load Balancing) - automatically balances application traffic to a different targets and appliances across multiple availabiliy zones 124 | Application Load Balancer - best suited for load balancing of HTTP and HTTPS traffic and provides advanced request routing targeted at the delivery of modern application architectures, including microservices and containers 125 | Network Load Balancer - best suited for load balancing of Transmission Control Protocol (TCP), User Datagram Protocol (UDP), and Transport Layer Security (TLS) traffic where extreme performance is required 126 | Gateway Load Balancer - provides both Layer 3 gateway and Layer 4 load balancing capabilities. It is a transparent bump-in-the-wire device that does not change any part of the packet 127 | ASG (Auto Scaling Groups) - each group contains multiple EC2 instances and provides autoscaling based on needs, only horizontal (number of instances, not performance of instances) 128 | 129 | Amazon S3 - object storage service, designed for 99.999999999% (11 9's) of durability and stores millions of customers data 130 | usecase: Bucket Policy allows specific users access to bucket 131 | AWS Snow - provides computation at the edge or migration from edge devices to the cloud 132 | AWS Snowcone - small, portable device for local transfer and physical shipment an AWS facility 133 | AWS Snowball - larger, portable device can be optimized for storage or compute 134 | 135 | Databases 136 | RDS (Relational Database Services) - managed relational database service for MySQL, PostgreSQL, MariaDB, Oracle BYOL, or SQL server 137 | usecase: simplifies the management of time-consuming database administration tasks; Makes it easy to set up, operate, and scale a relational database 138 | usecase: rapidly changing data 139 | Elasticache - fast, in-memory data store for use as a database, cache, message broker 140 | usecase: store the results of I/O-intensive SQL database queries to improve application performance 141 | usecase: lets you deploy and run Memcached or Redis cache server nodes in the cloud 142 | DynamoDB - fully managed proprietary NoSQL database 143 | usecase: highly scalable, used for nonrelational data 144 | Redshift - petabyte-scale data warehouse and exabyte-scale data lake analytics 145 | usecase: best used for OLAP (online analytical processing) workloads 146 | EMR (Elastic MapReduce) - petabyte data processing, interactive analytics and machine learning, uses open source frameworks including Apache Spark, Apache Hive, and Presto 147 | Quicksight - business analytics tool 148 | DocumentDB - JSON document database 149 | Neptune - graph database for billions of relationships 150 | Timestream - time series databse 151 | QLDB (Quantum Ledger Database) - ledger database that provides transparent, immutable, and cryptographically verifiable transaction log 152 | Managed Blockchain - allows user to build resilient Web3 application on both public and private blockchains 153 | Glue - serverless data integration service, allows users to discover, prepare, move, and integrate data from multiple sources 154 | usecase: create workflows in ETL 155 | DMS (Database Migration Service) - assists in moving databases and workloads into AWS 156 | Aurora - A fully managed relational database engine that’s compatible with MySQL and PostgreSQL 157 | usecase: 5x faster than standard MySQL and 3x faster than PostgreSQL, highly scalable 158 | 159 | Other Compute Services: 160 | ECS (Elastic Container Service) - allows for managed container orchestration to easliy deploy, manage, and scale containerized applications 161 | Lambda - serveless computing, runs code in many different languages (Node.js, Python, Go, Java, etc) and manages resources, scaling to de´ploy the functinos 162 | API Gateway - fully managed service to allow developers to create, publish, maintain, monitor, and secure API's at any scale 163 | Batch - plans, schedules, and runs containerized batch ML, simulation, and analytics workloads across the full range of AWS compute offerings 164 | Lightsail - a virtual private server used to store data, run code, build web-based aplications 165 | 166 | Machine Learning 167 | Rekognition - an image recognition service that detects objects, scenes, activities, landmarks, faces, dominant colors, and image quality 168 | Transcribe - an automatic speech recognition service that uses machine learning models to convert audio to text 169 | Polly - a service that converts text into lifelike speech 170 | Translate - a service that translates text between languages 171 | Lex - a voice based virtual assitant or chat bot 172 | Connect - acts as a link between different Machine Learning services to to provide infrastructure 173 | Comprehend - sort or collect text documents by subjects or tags 174 | SageMaker - build, train and deploy ML models at scale using tools like notebooks, debuggers, profilers, pipelines, MLOps, and more – all in one integrated development environment (IDE) 175 | Forecast - a service that handles time series data and predicts future trends 176 | Kendra - a search service that uses Natural Language Processing and machine learning to return more complex queries 177 | Personalize - uses your data to generate item recommendations for your users 178 | Textract - extracts content and context from text data 179 | 180 | Other Services 181 | AWS WorkSpaces - a cloud-based virtual desktop that can act as a replacement for a traditional desktop 182 | AppStream 2.0 - a fully managed application streaming service that provides users instant access to their desktop applications from anywhere 183 | AWS IoT Core - a fully integrated feature that enables IoT developers to easily provision, onboard, and monitor Amazon Sidewalk devices through AWS IoT Core 184 | Elastic Transcoder - media transcoding in the cloud and designed to be a highly scalable, easy to use and a cost effective way for developers and businesses to convert (or “transcode”) media files from their source format into versions that will playback on devices like smartphones, tablets and PCs 185 | AppSync - allows applications to access exactly the data needed 186 | usecase: create a flexible API to securely access, manipulate, and combine data from multiple sources and pay only for requests to your API and for real-time messages delivered to connected clients 187 | AWS Amplify - a unified development platform that provides a seamless bridge between front-end and back-end development 188 | AWS Application Composer - streamline and accelerate the architecture, development, and iteration of modern applications 189 | AWS Device Farm - an application testing service that lets you improve the quality of your web and mobile apps by testing them across an extensive range of desktop browsers and real mobile devices 190 | AWS Backup - a fully-managed service that makes it easy to centralize and automate data protection across AWS services, in the cloud, and on premises 191 | Disater Recovery Strategies 192 | AWS DRS (Elastic Disaster Recovery) - automatically converts your servers to boot and run natively on AWS when you launch instances for drills or recovery 193 | AWS DataSync - a secure, online service that automates and accelerates moving data between on premises and AWS Storage services 194 | Cloud Migration Strategies (7R's) - refactor, replatform, repurchase, rehost, relocate, retain, and retire 195 | Application Discovery Service - helps plan application migration projects by automatically identifying servers, virtual machines (VMs), and network dependencies in on-premises data centers 196 | Application Migration Service - allows you to migrate physical, virtual, and cloud source servers to AWS for a variety of supported operating systems (OS) 197 | AWS Migration Evaluator - gives a clear baseline of what an organization is running at present and what its projected AWS costs will be, measured on-premises provisioning and utilization 198 | AWS Migration Hub - provides a single place to discover existing servers, plan migrations, and track the status of each application migration 199 | AWS Fault Injection Simulator (FIS) - a systematic and controlled process of introducing faults or errors into a system to observe its behavior under adverse conditions 200 | Step Functions - a visual workflow service that helps developers use AWS services to build distributed applications, automate processes, orchestrate microservices, and create data and machine learning (ML) pipelines. 201 | AWS Ground Station - control satellite communications, process data, and scale your operations without having to worry about building or managing your own ground station infrastructure 202 | AWS Pinpoint - an AWS service that you can use to engage with your customers across multiple messaging channels 203 | AWS Partner Network (APN) - network focused on helping partners build successful AWS-based businesses to drive superb customer experiences 204 | APN Consulting Partners - professional services firms that help customers of all sizes design, architect, migrate, or build new applications on AWS 205 | APN Technology Partners - provide software solutions that are either hosted on or integrated with the AWS platform 206 | 207 | 208 | Billing, Pricing, & Support 209 | 210 | 211 | Account Management 212 | AWS Organizations - centrally manages and governs the environment as it grows and scales AWS resources 213 | AWS Control Tower - tool to create or manage multi-account AWS environments with best practices 214 | usecase: an easy way to establish a landing zone that implements an AWS well-architected, multi-account environment and applies the AWS best practices 215 | AWS RAM (Resource Access Manager) - helps securely share resources across AWS accounts, within an organization or organizational units (OUs) in AWS Organizations, and with IAM roles and IAM users for supported resource types 216 | AWS Service Catalog API - provides programmatic control over all end-user actions as an alternative to using the AWS Management Console 217 | Pricing Models - 218 | Savings Plan - 219 | Compute Optimizer - a service that analyzes your AWS resources' configuration and utilization metrics to provide you with rightsizing recommendations 220 | Billing and Costing Tools - 221 | Pricing calculator - estimate a bill by entering planned usages by service 222 | AWS Billing Dashboard - allows you to view all previous payments, access AWS credits, and consolidate bills 223 | Cost Allocation Tags - organizes resources, cost allocation tags to track AWS costs on a detailed level 224 | Reports 225 | Amazon CloudWatch - Billing Alarms - monitor your estimated AWS charges 226 | AWS Budgets - a tool to set custom budgets that alert you when your costs or usage exceed (or are forecasted to exceed) your budgeted amount 227 | usecase: 228 | AWS Cost Explorer - lets you visualize, understand, and manage your AWS costs and usage over time 229 | AWS Cost Anomaly Detection - monitors spending patterns to detect anomalous spend and provide root cause analysis 230 | AWS Service Quotas - enables the view and manage your quotas from a central location 231 | AWS Trusted Advisor - an online tool that provides you with real-time guidance to help you provision your resources following AWS best practices 232 | 5 categories: Cost Optimization, Performance, Security, Fault Tolerance, Service Limits 233 | usecase: capable of inspecting your AWS environment and making recommendations to lower expenditures, improve system performance and reliability, and close security gaps 234 | Support Plans - 235 | Business: most cost effective support API access 236 | Consolodated Billing - one bill for multiple accounts, share the volume pricing and Reserved Instance discounts by combining the usage across all accounts in the organization 237 | 238 | 239 | Architecting 240 | 241 | 242 | AWS Architecting 243 | AWS WhitePapers Well-Architected Framework - describes key concepts, design principles, and architectural best practices for designing and running workloads in the cloud 244 | Pillars: Operational Excellence, Security, Reliability, Performance Efficiency, Cost Optimization, Sustainability 245 | AWS Well-Architected Tool - provides a trusted framework for you to evaluate your cloud architecture and implement designs that will scale over time 246 | AWS Customer Carbon Footprint Tool - tool to analyze an organizations carbon footprint from its AWS service usage 247 | AWS CAF (Cloud Adoption Framework) - a comprehensive guide designed to help organizations effectively plan and implement their cloud adoption strategies 248 | business perspective capabilities: Strategy Management, Product Management, Business Insights, Portfolio Management, Strategic Partnership, Data Science, Innovation Management, Data Monetization 249 | security perspective: supports the company data and cloud workloads’ confidentiality, integrity, and availability 250 | AWS Professional Services - shares a collection of offerings to help you achieve specific outcomes related to enterprise cloud adoption 251 | AWS Ecosystem - the collection of all AWS services 252 | AWS re:Post - a cloud knowledge service that helps builders remove technical roadblocks, accelerate innovation, and operate efficiently 253 | AWS Knowledge Center - FAQ for AWS users 254 | AWS Managed Services - services containing third party tools as part of the AWS Managed Services Advanced operating plan 255 | 256 | 257 | -------------------------------------------------------------------------------- /s3/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/s3/beach.jpg -------------------------------------------------------------------------------- /s3/coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrundman/aws-clf-c02/2fa71410c9902cafa767e81ad8bce51c9545f1b6/s3/coffee.jpg -------------------------------------------------------------------------------- /s3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | My First Webpage 4 | 5 | 6 |

I REALLY love coffee

7 |

Hello world!

8 | 9 | 10 | 11 | 12 | 13 | --------------------------------------------------------------------------------