Module: Static::ChangeMFA

Defined in:
lib/static.rb

Constant Summary collapse

Name =
"changeMFA"
Query =
<<-EOS
  mutation changeMFA($enable: Boolean!, $userId: String, $userPoolId: String, $_id: String, $refreshKey: Boolean){
  changeMFA(enable: $enable, userId: $userId, userPoolId: $userPoolId, _id: $_id, refreshKey: $refreshKey){
      _id
      userId
      userPoolId
      enable
      shareKey
  }
}
EOS