Which ciphers satisfies the "Authenticated encryption (AEAD) cipher suites" SSL Labs test requirement?

I'm currently working on the same problem myself and I'll link the answer here: Security Exchange AEAD suites

The gist of it is as follows: All the suites for Windows Server 2012 R2 are the AES GCM suites, like these:

  • TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384_P384
  • TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256_P256
  • TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256_P384
  • TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384_P384
  • TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256_P256
  • TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256_P384

If you didn't find it already, Microsoft has a SSL/TLS suite overview for all suites, default and non-default.