1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Amazon Connectにて通話の品質スコアを取得する

Posted at

はじめに

  • 雑メモです

コンタクトIDをもとに通話詳細を取得するコマンド

aws connect describe-contact \
--instance-id [instance-id] \
--contact-id [contact-id] \
--region [region]

QualityMetricsというやつ
1.00(品質が悪い)から5.00(品質が良い)の5段階評価

"QualityMetrics": {
    "Agent": {
        "Audio": {
            "QualityScore": 4.36,
            "PotentialQualityIssues": []
        }
    }
},

参考資料

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?