Skip to content

Instantly share code, notes, and snippets.

@nabinno
Created January 1, 2020 01:01
Show Gist options
  • Select an option

  • Save nabinno/290da5e2116039666b1eb15033142de8 to your computer and use it in GitHub Desktop.

Select an option

Save nabinno/290da5e2116039666b1eb15033142de8 to your computer and use it in GitHub Desktop.

Revisions

  1. nabinno created this gist Jan 1, 2020.
    28 changes: 28 additions & 0 deletions uml_of_amazon_cloudfront.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    ![](https://raw.githubusercontent.com/nabinno/dojo/master/qwiklabs/working_with_amazon_cloudfront_for_dynamic_content_acceleration.png)

    ```uml
    skinparam monochrome true
    skinparam backgroundColor #EEEEEE
    actor User as U
    control CloudFront as F
    actor EC2 as E
    participant S3 as S
    U -> F: |GET|\n/phpbb
    activate U
    activate F
    F <-> E
    F -> U: |response|\n200
    deactivate F
    deactivate U
    U -> F: |GET|\n/phpbb/no_page
    activate U
    activate F
    F <-> S
    F -> U: |response|\n404
    deactivate F
    deactivate U
    ```