digraph {
  rankdir=LR;
  compound=true;
  graph [ fontname = Handlee ];
  node [ fontname = Handlee ];
  edge [ fontname = Handlee; arrowsize=0.9 ];
  
  subgraph cluster_me {
    graph [
      label = "Me";
      pencolor=transparent;
      nodesep=0.01;
    ];
    
    me [
      label = "😡";
      fontsize=30;
      shape=plaintext;
      height=0.1;
      fixedsize=true;
    ];
  }
  
  subgraph cluster_aws {
      graph [ label = "*us-east-1*" ];
      S3;
  }
  
  me -> S3 [
    label = "50 MB Lambda\n program";
  ];
  
# 😃😡
}